@charset "UTF-8";
/******************************************************************************
 * Version 1.0 Release;
 * Copyright 2018
 ******************************************************************************/
@import url("https://fonts.googleapis.com/css?family=Bebas+Neue&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;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}
html body, body 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=file] {
  display: block;
}

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: #aaa;
}

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

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

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

/*額外新增*/
* {
  -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: 1024px) {
  body {
    content: "m";
  }
}
@media (min-width: 1440px) {
  body {
    content: "l";
  }
}
@media (min-width: 1920px) {
  body {
    content: "xl";
  }
}

::-moz-selection {
  color: #1a1a1a;
  background: #f3f7fb;
}

::selection {
  color: #1a1a1a;
  background: #f3f7fb;
}

.hide {
  display: none;
}
@media (min-width: 0) {
  .hide-xs {
    display: none;
  }
}
@media (min-width: 600px) {
  .hide-sm {
    display: none;
  }
}
@media (min-width: 768px) {
  .hide-md {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hide-lg {
    display: none;
  }
}
@media (min-width: 1230px) {
  .hide-lg2 {
    display: none;
  }
}
@media (min-width: 1440px) {
  .hide-xl {
    display: none;
  }
}
@media (min-width: 1920px) {
  .hide-xxl {
    display: none;
  }
}

.block {
  display: block;
}
@media (min-width: 0) {
  .block-xs {
    display: block;
  }
}
@media (min-width: 600px) {
  .block-sm {
    display: block;
  }
}
@media (min-width: 768px) {
  .block-md {
    display: block;
  }
}
@media (min-width: 1024px) {
  .block-lg {
    display: block;
  }
}
@media (min-width: 1230px) {
  .block-lg2 {
    display: block;
  }
}
@media (min-width: 1440px) {
  .block-xl {
    display: block;
  }
}
@media (min-width: 1920px) {
  .block-xxl {
    display: block;
  }
}

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

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

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

.bg-gray {
  background: #f5f5f5;
}

.price-sell {
  color: #888;
  font-size: 14px;
  margin-bottom: 5px;
}

.price-offer {
  color: #FD0050;
  margin-bottom: 5px;
}

.price-cht {
  margin-right: 5px;
}

.price-num {
  display: inline-block;
}
.price-num::before {
  content: "NT$";
  display: inline;
  margin-right: 0.3125em;
}

.price-num-simple::before {
  content: "$";
  display: inline;
  margin-right: 0.15em;
}

.price-sell-num {
  text-decoration: line-through;
}

.phone-verify {
  position: relative;
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
  color: #1a1a1a;
  width: 26px;
  margin: -4px 0;
}
.phone-verify::before, .phone-verify::after {
  font-family: "icomoon";
}
.phone-verify::before {
  content: "\e92c";
  font-size: 22px;
}
.phone-verify::after {
  content: "\e92b";
  background: radial-gradient(#fff 40%, rgba(255, 255, 255, 0) 41%);
  border-radius: 50%;
  color: #999;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
}
.phone-verify--success::after {
  content: "\e913";
  color: #30b386;
}

.info-finish {
  display: none;
}
.info-finish--show {
  display: block;
}

.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;
}

.bg-blur {
  position: relative;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .bg-blur {
    border-radius: 50px;
  }
}
.bg-blur:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 245, 246, 0.1);
  -webkit-backdrop-filter: blur(30px) brightness(115%);
          backdrop-filter: blur(30px) brightness(115%);
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .bg-blur:before {
    border-radius: 50px;
  }
}
.bg-blur__inner {
  position: relative;
  z-index: 1;
}

/*iconfont*/
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?t=20180730v1");
  src: url("../fonts/icomoon.eot?t=20180730v1") format("embedded-opentype"), url("../fonts/icomoon.ttf?t=20180730v1") format("truetype"), url("../fonts/icomoon.woff?t=20180730v1") format("woff"), url("../fonts/icomoon.svg?t=20180730v1") 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-calendar:before {
  content: "\e92e";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-facebook2:before {
  content: "\e914";
}

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

.icon-google_plus:before {
  content: "\e916";
}

.icon-del_circle:before {
  content: "\e917";
}

.icon-del:before {
  content: "\e918";
}

.icon-arrow_down_circle:before {
  content: "\e919";
}

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

.icon-member:before {
  content: "\e91b";
}

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

.icon-google_plus_circle:before {
  content: "\e91d";
}

.icon-view:before {
  content: "\e91e";
}

.icon-time:before {
  content: "\e91f";
}

.icon-play:before {
  content: "\e920";
}

.icon-gallary:before {
  content: "\e921";
}

.icon-map:before {
  content: "\e922";
}

.icon-zoomin:before {
  content: "\e923";
}

.icon-faq:before {
  content: "\e924";
}

.icon-notice:before {
  content: "\e925";
}

.icon-expand_more:before {
  content: "\e926";
}

.icon-home:before {
  content: "\e927";
}

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

.icon-like:before {
  content: "\e929";
}

.icon-liked:before {
  content: "\e92a";
}

.icon-exclamation:before {
  content: "\e92b";
}

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

.icon-alarm:before {
  content: "\e92d";
}

.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: 1024px) {
  .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-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-lg2,
.col-lg2-auto, .col-lg2-12, .col-lg2-11, .col-lg2-10, .col-lg2-9, .col-lg2-8, .col-lg2-7, .col-lg2-6, .col-lg2-5, .col-lg2-4, .col-lg2-3, .col-lg2-2, .col-lg2-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: 1024px) {
  .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: 1230px) {
  .col-lg2 {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg2-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg2-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg2-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg2-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg2-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg2-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg2-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg2-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg2-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg2-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg2-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg2-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg2-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg2-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg2-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg2-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg2-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg2-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg2-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg2-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg2-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg2-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg2-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg2-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg2-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg2-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg2-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg2-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg2-0 {
    margin-left: 0;
  }
  .offset-lg2-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg2-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg2-3 {
    margin-left: 25%;
  }
  .offset-lg2-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg2-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg2-6 {
    margin-left: 50%;
  }
  .offset-lg2-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg2-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg2-9 {
    margin-left: 75%;
  }
  .offset-lg2-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg2-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: 1920px) {
  .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%;
  }
}
body {
  color: #1a1a1a;
  font: 100%/1.5 "Bebas+Neue", "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

a {
  color: #1a1a1a;
  text-decoration: underline;
}
a:focus, a:active {
  color: #1a1a1a;
  text-decoration: none;
  outline: 0;
}
@media (min-width: 1024px) {
  a:hover {
    color: #1a1a1a;
    text-decoration: none;
    outline: 0;
  }
}

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

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

.heading2 {
  font-size: 1.25em;
  margin: 25px 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .heading2 {
    margin: 40px 0;
  }
}
@media (min-width: 1024px) {
  .heading2 {
    text-align: left;
  }
}

.heading6 {
  font-size: 1em;
}

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

.page-paragraph {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.text {
  font-size: 14px;
}

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

.text-primary {
  color: #033e7c;
}
.text-primary:hover, .text-primary:focus {
  color: #033e7c;
}

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

.text-third {
  color: #888;
}

.text-fourth {
  color: #eee;
}

.text-success {
  color: #6ac259;
}
.text-success:hover, .text-success:focus {
  color: #6ac259;
}

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

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

.bg-primary {
  background: #FD0050;
}

.btn-link {
  display: block;
  text-decoration: underline;
  width: 100%;
}
.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--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: 5px;
}
.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;
}

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

.tag {
  display: inline-block;
  background: #F03232;
  color: #fff;
  text-transform: uppercase;
  padding: 3px 10px;
  font-size: 14px;
  letter-spacing: 1px;
}

.taglist {
  font-size: 0;
  letter-spacing: -4px;
  margin: 0 -3px;
  word-spacing: 0;
  display: inline-block;
  padding: 0;
  max-width: 100%;
}
.taglist__item {
  color: rgba(187, 187, 187, 0.7333333333);
  display: inline-block;
  *display: inline;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin: 3px;
  word-spacing: normal;
  zoom: 1;
  padding: 1px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.taglist--strong .taglist__item {
  margin: 6px 4px;
}
.taglist__link, .taglist__text {
  border: 1px solid #ccc;
  color: #bbb;
  background: #fff;
  display: block;
  text-decoration: none;
  margin: -1px;
  padding: 1px 2px;
  font-size: 13px;
  max-width: calc(100% + 1em);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.taglist--strong .taglist__link {
  color: #1a1a1a;
}
.taglist__link:focus, .taglist__link:active {
  background: #FD0050;
  border-color: #FD0050;
  color: #fff;
}
@media (min-width: 1024px) {
  .taglist__link:hover {
    background: #FD0050;
    border-color: #FD0050;
    color: #fff;
  }
}
@media (min-width: 1024px) {
  .taglist__link {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.taglist--strong {
  margin: -6px -4px;
}

.tag-event {
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 5px 0 0 4px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.tag-event::after {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 49px 57px 0 0;
  border-color: #FD0050 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.tag-time {
  display: none;
  background: #FD0050;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  min-height: 69px;
  padding: 4px 0;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  pointer-events: none;
  z-index: 2;
}
.tag-time--show {
  display: block;
}
.tag-time__icon {
  font-size: 20px;
  margin-bottom: 0.25em;
  font-weight: normal;
  display: block;
}
.tag-time__strong {
  font-size: 18px;
}

.tag-store {
  display: inline-block;
  font-size: 0;
  width: 60px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
.tag-store--kitchen {
  background-image: url(../images/store/tag_kitchen.svg?t=20180921v1);
}
.tag-store--outlet {
  background-image: url(../images/store/tag_outlet.svg?t=20180921v1);
}

table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
table > caption {
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 0;
}

.table {
  background: #fff;
  margin-bottom: 20px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}
.table__row {
  border: 1px solid #ccc;
  border-width: 1px 1px 0 1px;
  font-size: 0.875em;
  padding: 10px;
}
@media (min-width: 1024px) {
  .table__row {
    display: table;
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .table__head, .table__body {
    display: table;
    width: 100%;
  }
}
.table__head {
  display: none;
}
@media (min-width: 1024px) {
  .table__head {
    display: table;
    background: #F03232;
    color: #fff;
  }
}
@media (min-width: 1024px) {
  .table__head .table__cell, .table__body .table__cell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 10px 6px;
  }
}
@media (min-width: 1024px) {
  .table__head .table__cell {
    padding: 14px 6px;
  }
}
.table__body .table__cell {
  margin: 12px 0;
  line-height: 1.5;
}
.table__body .table__cell::before {
  content: attr(data-th) "：";
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .table__body .table__cell::before {
    display: none;
  }
}
.table__body .table__cell:first-child, .table__body .table__cell:last-child {
  margin: 4px 0;
}
@media (min-width: 1024px) {
  .table__body .table__cell:first-child, .table__body .table__cell:last-child {
    margin: 0;
  }
}
.table__tips {
  font-size: 0.875em;
  margin-bottom: 20px;
}
.table + .table__tips {
  margin-top: -10px;
}

.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: 17px 10px;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: 0.05em;
  -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;
  border-radius: 20px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
@media (min-width: 1024px) {
  .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: 1024px) {
  .btn:hover {
    text-decoration: none;
  }
}
.btn--block {
  width: 100%;
}
.btn--inline {
  width: auto;
  display: inline-block;
}
.btn--max-lg {
  max-width: 250px;
}
.btn--default {
  color: #1a1a1a;
  background: #fff;
  border-color: #1a1a1a;
}
.btn--default:focus, .btn--default:active {
  color: #1a1a1a;
  background: #f5f5f5;
}
@media (min-width: 1024px) {
  .btn--default:hover {
    color: #1a1a1a;
    background: #f5f5f5;
  }
}
.btn--default[disabled], .btn--default.disabled:hover, .btn--default[disabled]:hover, .btn--default.disabled:focus, .btn--default[disabled]:focus {
  cursor: not-allowed;
  background: #ccc;
  border-color: #ccc;
  color: #fff;
}
.btn--primary {
  color: #fff;
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.btn--primary:focus, .btn--primary:active {
  color: #fff;
  background: #F03232;
  border-color: #F03232;
}
@media (min-width: 1024px) {
  .btn--primary:hover {
    color: #fff;
    background: #F03232;
    border-color: #F03232;
  }
}
.btn--primary[disabled], .btn--primary.disabled:hover, .btn--primary[disabled]:hover, .btn--primary.disabled:focus, .btn--primary[disabled]:focus {
  cursor: not-allowed;
  background: #ccc;
  border-color: #ccc;
  color: #fff;
}
.btn--third {
  color: #fff;
  background: #FE6696;
  border-color: #FE6696;
}
.btn--third:focus, .btn--third:active {
  color: #fff;
  background: #FD0050;
  border-color: #FD0050;
}
@media (min-width: 1024px) {
  .btn--third:hover {
    color: #fff;
    background: #FD0050;
    border-color: #FD0050;
  }
}
.btn--third[disabled], .btn--third.disabled:hover, .btn--third[disabled]:hover, .btn--third.disabled:focus, .btn--third[disabled]:focus {
  cursor: not-allowed;
  background: #ccc;
  border-color: #ccc;
  color: #fff;
}
.btn--fourth {
  color: #fff;
  background: #999;
  border-color: #999;
}
.btn--fourth:focus, .btn--fourth:active {
  background: #888;
  border-color: #888;
}
@media (min-width: 1024px) {
  .btn--fourth:hover {
    background: #888;
    border-color: #888;
  }
}
.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: 1024px) {
  .btn--share:hover {
    color: #fff;
    background: #222;
    border-color: #222;
  }
}
.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: 1024px) {
  .btn--facebook:hover {
    color: #fff;
    background: #2b4782;
    border-color: #2b4782;
  }
}
.btn--line {
  color: #fff;
  background: #09b900;
  border-color: #09b900;
}
.btn--line:focus, .btn--line:active {
  color: #fff;
  background: #089601;
  border-color: #089601;
}
@media (min-width: 1024px) {
  .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: 1024px) {
  .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: 3px 6px;
}
@media (min-width: 1024px) {
  .btn-xs {
    font-size: 14px;
  }
}

.btn-sm {
  font-size: 14px;
  padding: 6px 20px;
}

.btn-md {
  font-size: 16px;
  max-height: 44px;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-md {
    width: 170px;
  }
}

.btn-lg {
  font-size: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-lg {
    width: 260px;
  }
}
@media (min-width: 1024px) {
  .btn-lg {
    font-size: 24px;
    padding: 15px 10px 15px;
  }
}

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

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

.btnbox {
  margin-top: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btnboxs--2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 360px;
  margin: 20px auto 0;
}
.btnboxs--2-full {
  max-width: none;
}
.btnboxs .btn {
  margin-bottom: 20px;
}
@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--2 .btn {
  width: calc(50% - 5px);
}

.btn-like {
  display: block;
  width: 30px;
  height: 30px;
  text-decoration: none;
  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;
}
.btn-like__icon {
  font-size: 20px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  color: #888;
  display: inline-block;
}
.btn-like--active .btn-like__icon {
  -webkit-animation: like 0.15s;
          animation: like 0.15s;
}
@media (min-width: 1024px) {
  .btn-like:hover .btn-like__icon {
    color: #FD0050;
  }
}
.btn-like--active .btn-like__icon::before {
  content: "\e92a";
  color: #033e7c;
}
@media (min-width: 1024px) {
  .btn-like:hover .btn-like__icon::before {
    content: "\e92a";
    color: #FD0050;
  }
}

@-webkit-keyframes like {
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes like {
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.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%;
}

.pagination {
  text-align: center;
  margin: 50px 0;
}
@media (min-width: 768px) {
  .pagination {
    text-align: center;
  }
}
.pagination__control {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}
.pagination__control--disabled {
  border: none;
}

.pagination__link {
  width: 35px;
  height: 35px;
  color: #fff;
  background: #1a1a1a;
  border-color: #1a1a1a;
  display: block;
  text-decoration: none;
}
.pagination__link:focus, .pagination__link:active {
  color: #fff;
  background: #F03232;
  border-color: #F03232;
}
@media (min-width: 1024px) {
  .pagination__link:hover {
    color: #fff;
    background: #F03232;
    border-color: #F03232;
  }
}
.pagination__control--disabled .pagination__link {
  color: #fff;
  background: #ccc;
  border-color: #ccc;
  cursor: default;
  pointer-events: none;
  border: none;
  text-decoration: none;
}
.pagination__icon {
  font-size: 15px;
  margin: 10px;
}

.pagination__current {
  vertical-align: middle;
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}
@media (min-width: 768px) {
  .pagination__current {
    display: none;
  }
}

.pagination__current-num {
  padding: 0 5px;
  font-weight: bold;
}

.list-page {
  display: none;
}
@media (min-width: 768px) {
  .list-page {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    letter-spacing: -4px;
    word-spacing: 0;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .list-page__item {
    font-size: 16px;
    letter-spacing: normal;
    margin: 0 10px;
    word-spacing: normal;
    display: inline-block;
    line-height: 1.5;
    zoom: 1;
  }
}
@media (min-width: 768px) {
  .list-page__link {
    display: block;
    padding: 3px;
    text-decoration: none;
    font-weight: 600;
    color: #888;
  }
}
@media (min-width: 768px) {
  .list-page__item--current .list-page__link {
    color: #FD0050;
    text-decoration: underline;
  }
}
@media (min-width: 1024px) {
  .list-page__link:hover {
    color: #FD0050;
  }
}

.collapse__heading {
  position: relative;
}
.collapse__body {
  display: none;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}
.collapse--open .collapse__body {
  display: block;
  max-height: 2000px;
  opacity: 1;
}
.collapse--half .collapse__body {
  max-height: 50px;
  opacity: 1;
}
.collapse__btn {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  padding: 14px 10px;
  display: block;
  text-decoration: none;
  background: #1a1a1a;
  border-style: solid;
  border-color: #bababa;
  border-width: 1px;
  border-radius: 10px;
}
.collapse__btn:focus, .collapse__btn:active {
  color: #fff;
}
@media (min-width: 1024px) {
  .collapse__btn:hover {
    color: #fff;
  }
}
.collapse--open .collapse__btn {
  border-bottom-width: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.collapse__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 12px;
  color: #fff;
  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--open .collapse__icon {
  top: 50%;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.collapse .shopping-tips {
  margin-bottom: 0;
  border-style: solid;
  border-color: #e1e1e1;
  border-width: 0 1px 1px 1px;
}
.collapse .shopping-tips--collapse {
  text-align: left;
}
.collapse .totalbox {
  margin: -1px 0 0;
}
.collapse--open .collapse .totalbox {
  margin: 2px 0 0;
}

.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;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.lightbox--active {
  opacity: 1;
  top: 0;
  bottom: 0;
  z-index: 1000;
}

.lightbox__box {
  position: relative;
  width: auto;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  margin: 10px auto;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.lightbox--active .lightbox__box {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.lightbox--sm .lightbox__box {
  max-width: 300px;
}
.lightbox--md .lightbox__box {
  max-width: 450px;
}
.lightbox--lg .lightbox__box {
  max-width: 700px;
}
.lightbox--full .lightbox__box {
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .lightbox--full .lightbox__box {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.lightbox__content {
  background-clip: padding-box;
  position: relative;
  margin-top: 85px;
}
.lightbox--full .lightbox__content {
  margin-top: 0;
}
@media (min-width: 768px) {
  .lightbox--full .lightbox__content {
    margin-top: 85px;
  }
}

.lightbox__head {
  padding: 15px 44px 15px;
  border-bottom: 1px solid #ccc;
}
.lightbox__head--left {
  padding-left: 15px;
}

.lightbox__title {
  color: #1a1a1a;
  text-align: center;
  font-size: 1.125em;
  font-weight: bold;
}
.lightbox__head--left .lightbox__title {
  text-align: left;
}

.lightbox__btn-close {
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  margin: 4px;
}

.lightbox__close-icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (min-width: 1024px) {
  .lightbox__btn-close:hover .lightbox__close-icon {
    background-color: #ddd;
  }
}

.lightbox__body {
  padding: 15px;
}
.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: #e8e8e8;
}
.lightbox__body--scroll::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #FD0050;
}

.lightbox__footer {
  padding: 0 15px 15px;
}

.lightbox__desc {
  line-height: 1.8;
  text-align: center;
  overflow: hidden;
}

.lightbox__btn {
  padding: 11px 5px;
  font-size: 16px;
}

.slide {
  position: relative;
}
@media (min-width: 1024px) {
  .slide--padding-lg {
    padding: 0 42px;
  }
}

.carousel__imgbox {
  overflow: hidden;
  position: relative;
}
.carousel__imgbox::after {
  content: "";
  display: block;
}
.carousel__link {
  display: block;
}
.carousel__img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: auto;
}
.carousel__dotbox {
  font-size: 0;
  letter-spacing: -4px;
  padding: 10px 0;
  text-align: center;
  word-spacing: 0;
  position: absolute;
  bottom: 0;
  text-align: center;
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .carousel__dotbox {
    bottom: 5px;
  }
}
.carousel__dotbox-item {
  width: 14px;
  height: 14px;
  display: inline-block;
  *display: inline;
  font-size: 16px;
  letter-spacing: normal;
  margin: 0 5px;
  vertical-align: top;
  word-spacing: normal;
  zoom: 1;
}
.carousel__dotbox-link {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  pointer-events: none;
  cursor: default;
}
@media (min-width: 1024px) {
  .carousel__dotbox-link {
    pointer-events: inherit;
    cursor: pointer;
  }
}
.carousel__dotbox-item--current > .carousel__dotbox-link {
  background: none;
}
.carousel__btnbox {
  display: none;
}
@media (min-width: 1024px) {
  .carousel__btnbox {
    display: block;
  }
}
.carousel__btn {
  position: absolute;
  z-index: 2;
  display: inline-block;
  height: 52px;
  width: 52px;
  top: 50%;
  bottom: inherit;
  margin: -26px 0 0;
  text-align: center;
  line-height: 52px;
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.carousel__btn:focus, .carousel__btn:active {
  color: #fff;
}
@media (min-width: 1024px) {
  .carousel__btn:hover {
    color: #fff;
  }
}
.carousel__btnbox--sm .carousel__btn {
  font-size: 30px;
}
.carousel__btnbox--box .carousel__btn {
  border: 1px solid #ccc;
  width: 28px;
  height: 28px;
  color: #888;
  border-color: #bbb;
  line-height: 26px;
  text-align: center;
}
.carousel__btnbox--box .carousel__btn:focus, .carousel__btnbox--box .carousel__btn:active {
  color: #002852;
}
@media (min-width: 1024px) {
  .carousel__btnbox--box .carousel__btn:hover {
    color: #002852;
  }
}
.carousel__btnbox--box .carousel__btn--disabled {
  background: #eee;
  border-color: #eee;
  color: #bbb;
  cursor: not-allowed;
  border: none;
}
.carousel__btnbox--box .carousel__btn--disabled:focus, .carousel__btnbox--box .carousel__btn--disabled:active {
  background: #eee;
  border-color: #eee;
  color: #bbb;
}
@media (min-width: 1024px) {
  .carousel__btnbox--box .carousel__btn--disabled:hover {
    background: #eee;
    border-color: #eee;
    color: #bbb;
  }
}
.carousel__btn-icon {
  font-size: 52px;
  display: inline-block;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.carousel__btnbox--box .carousel__btn-icon {
  font-size: 12px;
  text-shadow: none;
  font-weight: bold;
}
.carousel__btn-prev {
  left: 0;
}
.carousel__btn-next {
  right: 0;
}

input[type=radio] {
  vertical-align: top;
}
input[type=checkbox] {
  vertical-align: middle;
}

.form {
  width: 100%;
  position: relative;
}
.form .row {
  overflow: hidden;
}
.form__control {
  font-family: "Bebas+Neue", "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  line-height: 1.15;
  width: 100%;
  padding: 10px;
  min-height: 40px;
  border: 1px solid #bababa;
  background: #fff;
  border-radius: 30px;
}
select.form__control {
  padding: 10px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='177 45 42 42'%3E%3Cpath fill='%23666' d='M204 63.686l-1.371-1.371L198 66.942l-4.628-4.628L192 63.686l6 6 6-6z'/%3E%3C/svg%3E") right center no-repeat;
}

textarea.form__control {
  height: auto;
}

.form__control[disabled], .form__control[readonly], fieldset[disabled] .form__control {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.65;
  background-color: #eee;
  border-color: #ccc;
}
.form__field--error .form__control {
  border-color: #FD0050;
}
.form__controls {
  margin-bottom: 18px;
}
.form__controls:focus {
  border-color: #ccc;
  outline: 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}
.form__legend {
  display: none;
}
.form__intro {
  margin: 0 0 1em;
}
.form__field {
  margin-bottom: 20px;
}
.form__field::after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
.form__field-verify img {
  width: auto;
  max-width: auto;
}
@media (min-width: 768px) {
  .form__field-birth .form__control-row {
    margin: 0 -5px;
    overflow: hidden;
  }
}
.form__field-birth .form__control-year,
.form__field-birth .form__control-month,
.form__field-birth .form__control-day {
  display: block;
}
@media (min-width: 768px) {
  .form__field-birth .form__control-year,
.form__field-birth .form__control-month,
.form__field-birth .form__control-day {
    float: left;
    margin: 0 5px;
    width: calc(33.33333333% - 10px);
  }
}
.form__field-birth .form__control-year,
.form__field-birth .form__control-month {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .form__field-address .form__control-row {
    margin: 0 -5px;
    overflow: hidden;
  }
}
.form__field-address .form__control-city,
.form__field-address .form__control-town,
.form__field-address .form__control-zip,
.form__field-address .form__control-address {
  display: block;
}
@media (min-width: 768px) {
  .form__field-address .form__control-city,
.form__field-address .form__control-town,
.form__field-address .form__control-zip {
    float: left;
    margin: 0 5px;
  }
}
@media (min-width: 768px) {
  .form__field-address .form__control-city,
.form__field-address .form__control-town {
    width: calc(40% - 10px);
  }
}
@media (min-width: 768px) {
  .form__field-address .form__control-zip {
    width: calc(20% - 10px);
  }
}
@media (min-width: 768px) {
  .form__field-address .form__control-zip::after {
    clear: both;
    content: " ";
    display: block;
    height: 0;
    line-height: 0;
  }
}
@media (min-width: 768px) {
  .form__field-address .form__control-address {
    clear: both;
  }
}
.form__field-keepcheckbox {
  margin-bottom: 5px;
}
.form__label {
  text-align: left;
  font-weight: normal;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .form--horizontal .form__label {
    padding: 11px 10px;
    margin-bottom: 0;
    text-align: right;
    float: left;
    min-height: 1px;
    width: 120px;
  }
}
.form__field-required .form__label::before {
  content: "* ";
  display: inline-block;
  color: #FD0050;
  margin-right: 4px;
}
.form__label--hide {
  display: none;
}
.form__optgroup {
  background: #f5f5f5;
}
.form__field-required .form__inputgroup {
  position: relative;
}
@media (min-width: 1024px) {
  .form--horizontal .form__inputgroup {
    padding: 0 0 0 120px;
  }
}
.form__inputgroup--with-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__inputgroup--with-btn .btn {
  margin-left: 10px;
}
.form__inputgroup.loading::after {
  margin: -0.7em 0em 0em -0.7em;
  width: 1.4em;
  height: 1.4em;
}
.form__feedstatic {
  min-height: 46px;
  padding: 14px 0 12px;
  line-height: 1.4;
}
.form__comment {
  color: #888;
  font-size: 0.875em;
  margin: 5px 0 10px;
  line-height: 1.64;
}
.form__controls + .form__comment {
  margin-top: -10px;
}
.form__feedback {
  display: none;
  font-size: 14px;
  margin: 7px 0 10px;
}
.form__comment + .form__feedback {
  margin: -5px 0 0;
}
.form__field--error .form__feedback {
  color: #FD0050;
  display: block;
}
.form__field--error .form__feedback > a {
  color: inherit;
}
.form__field--success .form__feedback {
  color: #6ac259;
  display: block;
}
.form__keep + .form__feedback {
  margin-top: 0;
}
.form__controls + .form__feedback {
  margin-top: -10px;
}
.form__feedback i {
  font-size: 20px;
  margin-top: -4px;
}
.form__field--success .form__feedback-icon {
  color: #6ac259;
}
.form__field--error .form__feedback-icon {
  color: #FD0050;
}
.form__comment + .form__keep {
  margin-top: -8px;
}
.form__keep-label {
  font-size: 0.875em;
  margin: 0;
}
.form__keeps {
  overflow: hidden;
}
.form__keep-left {
  float: left;
}
.form__keep-right {
  float: right;
  padding: 12px 0 0;
  font-size: 14px;
}
.form__btn-edit {
  margin: 10px 0 0 0;
}
.form__expend {
  overflow: hidden;
  -webkit-transition: max-height 0.35s;
  transition: max-height 0.35s;
  max-height: 0;
  margin-bottom: 0;
}
.form__expend--open {
  max-height: 2000px;
}

.form-upload__control {
  position: fixed;
  right: 100%;
  bottom: 100%;
}
.form-upload__preview {
  background: #fff;
  border: 1px dashed #ccc;
  text-align: center;
  margin: 10px 0 0;
  overflow: hidden;
  position: relative;
}
.form-upload__preview::after {
  content: "";
  padding-top: 75%;
  display: block;
}
.form-upload__preview-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.input-verify-icon {
  position: absolute;
  right: 5px;
  top: 10px;
  display: none;
}
.form__field--error .input-verify-icon {
  color: #FD0050;
}
.form__field--success .input-verify-icon {
  color: #6ac259;
  display: block;
}

.list-option {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .list-option {
    text-align: left;
  }
}
.list-option--2, .list-option--3 {
  margin: 0 -5px;
}
@media (min-width: 768px) {
  .list-option--2, .list-option--3 {
    margin: 0;
  }
}
.list-option--inline {
  overflow: hidden;
}
.list-option__item {
  list-style: none;
  text-align: left;
}
@media (min-width: 768px) {
  .list-option__item {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 0 0;
    width: auto;
    float: none;
  }
}
@media (min-width: 1024px) {
  .list-option__item {
    margin-right: 20px;
  }
}
.list-option--inline .list-option__item {
  width: auto;
  margin: 0 20px 0 5px;
  float: left;
}
.list-option--2 .list-option__item {
  width: calc(50% - 10px);
  margin: 0 5px;
  float: left;
}
@media (min-width: 768px) {
  .list-option--2 .list-option__item {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 0 0;
    width: auto;
    float: none;
  }
}
@media (min-width: 1024px) {
  .list-option--2 .list-option__item {
    margin-right: 30px;
  }
}
.list-option--3 .list-option__item {
  width: calc(33.333% - 10px);
  margin: 0 5px;
  float: left;
}
@media (min-width: 768px) {
  .list-option--3 .list-option__item {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 0 0;
    width: auto;
    float: none;
  }
}
@media (min-width: 768px) {
  .list-option__item:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .list-option--2 .list-option__item:last-child, .list-option--3 .list-option__item:last-child {
    margin-right: 0;
  }
}

.list-option-img {
  padding: 0;
  list-style: none;
  min-height: 29px;
}
@media (min-width: 1024px) {
  .list-option-img {
    margin: 0 -4px;
  }
}
.list-option-img__item {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin: 4px;
}
@media (min-width: 1024px) {
  .list-option-img__item {
    width: 20px;
    height: 20px;
  }
}
.list-option-img__checkbox, .list-option-img__radio {
  display: none;
  position: absolute;
  padding: 0;
  margin-left: 0;
}
.list-option-img__label {
  cursor: pointer;
  display: block;
  position: relative;
  vertical-align: top;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0;
}
.list-option-img__label::after {
  content: "";
  position: absolute;
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.list-option-img__checkbox:checked + .list-option-img__label::after, .list-option-img__radio:checked + .list-option-img__label::after {
  display: block;
}
.list-option-img__img {
  pointer-events: none;
}

.radiobox,
.checkbox {
  display: none;
  position: absolute;
}
.radiobox[disabled],
.checkbox[disabled] {
  cursor: not-allowed;
}
.radiobox__label,
.checkbox__label {
  cursor: pointer;
  display: block;
  position: relative;
  vertical-align: middle;
  padding: 9px 0 9px 24px;
  line-height: 1.5;
  font-weight: normal;
  max-width: initial;
}
.radiobox__label::before,
.checkbox__label::before {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  content: "";
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 0px;
  background: #fff;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.radiobox__label::after,
.checkbox__label::after {
  content: "";
  position: absolute;
  display: none;
}

.radiobox:checked + .radiobox__label::after,
.checkbox:checked + .checkbox__label::after {
  display: block;
}

.radiobox[disabled] + .radiobox__label,
.checkbox[disabled] + .checkbox__label {
  color: #ccc;
  cursor: not-allowed;
}

.radiobox[disabled] + .radiobox__label::before,
.radiobox[disabled] + .radiobox__label::after .checkbox[disabled] + .checkbox__label::before,
.checkbox[disabled] + .checkbox__label::after {
  cursor: not-allowed;
}

.radiobox[disabled] + .radiobox__label::before,
.checkbox[disabled] + .checkbox__label::before {
  border-color: #ccc;
}

.radiobox__label::before {
  border-radius: 50%;
}
.radiobox__label::after {
  background: #1a1a1a;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  top: 17px;
  left: 4px;
}
.radiobox:checked[disabled] + .radiobox__label::after {
  background: #ccc;
}

.checkbox__label::after {
  content: "\e910";
  top: 13px;
  left: -1px;
  color: #1a1a1a;
  font-family: "icomoon";
  font-size: 18px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}
.checkbox:checked[disabled] + .checkbox__label::after {
  border-color: #ccc;
}

.list-report {
  padding: 0;
  list-style: none;
}
.list-report__item {
  margin-bottom: 12px;
}
.list-report__item:last-child {
  margin-bottom: 0;
}
.list-report__title, .list-report__data {
  display: block;
}
.list-report__title {
  float: left;
  text-align: right;
}
.list-report__item--all .list-report__title {
  float: none;
  width: 100%;
  text-align: left;
}
.list-report__data {
  padding-left: 11em;
}
@media (min-width: 768px) {
  .list-report__data {
    padding-left: 13em;
  }
}
.list-report__item--all .list-report__data {
  padding-left: 0;
}

.addlist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 10px;
}
.addlist__control {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 52px);
          flex: 0 0 calc(100% - 52px);
}
.addlist__btn {
  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;
  background: #bababa;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #bababa;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  cursor: pointer;
}
.addlist__btn:hover {
  background: #999;
}
.addlist__item:last-child .addlist__btn {
  background: #fff;
  color: #bababa;
  margin-left: auto;
}
.addlist__item:last-child .addlist__btn:hover {
  background: #eee;
}
.addlist__btn-icon {
  font-size: 18px;
  font-weight: bold;
}

.form-qty {
  width: 100%;
  position: relative;
}
.form-qty__legend {
  display: none;
}
.form-qty__word {
  font-size: 14px;
}
.form-qty__word::before {
  content: "數量：";
}
@media (min-width: 768px) {
  .form-qty__word::before {
    content: none;
  }
}
.form-qty__feedback {
  display: none;
  font-size: 14px;
  margin: 7px 0 0 0;
}
@media (min-width: 768px) {
  .form-qty__feedback {
    margin-bottom: 0;
  }
}
.form-qty__field--outstock .form-qty__feedback {
  color: #FD0050;
  display: block;
}
.form-qty__feedback i {
  font-size: 20px;
  margin-top: -4px;
}
.form-qty__label {
  font-size: 14px;
  margin-bottom: 5px;
  display: none;
}
.form-qty__input-group {
  position: relative;
}
.form-qty__input {
  text-align: center;
  padding: 5px;
}
.form-qty__input:focus {
  border-color: initial;
  border-color: #e4ecf0;
}
.form-qty__input[disabled], .form-qty__input[readonly] {
  background-color: #eee;
  border-color: #ccc;
}
.form-qty__btn-subtract, .form-qty__btn-add {
  width: 30px;
  height: 30px;
  margin: auto;
  color: #666;
  background-color: transparent;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 100%;
  vertical-align: top;
  white-space: nowrap;
  min-width: inherit;
  border-radius: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.form-qty__btn-subtract:focus, .form-qty__btn-subtract:active, .form-qty__btn-add:focus, .form-qty__btn-add:active {
  color: #333;
}
@media (min-width: 1024px) {
  .form-qty__btn-subtract:hover, .form-qty__btn-add:hover {
    color: #333;
  }
}
.form-qty__btn-subtract[disabled] .form-qty__btn-icon, .form-qty__btn-add[disabled] .form-qty__btn-icon {
  color: #ccc;
}
.form-qty__btn-subtract {
  left: 1px;
}
.form-qty__btn-add {
  right: 1px;
}
.form-qty__btn-icon {
  display: inline-block;
  font-size: 1em;
  left: 50%;
  margin: -8px 0 0 -8px;
  position: absolute;
  top: 50%;
  text-indent: 0;
  pointer-events: none;
}

.form-qty--size-s .form-qty__btn-subtract, .form-qty--size-s .form-qty__btn-add {
  width: 26px;
  height: 26px;
}
.form-qty--size-s .form-qty__input {
  min-height: 30px;
}
.form-qty--size-s .form-qty____select {
  padding: 5px;
  height: 30px;
  padding: 3px;
}

.form-qty--size-m .form-qty__btn-subtract, .form-qty--size-m .form-qty__btn-add {
  width: 38px;
  height: 38px;
}
.form-qty--size-m .form-qty .form-qty__input {
  min-height: 42px;
}
.form-qty--size-m .form-qty .form-qty__select {
  min-height: 42px;
}

.form-qty-select select.form-qty__form-control {
  max-width: 96px;
  padding: 10px;
  min-width: 96px;
}
@media (min-width: 768px) {
  .form-qty-select select.form-qty__form-control2 {
    min-height: 20px;
    padding: 5px 10px;
  }
}

.form-qty--horizontal .form-qty__body {
  margin: 0 -5px 15px;
  font-size: 0;
  letter-spacing: -4px;
  word-spacing: 0;
}
.form-qty--horizontal .form-qty__field {
  display: inline-block;
  margin: 0 5px;
  text-align: center;
  font-size: 16px;
  width: calc(50% - 10px);
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.grid__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.grid-xs-1 .grid__item {
  width: 100%;
}
.grid-xs-2 .grid__item {
  width: calc(50% - (5px * 2));
}
.grid-xs-3 .grid__item {
  width: calc(33.333% - (5px * 2));
}
@media (min-width: 600px) {
  .grid-sm-2 .grid__item {
    width: calc(50% - (8px * 2));
  }
}
@media (min-width: 600px) {
  .grid-sm-3 .grid__item {
    width: calc(33.333% - (8px * 2));
  }
}
@media (min-width: 600px) {
  .grid-sm-4 .grid__item {
    width: calc(25% - (8px * 2));
  }
}
@media (min-width: 768px) {
  .grid-md-2 .grid__item {
    width: calc(50% - (10px * 2));
  }
}
@media (min-width: 1024px) {
  .grid-md-2 .grid__item {
    width: calc(50% - 30px);
  }
}
@media (min-width: 768px) {
  .grid-md-3 .grid__item {
    width: calc(33.333% - (10px * 2));
  }
}
@media (min-width: 1024px) {
  .grid-md-3 .grid__item {
    width: calc(33.333% - 30px);
  }
}
@media (min-width: 768px) {
  .grid-md-4 .grid__item {
    width: calc(25% - (10px * 2));
  }
}
@media (min-width: 1024px) {
  .grid-md-4 .grid__item {
    width: calc(25% - 30px);
  }
}
@media (min-width: 768px) {
  .grid-md-5 .grid__item {
    width: calc(20% - (10px * 2));
  }
}
@media (min-width: 1024px) {
  .grid-md-5 .grid__item {
    width: calc(20% - (15px * 2));
  }
}
@media (min-width: 1024px) {
  .grid-lg-2 .grid__item {
    width: calc(50% - (15px * 2));
  }
}
@media (min-width: 1024px) {
  .grid-lg-3 .grid__item {
    width: calc(33.333% - (15px * 2));
  }
}
@media (min-width: 1024px) {
  .grid-lg-4 .grid__item {
    width: calc(25% - (15px * 2));
  }
}
@media (min-width: 1024px) {
  .grid-lg-5 .grid__item {
    width: calc(20% - (15px * 2));
  }
}
@media (min-width: 1024px) {
  .grid-lg-6 .grid__item {
    width: calc(16.667% - (15px * 2));
  }
}
@media (min-width: 1440px) {
  .grid-xl-2 .grid__item {
    width: calc(50% - (15px * 2));
  }
}
@media (min-width: 1440px) {
  .grid-xl-3 .grid__item {
    width: calc(33.333% - (15px * 2));
  }
}
@media (min-width: 1440px) {
  .grid-xl-4 .grid__item {
    width: calc(25% - (15px * 2));
  }
}
@media (min-width: 1440px) {
  .grid-xl-5 .grid__item {
    width: calc(20% - (15px * 2));
  }
}
@media (min-width: 1440px) {
  .grid-xl-6 .grid__item {
    width: calc(16.667% - (15px * 2));
  }
}
.grid-xs-2, .grid-xs-3 {
  margin: -5px;
}
.grid-xs-2 .grid__item, .grid-xs-3 .grid__item {
  margin: 5px;
}
@media (min-width: 600px) {
  .grid-sm-2, .grid-sm-3, .grid-sm-4 {
    margin: -8px;
  }
}
@media (min-width: 600px) {
  .grid-sm-2 .grid__item, .grid-sm-3 .grid__item, .grid-sm-4 .grid__item {
    margin: 8px;
  }
}
@media (min-width: 768px) {
  .grid-md-2, .grid-md-3, .grid-md-4, .grid-md-5 {
    margin: -10px;
  }
}
@media (min-width: 1024px) {
  .grid-md-2, .grid-md-3, .grid-md-4, .grid-md-5 {
    margin: -15px;
  }
}
@media (min-width: 768px) {
  .grid-md-2 .grid__item, .grid-md-3 .grid__item, .grid-md-4 .grid__item, .grid-md-5 .grid__item {
    margin: 10px;
  }
}
@media (min-width: 1024px) {
  .grid-md-2 .grid__item, .grid-md-3 .grid__item, .grid-md-4 .grid__item, .grid-md-5 .grid__item {
    margin: 15px;
  }
}
@media (min-width: 1024px) {
  .grid-lg-2, .grid-lg-3, .grid-lg-4, .grid-lg-5, .grid-lg-6 {
    margin: -15px;
  }
}
@media (min-width: 1024px) {
  .grid-lg-2 .grid__item, .grid-lg-3 .grid__item, .grid-lg-4 .grid__item, .grid-lg-5 .grid__item, .grid-lg-6 .grid__item {
    margin: 15px;
  }
}
@media (min-width: 1024px) {
  .grid-lg-1 {
    margin: -15px 0;
  }
}
@media (min-width: 1024px) {
  .grid-lg-1 .grid__item {
    margin: 15px;
  }
}
@media (min-width: 1440px) {
  .grid-xl-2, .grid-xl-3, .grid-xl-4, .grid-xl-5, .grid-xl-6 {
    margin: 0 -15px;
  }
}
@media (min-width: 1440px) {
  .grid-xl-2 .grid__item, .grid-xl-3 .grid__item, .grid-xl-4 .grid__item, .grid-xl-5 .grid__item, .grid-xl-6 .grid__item {
    margin: 15px;
  }
}

@media (max-width: 767px) {
  .grid-xs--scroll {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin: -6px -12px;
    padding: 0 6px;
  }
  .grid-xs--scroll::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6px;
            flex: 0 0 6px;
  }
  .grid-xs--scroll .grid__item {
    white-space: normal;
    margin: 6px;
  }
  .grid-xs-1--scroll .grid__item {
    width: calc(100% - 120px);
  }
  .grid-xs-2--scroll .grid__item {
    width: calc(50% - 30px);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid-md--scroll {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    margin: -7px -14px;
    padding: 0 7px;
  }
  .grid-md--scroll::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7px;
            flex: 0 0 7px;
  }
  .grid-md--scroll .grid__item {
    white-space: normal;
    margin: 7px;
  }
  .grid-md-2--scroll .grid__item {
    width: calc(50% - 52px);
  }
  .grid-md-3--scroll .grid__item {
    width: calc(33.333% - 40px);
  }
  .grid-md-4--scroll .grid__item {
    width: calc(25% - 30px);
  }
  .grid-md-5--scroll .grid__item {
    width: calc(20% - 20px);
  }
}
@media (min-width: 1024px) {
  .grid-lg--scroll {
    white-space: nowrap;
    overflow-x: auto;
    margin: 0 -9px 9px;
    padding: 0;
  }
  .grid-lg--scroll::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .grid-lg--scroll::-webkit-scrollbar-track {
    border-radius: 10px;
    margin: 80px 0 5px 0;
  }
  .grid-lg--scroll::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgb(219, 219, 219);
  }
}
.img-slider__imgbox {
  width: 100%;
  overflow: hidden;
}
.img-slider__imgbox::after {
  content: " ";
  padding-top: 100%;
  display: block;
}
.img-slider__list {
  position: relative;
  width: 100%;
  padding: 0;
  list-style: none;
  margin: 0;
}
.img-slider__item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.img-slider__item--active {
  opacity: 1;
  z-index: 1;
}

.thumblist {
  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;
  margin: -4px;
  padding: 0;
  list-style: none;
  overflow: auto;
}
@media (min-width: 1024px) {
  .thumblist {
    margin: -7px;
  }
}
@media (min-width: 1440px) {
  .thumblist {
    margin: -10px;
  }
}
.thumblist__item {
  display: inline-block;
  *display: inline;
  margin: 4px;
  width: calc(20% - (4px * 2));
  zoom: 1;
  border: 1px solid #e1e1e1;
}
@media (min-width: 1024px) {
  .thumblist__item {
    margin: 7px;
    width: calc(20% - (7px * 2));
  }
}
@media (min-width: 1440px) {
  .thumblist__item {
    margin: 10px;
    width: calc(20% - (10px * 2));
  }
}
.thumblist__link {
  display: block;
  background: #fff;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.thumblist__item--current .thumblist__link {
  border-color: #074d97;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.152);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.152);
}
@media (min-width: 1024px) {
  .thumblist__item:active .thumblist__link, .thumblist__item:hover .thumblist__link {
    border-color: #074d97;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.152);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.152);
  }
}
.thumblist__img {
  pointer-events: none;
}

.box {
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .box {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .box {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .box__heading {
    text-align: left;
  }
}
.box__heading--center {
  text-align: center;
}
.box__heading-tag {
  background: #1a1a1a;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 8px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (min-width: 1024px) {
  .box__heading-tag {
    padding: 15px 65px;
  }
}
.box__title {
  font-size: 0.875em;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .box__title {
    font-size: 16px;
  }
}
.box__heading-tips {
  color: #888;
  display: block;
  margin: 6px 0 2px;
}
.box__body {
  background: #fff;
  overflow: hidden;
  border: 1px solid #bababa;
  padding: 25px 12px 35px;
  border-radius: 10px;
  border-top-left-radius: 0;
}
@media (min-width: 1024px) {
  .box__body {
    border-radius: 15px;
    border-top-left-radius: 0;
    padding: 50px 42px;
  }
}
.collapse .box__body {
  border-top-right-radius: 0;
}
.box__body--border {
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px;
}
@media (min-width: 768px) {
  .box__body--border {
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .box__body--border {
    padding: 40px 100px;
  }
}
.box__btnbox {
  margin-bottom: 10px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .box__btnbox {
    margin-top: 40px;
  }
}

.box-border {
  background: #fff;
  border: 1px solid #ccc;
  padding: 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;
}

.shoplist {
  background: #fff;
}
.shoplist .price-offer {
  color: #1a1a1a;
  font-weight: 600;
}
@media (min-width: 768px) {
  .shoplist .price-sell {
    display: block;
  }
}
.shoplist .price-cht {
  display: none;
}
.shoplist .price-offer-cht {
  display: inline;
}
.shoplist .price-offer-cht::after {
  content: "：";
}
@media (min-width: 768px) {
  .shoplist .price-offer-cht {
    display: none;
  }
}
.shoplist .price-sell-num {
  font-size: 13px;
  color: #888;
}
.shoplist__item {
  position: relative;
}
@media (min-width: 768px) {
  .shoplist__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.shoplist__item--gift, .shoplist__item--extra {
  border-top: 0;
}
@media (min-width: 768px) {
  .shoplist__item--gift .shoplist__name, .shoplist__item--extra .shoplist__name {
    min-height: 50px;
  }
}
.shoplist__item--gift .shoplist__img, .shoplist__item--extra .shoplist__img {
  padding-left: 20px;
  height: 50px;
}
@media (min-width: 768px) {
  .shoplist__item--gift .shoplist__td-info, .shoplist__item--extra .shoplist__td-info {
    padding-left: 40px;
  }
}
.shoplist__item--gift .shoplist__td-spec,
.shoplist__item--gift .shoplist__td-price,
.shoplist__item--gift .shoplist__td-subtotal {
  display: none;
}
@media (min-width: 768px) {
  .shoplist__item--gift .shoplist__td-spec,
.shoplist__item--gift .shoplist__td-price,
.shoplist__item--gift .shoplist__td-subtotal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.shoplist__head {
  display: none;
}
@media (min-width: 768px) {
  .shoplist__head {
    border-top: 1px solid #e1e1e1;
    background: #EBEBEB;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .shoplist__th, .shoplist__td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .shoplist__th-info, .shoplist__td-info {
    width: 45%;
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .shoplist__th-spec, .shoplist__td-spec {
    width: 15%;
  }
}
@media (min-width: 768px) {
  .shoplist__th-price, .shoplist__td-price {
    width: 15%;
    text-align: right;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .shoplist__th-qtybox, .shoplist__td-qtybox {
    width: 15%;
  }
}
@media (min-width: 768px) {
  .shoplist__th-subtotal, .shoplist__td-subtotal {
    width: 15%;
    text-align: right;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .shoplist__th {
    line-height: 1;
    font-weight: bold;
    padding: 11px 12px;
  }
}
.shoplist__td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .shoplist__td {
    padding: 13px 10px;
  }
}
.shoplist__td-info {
  padding-left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .shoplist__td-info {
    padding: 13px 10px;
  }
}
.shoplist__td-spec {
  line-height: 1.5;
}
.shoplist__td-like {
  display: none;
}
@media (min-width: 768px) {
  .shoplist__td-like {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.shoplist__td-del {
  position: absolute;
  right: 10px;
  top: 15px;
}
@media (min-width: 768px) {
  .shoplist__td-del {
    position: static;
  }
}
.shoplist__td-subtotal span::before {
  content: "NT$";
}
@media (min-width: 768px) {
  .shoplist__td-field {
    display: none;
  }
}
.shoplist__img {
  height: 70px;
  width: 70px;
  float: left;
  overflow: hidden;
}
@media (min-width: 768px) {
  .shoplist__img {
    display: inline-block;
    vertical-align: middle;
  }
}
.shoplist__tag {
  width: 100%;
  text-align: left;
}
.shoplist__name {
  font-weight: bold;
  display: block;
  color: #FD0050;
  font-size: 20px;
  word-break: break-word;
  margin: 0 0 7px;
  line-height: 1.5;
  letter-spacing: 0;
}
.shoplist__name-en, .shoplist__name-cht {
  display: block;
  word-break: break-word;
}
.shoplist__btn-like {
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  margin-top: -6px;
  display: none;
}
@media (min-width: 768px) {
  .shoplist__btn-like {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .shoplist__btn-like:hover .shoplist__like-icon::before {
    content: "\e92a";
  }
}
.shoplist__btn-del {
  height: 24px;
  width: 24px;
  padding: 0;
  color: #888;
  background: none;
  margin-top: -6px;
}
.shoplist__btn-del:focus, .shoplist__btn-del:active {
  color: #033e7c;
}
@media (min-width: 1024px) {
  .shoplist__btn-del:hover {
    color: #033e7c;
  }
}
.shoplist__del-icon {
  font-size: 20px;
  line-height: 20px;
}
.shoplist__spec::before {
  content: "規格：";
  display: inline;
  padding-right: 3px;
}
@media (min-width: 768px) {
  .shoplist__spec::before {
    content: none;
  }
}
.shoplist__color {
  width: 25px;
  height: 25px;
  padding: 3px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.shoplist__color-img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .shoplist__offer, .shoplist__sell {
    display: block;
  }
}
.shoplist__offer .price-offer::before, .shoplist__offer .price-sell::before, .shoplist__sell .price-offer::before, .shoplist__sell .price-sell::before {
  content: "NT$";
}
.shoplist__offer .price-offer, .shoplist__sell .price-offer {
  margin: 0;
  font-weight: initial;
}
.shoplist__ps {
  color: #888;
  white-space: normal;
  word-break: break-all;
  display: block;
}
.shoplist__ps::before {
  content: "*";
  padding-right: 5px;
}
.shoplist__event-status {
  display: inline-block;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  .shoplist__event-status {
    text-align: left;
  }
}
.shoplist__event-status--yes {
  color: #6ac259;
}
.shoplist__event-status--no {
  color: #FD0050;
}
.shoplist__event-status-icon {
  font-size: 18px;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .shoplist__event-status-icon {
    margin: 0;
  }
}
.shoplist__event-status-text {
  padding: 0;
  vertical-align: bottom;
  letter-spacing: 0;
}
.shoplist__event-discountbox {
  padding: 0 0 0 0.5em;
  margin: 0;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.shoplist__event-discounted, .shoplist__event-discount-total {
  color: #FD0050;
}
.shoplist__event-discounted {
  text-align: right;
}
.shoplist__event-discounted::before {
  content: "（";
}
.shoplist__event-discounted::after {
  content: "）";
}
.shoplist__event-discounted-price {
  display: inline-block;
}
@media (min-width: 768px) {
  .shoplist__event-discounted-price {
    display: inline;
  }
}
.shoplist__event-discounted-price::before {
  content: "-NT$";
  display: inline-block;
  vertical-align: baseline;
  padding-left: 0.5em;
}
.shoplist__event-discount-total {
  float: right;
  padding-left: 5px;
  text-align: right;
  display: none;
}
.shoplist__event-info {
  background: #f5f5f5;
  margin-bottom: -1px;
  padding: 10px;
  overflow: hidden;
  border-style: solid;
  border-color: #e1e1e1;
  border-width: 0 1px 0 1px;
  position: relative;
  top: -1px;
}
@media (min-width: 768px) {
  .shoplist__event-info {
    padding-left: 95px;
  }
}
.shoplist__event-link, .shoplist__event-desc {
  display: block;
  margin-top: 3px;
  padding: 0 0 0 1.5em;
  color: #888;
}
@media (min-width: 768px) {
  .shoplist__event-link, .shoplist__event-desc {
    display: inline;
    vertical-align: middle;
    padding: 0 0 0 5px;
  }
}
.shoplist__event-item, .shoplist__extra-item {
  position: relative;
  overflow: hidden;
}
.shoplist__extra-item {
  border-top: 0;
}
.shoplist__event-item + .shoplist__event-item, .shoplist__extra-item + .shoplist__extra-item {
  border-top: none;
}
.shoplist__item-wrap-event, .shoplist__item-wrap-extra {
  position: relative;
}
.shoplist__item-wrap-event {
  border-bottom: 1px solid #e1e1e1;
  margin-top: -1px;
}
.shoplist__item-wrap-event:last-child {
  border: none;
}
.shoplist__item-wrap-extra-heading {
  background: #f3f7fb;
  color: #FD0050;
  padding: 10px;
  text-align: center;
  margin-top: 2px;
  border: 1px solid #e1e1e1;
  border-bottom: none;
}
@media (min-width: 768px) {
  .shoplist__item-wrap-extra-heading {
    text-align: left;
  }
}

.listcase-wrap {
  background: #f5f5f5;
  border-radius: 10px;
  font-size: 14px;
  padding: 15px;
  margin: 15px 0;
}
.listcase__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .shoplist--edit .shoplist__th-info, .shoplist--edit .shoplist__td-info {
    width: 32%;
  }
}
@media (min-width: 768px) {
  .shoplist--edit .shoplist__th-price, .shoplist--edit .shoplist__td-price {
    width: 10%;
  }
}
@media (min-width: 768px) {
  .shoplist--edit .shoplist__th-like, .shoplist--edit .shoplist__td-like {
    width: 9%;
  }
}
@media (min-width: 768px) {
  .shoplist--edit .shoplist__th-del, .shoplist--edit .shoplist__td-del {
    width: 9%;
  }
}
@media (min-width: 768px) {
  .shoplist--edit .shoplist__th-subtotal, .shoplist--edit .shoplist__td-subtotal {
    width: 10%;
    float: none;
  }
}
@media (min-width: 1024px) {
  .shoplist--edit .shoplist__th-price, .shoplist--edit .shoplist__th-subtotal, .shoplist--edit .shoplist__td-price, .shoplist--edit .shoplist__td-subtotal {
    padding-right: 25px;
  }
}
.shoplist--edit .shoplist__td-qtybox::before {
  content: none;
}
.shoplist--edit .shoplist__td-subtotal {
  line-height: 30px;
}
@media (min-width: 768px) {
  .shoplist--edit .shoplist__td-subtotal {
    padding: 13px 10px;
  }
}
.shoplist--edit .shoplist__name {
  padding-right: 35px;
}
@media (min-width: 768px) {
  .shoplist--edit .shoplist__name {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .shoplist--edit .shoplist__event-info {
    padding-right: 8%;
  }
}

@media (min-width: 768px) {
  .shoplist--review .shoplist__th-spec, .shoplist--review .shoplist__td-spec {
    width: 20%;
  }
}
@media (min-width: 768px) {
  .shoplist--review .shoplist__th-price, .shoplist--review .shoplist__td-price {
    width: 20%;
  }
}
@media (min-width: 768px) {
  .shoplist--review .shoplist__th-qtybox, .shoplist--review .shoplist__td-qtybox {
    width: 15%;
  }
}
@media (min-width: 768px) {
  .shoplist--review .shoplist__th-subtotal, .shoplist--review .shoplist__td-subtotal {
    width: 20%;
  }
}

.tag-addbuy,
.tag-gift {
  display: inline-block;
  font-size: 13px;
  line-height: 19px;
  background: #002852;
  color: #fff;
  border: 1px solid currentColor;
  margin-bottom: 6px;
  padding: 0 2px;
  font-weight: 300;
}

.tag-preorder {
  display: inline-block;
  font-size: 13px;
  line-height: 19px;
  background: none;
  color: #033e7c;
  border: 1px solid currentColor;
  margin-bottom: 6px;
  padding: 0 2px;
}

@media (min-width: 768px) {
  .form-qty-select select.form-qty__form-control {
    max-width: 63px;
    min-width: 63px;
  }
}

.step {
  margin: -20px 0 20px;
}
@media (min-width: 768px) {
  .step {
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

.list-step {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 315px;
  margin: 0 auto 25px;
}
@media (min-width: 1024px) {
  .list-step {
    max-width: 812px;
    margin-bottom: 90px;
  }
}
.list-step__item {
  aspect-ratio: 1/1;
  width: 40px;
  height: 40px;
  background: #bababa;
  border-radius: 50%;
  position: relative;
  margin: 0 14px;
  text-align: center;
  color: #fff;
  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: 1024px) {
  .list-step__item {
    aspect-ratio: initial;
    border-radius: 30px;
    width: 180px;
    height: 42px;
    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;
  }
}
.list-step__item--current {
  background: #F03232;
}
.list-step__item:not(:last-child):after {
  content: "";
  height: 2px;
  width: 28px;
  background: #bababa;
  position: absolute;
  right: -28px;
  top: calc(50% - 1px);
}
@media (min-width: 1024px) {
  .list-step__item:not(:last-child):after {
    width: 34px;
    right: -34px;
  }
}
.list-step__item--current:not(:last-child):after {
  background: #F03232;
}
.list-step__item-num {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .list-step__item-num {
    display: none;
  }
}
.list-step__item-title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: none;
}
@media (min-width: 1024px) {
  .list-step__item-title {
    display: block;
  }
}

.totalbox {
  font-size: 18px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}
@media (min-width: 768px) {
  .totalbox {
    text-align: right;
    border-bottom-width: 0;
    padding: 20px 10px;
  }
}
.totalbox__item {
  margin-bottom: 8px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .totalbox__item {
    overflow: visible;
  }
}
.totalbox__field {
  float: left;
}
@media (min-width: 768px) {
  .totalbox__field {
    float: none;
    display: inline-block;
    vertical-align: bottom;
  }
}
.totalbox__qty {
  text-align: right;
}
.totalbox__qty .totalbox__field {
  float: none;
}
@media (min-width: 768px) {
  .totalbox__qty .totalbox__data {
    width: auto;
  }
}
.totalbox__data {
  float: right;
  font-weight: 600;
}
@media (min-width: 768px) {
  .totalbox__data {
    float: none;
    width: 160px;
    display: inline-block;
    vertical-align: bottom;
  }
}
.totalbox__data-qty {
  font-weight: normal;
}
.totalbox__subtotal-num span::before, .totalbox__shipping-num span::before,
.totalbox .total__discount-cost span::before {
  content: "NT$";
}
.totalbox__qty-num {
  display: inline-block;
  margin: 0 5px;
}
.totalbox__discount-free::before, .totalbox__discount-free::after {
  display: inline-block;
  vertical-align: baseline;
}
.totalbox__discount-free:before {
  content: "(";
}
.totalbox__discount-free:after {
  content: ")";
}
.totalbox__total {
  margin: 0;
  padding: 0px;
  color: #FD0050;
}
.totalbox__total-num::before {
  content: "NT$";
  display: inline-block;
  font-size: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.totalbox__field-tips {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  padding: 4px 4px;
  font-size: 13px;
  line-height: 13px;
  position: relative;
  margin-right: 7px;
  display: none;
}
@media (min-width: 768px) {
  .totalbox__field-tips {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .totalbox__field-buy-tips {
    padding-right: 30px;
  }
}

@media (min-width: 768px) {
  .totalbox--collapse {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .totalbox--collapse .totalbox__qty, .totalbox--collapse .totalbox__shipping, .totalbox--collapse .totalbox__discount {
    display: inline-block;
    margin: 0;
    padding: 0 12px;
    vertical-align: bottom;
    position: relative;
  }
  .totalbox--collapse .totalbox__qty::after, .totalbox--collapse .totalbox__shipping::after, .totalbox--collapse .totalbox__discount::after {
    content: "";
    height: 13px;
    width: 1px;
    background-color: #ccc;
    position: absolute;
    right: 0;
    top: 7px;
  }
  .totalbox--collapse .totalbox__data {
    width: auto;
  }
  .totalbox--collapse .totalbox__data span {
    margin: 0;
  }
  .totalbox--collapse .totalbox__data span.text-secondary {
    margin: 0 5px;
  }
  .totalbox--collapse .totalbox__qty {
    padding-left: 0;
  }
  .totalbox--collapse .totalbox__subtotal {
    display: none;
  }
  .totalbox--collapse .totalbox__total {
    padding: 0 12px;
    margin: 0;
    display: inline-block;
    float: none;
    vertical-align: bottom;
  }
  .totalbox--collapse .totalbox__field-tips, .totalbox--collapse .totalbox__field-buy-tips {
    display: none;
  }
}

@media (min-width: 768px) {
  .boardlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: 0 -15px;
  }
}
.boardlist__item {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .boardlist__item {
    margin: 0 15px 30px;
    width: calc(50% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.boardlist__heading {
  color: #033e7c;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  padding: 10px 0;
}
.boardlist__body {
  border: 1px solid border-light;
  background: #f5f5f5;
  line-height: 1.9375;
  margin: 8px 0;
  padding: 10px;
}
@media (min-width: 768px) {
  .boardlist__body {
    padding: 28px 30px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 1024px) {
  .boardlist__body {
    padding: 20px 30px;
    min-height: 225px;
  }
}

.tab {
  margin: 0 -10px;
}
@media (min-width: 1024px) {
  .tab {
    margin: 0;
  }
}
.tab.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}
@media (min-width: 1024px) {
  .tab.fixed-top {
    position: static;
  }
}
.tab__content {
  display: none;
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (min-width: 1024px) {
  .tab__content {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}
.tab__content--show {
  display: block;
  padding: 20px 10px;
}
@media (min-width: 1024px) {
  .tab__content--show {
    padding: 30px 0;
  }
}
.tab__list {
  padding: 0;
  margin: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #E7E7E7;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .tab__list {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}
.tab__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.tab__link {
  color: #bababa;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .tab__link {
    padding: 20px;
    font-size: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.tab__link:hover, .tab__item--current .tab__link:active, .tab__item--current .tab__link {
  background: #fff;
  color: #1a1a1a;
}
.tab__part:after {
  content: "-";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 10px;
}
.tab__text {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.tab__num {
  display: inline-block;
  vertical-align: middle;
  padding: 1px 4px;
  margin-left: 10px;
  position: relative;
}
.tab__num::before, .tab__num::after {
  position: absolute;
  top: 0;
}
.tab__num::before {
  left: -3px;
  content: "(";
}
.tab__num::after {
  right: -3px;
  content: ")";
}

.tabs--2 .tab__item {
  width: calc(50% - 10px);
  margin: 0 5px;
}
@media (min-width: 768px) {
  .tabs--2 .tab__item {
    width: auto;
    margin: 0 10px;
  }
}
@media (min-width: 768px) {
  .tabs--2 .tab__item:first-child {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .tabs--2 .tab__list {
    margin-left: 0;
    margin-right: 0;
  }
}

.tabs--3 .tab__item {
  width: calc(33.333% - 10px);
}
@media (min-width: 768px) {
  .tabs--3 .tab__item {
    width: auto;
    margin: 0 10px;
  }
}
@media (min-width: 768px) {
  .tabs--3 .tab__item:first-child {
    margin-left: 0;
  }
}

.tabs {
  padding: 0;
  margin: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #FD0050;
  max-width: 394px;
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .tabs {
    max-width: 812px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
}
.tabs__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 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;
  padding: 10px;
}
@media (min-width: 1024px) {
  .tabs__item {
    padding: 25px;
  }
}
.tabs__item:nth-child(1) {
  background: #1a1a1a;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media (min-width: 1024px) {
  .tabs__item:nth-child(1) {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
}
.tabs a {
  display: block;
  cursor: pointer;
}
.tabs__img {
  max-height: 18px;
}
@media (min-width: 1024px) {
  .tabs__img {
    max-height: 35px;
  }
}

body.header-fixed {
  overflow: hidden;
}
body.scroll-fixed {
  overflow: hidden;
}

.wrap {
  background: #f5f5f5 url("../images/bg.png") no-repeat;
  background-size: 1360px;
  background-position: 50% 0;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .wrap {
    background-size: 100%;
  }
}
.wrap__inner {
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .wrap__inner {
    padding: 0 20px;
  }
}
.wrap__inner--no-padding {
  padding: 0;
}
.wrap__inner--md {
  max-width: 812px;
}
@media (min-width: 1024px) {
  .wrap__inner--md {
    padding: 0;
  }
}
.wrap__inner--lg {
  max-width: 1024px;
}
@media (min-width: 1024px) {
  .wrap__inner--lg {
    padding: 0;
  }
}
.wrap__inner--xl {
  max-width: 1364px;
}
@media (min-width: 1230px) {
  .wrap__inner--xl {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .wrap__inner::after {
    content: " ";
    display: block;
    clear: both;
    line-height: 0;
    height: 0;
    visibility: hidden;
  }
}

.header {
  background: #fff;
  height: 44px;
  z-index: 10;
  border-bottom: 1px solid #e1e1e1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (min-width: 1024px) {
  .header {
    position: relative;
    height: auto;
    padding-top: 1px;
    margin-top: -1px;
  }
}
@media (min-width: 1024px) {
  .header::before {
    content: "";
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e1e1;
    position: absolute;
    bottom: 64px;
  }
}
.header::after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
}
@media (min-width: 1024px) {
  .header__inner {
    position: static;
  }
}
.header__btn {
  display: inline-block;
  text-align: center;
  height: 43px;
  line-height: 43px;
  min-width: 43px;
  text-decoration: none;
  color: #1a1a1a;
}
@media (min-width: 1024px) {
  .header__btn {
    position: static;
    height: 62px;
    line-height: 62px;
    width: 50px;
  }
}
.header__btn-text {
  display: none;
}
.header__btn-icon {
  font-size: 22px;
}
.header__like {
  display: none;
}
@media (min-width: 1024px) {
  .header__like {
    display: block;
    float: right;
  }
}
@media (min-width: 1024px) {
  .header__like .header__btn-icon {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .header__inner-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .header__function {
    z-index: 11;
    position: relative;
  }
}
@media (min-width: 1440px) {
  .header__function {
    right: 0;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .header-fixed-web .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .header::before {
    content: none;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    max-width: 1400px;
  }
}
@media (min-width: 1440px) {
  .header-fixed-web .header__inner {
    padding: 0 15px;
  }
}
@media (min-width: 1430px) {
  .header-fixed-web .header__inner {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .header__logo {
    width: 100px;
    height: 34px;
    margin: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .header__inner-bar {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 30px;
  }
}
@media (min-width: 1440px) {
  .header-fixed-web .header__inner-bar {
    padding-left: 50px;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .nav__item {
    margin-right: 30px;
  }
}
@media (min-width: 1440px) {
  .header-fixed-web .nav__item {
    margin-right: 50px;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .content:before {
    content: "";
    height: 64px;
  }
}

.content {
  padding: 0;
  min-height: 50vh;
  padding: 40px 0 70px;
}
@media (min-width: 768px) {
  .content {
    padding-bottom: 220px;
    min-height: inherit;
  }
}
@media (min-width: 1024px) {
  .content {
    padding: 50px 0 240px;
  }
}

.section {
  margin: 0 0 25px;
}
@media (min-width: 1024px) {
  .section {
    margin-bottom: 50px;
  }
}
.section:last-child.section--gray {
  margin-bottom: 0;
}
.section--gray {
  padding: 25px 0;
  background: #f5f5f5;
}
@media (min-width: 1024px) {
  .section--gray {
    padding: 35px 0;
  }
}
.section__heading {
  text-align: center;
  font-size: 20px;
  margin-bottom: 25px;
  color: #FD0050;
  line-height: 1.3;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .section__heading {
    font-size: 22px;
    line-height: 1.36;
    margin-bottom: 35px;
  }
}
.section__title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 12px;
  color: #FD0050;
  line-height: 1.3;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .section__title {
    border-bottom: 1px solid #e1e1e1;
    text-align: left;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.section__text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.section2 {
  padding: 30px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 1230px) {
  .section2 {
    padding: 40px 0;
  }
}
.section2__heading {
  margin-bottom: 30px;
}
@media (min-width: 1230px) {
  .section2__heading {
    margin-bottom: 35px;
  }
}
.section2__title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.28;
}
@media (min-width: 1230px) {
  .section2__title {
    font-size: 50px;
    margin-bottom: 60px;
  }
}
.section2__subtitle {
  font-size: 20px;
  color: #F03232;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .section2__subtitle {
    font-size: 24px;
  }
}
@media (min-width: 1230px) {
  .section2__subtitle {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.section2__thirdtitle {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}
.section2__desc {
  line-height: 1.87;
  margin: 0 0 30px;
}
@media (min-width: 1230px) {
  .section2__desc {
    margin-bottom: 50px;
  }
}
.section2__intro-tips {
  position: relative;
  background: #FFCFC3;
}
@media (min-width: 1230px) {
  .section2__intro-tips {
    max-width: 812px;
    margin: 0 auto;
  }
}
.section2__intro-tips:before {
  content: "";
  border-radius: 20px;
  border: 2px solid #FFEAE5;
  background: #FFCFC3;
  -webkit-box-shadow: inset -10px -10px 30px #FF805F;
          box-shadow: inset -10px -10px 30px #FF805F;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.section2__intro-desc {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: #fff;
  line-height: 1.75;
}
@media (min-width: 1024px) {
  .section2__intro-desc {
    padding: 35px 45px;
    border-radius: 30px;
    font-size: 1.25em;
    line-height: 1.5;
  }
}
.section2__tips {
  font-size: 0.875em;
  line-height: 1.57;
  text-align: center;
}
.section2__btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  .section-side {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .section-side--gray {
    background: #f5f5f5;
    padding: 16px 14px;
  }
}
@media (min-width: 1024px) {
  .section-side__heading {
    color: #033e7c;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1em;
  }
}

@media (min-width: 1024px) {
  .main-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1024px) {
  .main-wrap--single {
    display: block;
  }
}
@media (min-width: 1024px) {
  .main-wrap__main {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 381px);
            flex: 0 0 calc(100% - 381px);
  }
}
.main-wrap__side {
  display: none;
}
@media (min-width: 1024px) {
  .main-wrap__side {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 366px;
            flex: 0 0 366px;
    margin-right: 15px;
  }
}
@media (min-width: 1024px) {
  .main-wrap__side .box__body {
    padding: 35px;
  }
}

.footer {
  background: #211C15;
  color: #fff;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .footer {
    height: 200px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 30px 0 25px;
    height: 140px;
  }
}
.footer a {
  color: inherit;
}
.footer a:focus, .footer a:active {
  color: #bababa;
}
@media (min-width: 1024px) {
  .footer a:hover {
    color: #bababa;
  }
}
.footer__copyright {
  text-align: center;
  font-size: 0.875em;
  color: #bababa;
  line-height: 1;
}
@media (min-width: 768px) {
  .footer__copyright br {
    display: none;
  }
}

.breadcrumb {
  font-size: 0.875em;
  padding: 8px 0;
  margin: 0;
  line-height: 1.7;
  display: none;
}
@media (min-width: 768px) {
  .breadcrumb {
    padding: 14px 0;
  }
}
@media (min-width: 1024px) {
  .breadcrumb {
    padding: 18.5px 0;
  }
}
.breadcrumb__item {
  display: inline;
  color: #1a1a1a;
}
.breadcrumb__item::before {
  content: ">";
  margin: 0 3px;
}
.breadcrumb__item:first-child:before {
  display: none;
}
.breadcrumb__item--current {
  color: #333;
}
.breadcrumb__link {
  color: #1a1a1a;
  text-decoration: none;
}
.breadcrumb__link:focus, .breadcrumb__link:active {
  color: #333;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .breadcrumb__link:hover {
    color: #333;
    text-decoration: none;
  }
}
.breadcrumb__item--current .breadcrumb__link {
  color: #333;
}
.breadcrumb__icon {
  margin-top: -4px;
  font-size: 22px;
}

.nav-footer-wrap {
  margin: 0 -10px;
}
@media (min-width: 768px) {
  .nav-footer-wrap {
    display: inline-block;
    margin: 0;
  }
}

.nav-footer {
  padding: 0;
}
@media (min-width: 768px) {
  .nav-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.nav-footer__item {
  text-align: left;
  border-top: 1px solid hsla(0deg, 0%, 87%, 0.3);
}
@media (min-width: 768px) {
  .nav-footer__item {
    border: none;
  }
}
@media (min-width: 1024px) {
  .nav-footer__item {
    width: 160px;
  }
}
.nav-footer__heading {
  padding: 1em 10px;
  cursor: pointer;
  font-weight: normal;
}
@media (min-width: 768px) {
  .nav-footer__heading {
    padding: 0 0 22px;
    cursor: default;
  }
}
.nav-footer__heading-icon {
  -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;
  float: right;
  font-size: 20px;
  color: #bababa;
}
@media (min-width: 768px) {
  .nav-footer__heading-icon {
    display: none;
  }
}
.nav-footer__heading--open .nav-footer__heading-icon {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.nav-footer__sub-nav {
  padding: 0;
  margin: -7px 0 8px;
  -webkit-transition: max-height 0.35s;
  transition: max-height 0.35s;
  max-height: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .nav-footer__sub-nav {
    max-height: 2000px;
  }
}
.nav-footer__heading--open + .nav-footer__sub-nav {
  max-height: 2000px;
}
@media (min-width: 768px) {
  .nav-footer__sub-item {
    margin: 0.7142857143em 0;
  }
}
.nav-footer__sub-link {
  display: block;
  padding: 14px 10px;
  line-height: 1.25;
  text-decoration: none;
  font-size: 0.875em;
  color: inherit;
}
@media (min-width: 768px) {
  .nav-footer__sub-link {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .nav-footer__sub-link {
    display: inline-block;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }
}

@media (min-width: 768px) {
  .footer-info {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-info a {
  color: inherit;
}
.footer-info__info {
  line-height: 1.8;
  font-size: 14px;
}
.footer-info__info-tel {
  text-decoration: none;
}

.companylist {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .companylist {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.companylist__item {
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .companylist__item {
    padding: 0 20px;
    position: relative;
  }
}
@media (min-width: 768px) {
  .companylist__item:not(:last-child):after {
    content: " ";
    display: block;
    width: 1px;
    height: 15px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 2px;
  }
}
.companylist__link {
  color: inherit;
  display: block;
  font-size: 0.875em;
}
@media (min-width: 768px) {
  .companylist__link {
    font-size: 1em;
  }
}

.contactlist {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .contactlist {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contactlist__item {
  margin: 0 0 10px;
}
@media (min-width: 1024px) {
  .contactlist__item {
    padding: 0 20px;
    position: relative;
  }
}
@media (min-width: 1024px) {
  .contactlist__item:not(:last-child):after {
    content: " ";
    display: block;
    width: 1px;
    height: 15px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 1px;
  }
}
.contactlist__link {
  color: inherit;
  display: block;
  font-size: 0.875em;
}
@media (min-width: 1024px) {
  .contactlist__link {
    font-size: 1em;
  }
}

.social-media__heading {
  display: none;
}

.list-icon {
  padding: 0;
  font-size: 0;
  letter-spacing: -4px;
  word-spacing: 0;
  margin: 0 -9px;
}
.list-icon__item {
  font-size: 16px;
  letter-spacing: normal;
  word-spacing: normal;
  zoom: 1;
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
  overflow: hidden;
}
.list-icon__link {
  display: block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  -webkit-transition: 0.35s color cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.35s color cubic-bezier(0.165, 0.84, 0.44, 1);
}
.list-icon__icon {
  font-size: 40px;
}