@charset "UTF-8";
/******************************************************************************
 * Version 1.0 Release;
 * Copyright 2018
 ******************************************************************************/
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,900");
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 {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
mark {
  background: #ff0;
  color: #000;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
}

table > caption {
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 0;
}

input, select {
  vertical-align: middle;
}

/*==================== 表單元素 - 去除ios預設外觀 input ====================*/
input,
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
}

/*==================== 表單元素 - 去除ie預設外觀 select ====================*/
select::-ms-expand {
  display: none;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-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;
  -moz-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;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  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;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*==================== 清單 ====================*/
ul,
ol {
  margin-top: 0;
  margin-bottom: .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;
}

::-moz-selection {
  color: #fff;
  background: #00B09D;
}

::selection {
  color: #fff;
  background: #00B09D;
}

.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: 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: 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;
}

.flex-separate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 0) {
  .flex-separate-xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 600px) {
  .flex-separate-sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .flex-separate-md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .flex-separate-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 1440px) {
  .flex-separate-xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 1920px) {
  .flex-separate-xxl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.border {
  border: 1px solid #ddd;
}

.bg-gray {
  background: #F8F8F8;
}

.price-sell {
  color: #888;
  font-size: 14px;
  margin-bottom: 5px;
}

.price-offer {
  color: #00B09D;
  margin-bottom: 5px;
}

.price-cht {
  margin-right: 5px;
}

.price-num {
  display: inline-block;
}

.price-num::before {
  content: "NT$";
  display: inline;
  margin-right: .3125em;
}

.price-num-simple::before {
  content: "$";
  display: inline;
  margin-right: .15em;
}

.price-sell-num {
  text-decoration: line-through;
}

.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 .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  opacity: 0;
  z-index: 1;
}

.hover-mask:hover::before {
  opacity: .06;
}

.tab-filter {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px 20px;
}

@media (min-width: 1024px) {
  .tab-filter {
    margin: 0 0 30px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.tab-filter::before, .tab-filter::after {
  content: '';
  position: absolute;
  display: block;
}

@media (min-width: 1024px) {
  .tab-filter::before, .tab-filter::after {
    content: none;
  }
}

.tab-filter::before {
  left: 50%;
  top: 50%;
  height: 20px;
  width: 1px;
  background: #ddd;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none;
}

.tab-filter::after {
  top: 100%;
  left: -15px;
  right: -15px;
  height: 6px;
}

.tab-filter__item {
  width: calc(50% - 10px);
  padding: 10px 5px;
  margin: 0 5px;
}

@media (min-width: 1024px) {
  .tab-filter__item {
    width: auto;
    padding: 0;
  }
}

.tab-filter__input {
  display: none;
}

.tab-filter__label {
  text-align: center;
  display: block;
  padding: 10px 1em;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #ddd;
  color: #aaa;
  -webkit-transition: background .15s;
  -o-transition: background .15s;
  transition: background .15s;
  cursor: pointer;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .tab-filter__label {
    padding: 3px 8px;
  }
}

.tab-filter__label:focus, .tab-filter__label:active {
  color: #fff;
}

@media (min-width: 1024px) {
  .tab-filter__label:hover {
    color: #fff;
  }
}

.tab-filter__input:checked + .tab-filter__label, .tab-filter__label:hover {
  background: #34383C;
  color: #fff;
  border-color: #34383C;
}

.tab-filter__input:checked + .tab-filter__label {
  background: #34383C;
  color: #fff;
  border-color: #34383C;
}

.tab-filter__label-text {
  vertical-align: middle;
}

.tab-filter__label-icon {
  margin-right: 5px;
  text-decoration: none;
}

.bdbox {
  overflow: hidden;
}

@media (min-width: 1920px) {
  .bdbox__300x250 {
    width: 300px;
    height: 250px;
  }
}

@media (min-width: 1920px) {
  .bdbox__300x600 {
    width: 300px;
    height: 600px;
  }
}

@media (min-width: 1920px) {
  .bdbox__1020x260 {
    width: 1020px;
    height: 260px;
  }
}

/*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-first:before {
  content: "\e939";
}

.icon-last:before {
  content: "\e93a";
}

.icon-next:before {
  content: "\e93b";
}

.icon-prev:before {
  content: "\e93c";
}

.icon-docx:before {
  content: "\e938";
}

.icon-pdf:before {
  content: "\e924";
}

.icon-ppt:before {
  content: "\e925";
}

.icon-rar:before {
  content: "\e935";
}

.icon-xls:before {
  content: "\e936";
}

.icon-zip:before {
  content: "\e937";
}

.icon-download_circle:before {
  content: "\e900";
}

.icon-page_browser:before {
  content: "\e901";
}

.icon-page_error:before {
  content: "\e902";
}

.icon-play_circle:before {
  content: "\e903";
  color: #707070;
}

.icon-rss:before {
  content: "\e904";
}

.icon-nav:before {
  content: "\e905";
}

.icon-youtube:before {
  content: "\e906";
}

.icon-facebook:before {
  content: "\e907";
}

.icon-gotop:before {
  content: "\e908";
}

.icon-search:before {
  content: "\e909";
}

.icon-arrow_up:before {
  content: "\e90a";
}

.icon-arrow_down:before {
  content: "\e90b";
}

.icon-arrow_right:before {
  content: "\e90c";
}

.icon-arrow_left:before {
  content: "\e90d";
}

.icon-close:before {
  content: "\e90e";
}

.icon-subtract:before {
  content: "\e90f";
}

.icon-plus:before {
  content: "\e910";
}

.icon-none:before {
  content: "\e911";
}

.icon-check:before {
  content: "\e912";
}

.icon-arrow_right_circle:before {
  content: "\e913";
}

.icon-plus_circle:before {
  content: "\e914";
}

.icon-check_circle:before {
  content: "\e915";
}

.icon-facebook2:before {
  content: "\e916";
}

.icon-warning:before {
  content: "\e917";
}

.icon-google_plus:before {
  content: "\e918";
}

.icon-del_circle:before {
  content: "\e919";
}

.icon-del:before {
  content: "\e91a";
}

.icon-arrow_down_circle: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-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";
}

.icon-bookmark:before {
  content: "\e92e";
}

.icon-copy:before {
  content: "\e92f";
}

.icon-hot:before {
  content: "\e930";
}

.icon-new:before {
  content: "\e931";
}

.icon-text_lg:before {
  content: "\e932";
}

.icon-text_md:before {
  content: "\e933";
}

.icon-text_sm:before {
  content: "\e934";
}

.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-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl,
.col-xxl-auto {
  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.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.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.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.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.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.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.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.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.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@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.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .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.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .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.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .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.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@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.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .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.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .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.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .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.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@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.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .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.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .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.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .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.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@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.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .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.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .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.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .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.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

@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.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .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.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .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.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .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.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66667%;
  }
}

body {
  color: #333;
  font: 100%/1.2 "Lato", "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  letter-spacing: .05em;
}

a {
    color: #00B09D;
    text-decoration: underline;
    cursor: pointer;
}

a:focus, a:active {
  color: #00B09D;
  text-decoration: none;
  outline: 0;
}

@media (min-width: 1024px) {
  a:hover {
    color: #00B09D;
    text-decoration: none;
    outline: 0;
  }
}

.heading1,
.heading2,
.heading3,
.heading4,
.heading5,
.heading6 {
  font-weight: bold;
  line-height: 1.36;
  text-transform: none;
}

.heading1 {
  font-size: 1.375em;
}

@media (min-width: 1024px) {
  .heading1 {
    font-size: 2em;
  }
}

.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: .05em;
}

.text {
  font-size: 14px;
}

.text--left {
  text-align: left;
}

.text--center {
  text-align: center;
}

.text--right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.text-primary {
  color: #00B09D;
}

.text-primary:hover, .text-primary:focus {
  color: #00B09D;
}

.text-secondary {
  color: #988976;
}

.text-secondary:hover, .text-secondary:focus {
  color: inherit;
}

.text-third {
  color: #ddd;
}

.text-fourth {
  color: #eee;
}

.text-success {
  color: #00B09D;
}

.text-success:hover, .text-success:focus {
  color: #00B09D;
}

.text-info {
  color: #ddd;
}

.text-info:hover, .text-info:focus {
  color: #ddd;
}

.text-warning {
  color: #E20000;
}

.text-warning:hover, .text-warning:focus {
  color: #E20000;
}

.bg-primary {
  background: #E20000;
}

.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: .3em;
}

.listtext--cjk-arc > .listtext__item::before {
  counter-increment: counter;
  content: "(" counter(counter, cjk-ideographic) ")";
  position: absolute;
  left: -1.5em;
}

.listtext--diamond {
  padding-left: 0;
}

.listtext--diamond > .listtext__item::before {
  content: '◆';
  margin-right: 0.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;
  padding: 2px 8px;
  background: #34383C;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  -webkit-transition: background .2s, color .15s;
  -o-transition: background .2s, color .15s;
  transition: background .2s, color .15s;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .tag {
    font-size: 14px;
  }
}

.tag:focus, .tag:active {
  background: #00B09D;
  color: #fff;
}

@media (min-width: 1024px) {
  .tag:hover {
    background: #00B09D;
    color: #fff;
  }
}

.taglist {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: -5px;
  max-width: 100%;
}

.taglist__item {
  display: inline-block;
  *display: inline;
  overflow: hidden;
  margin: 5px;
  padding: 1px;
  max-width: 100%;
  zoom: 1;
}

.taglist--strong .taglist__item {
  margin: 6px 4px;
}

.taglist__link, .taglist__text {
  display: block;
  overflow: hidden;
  padding: 1px 2px;
  max-width: calc(100% + 1em);
  text-decoration: none;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: .25em .5em;
  background: #00B09D;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 50px;
  font-size: 12px;
}

@media (min-width: 1024px) {
  .taglist__link, .taglist__text {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .taglist__link {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
  }
}

.taglist--strong .taglist__link {
  color: #333;
}

.taglist__link:focus, .taglist__link:active {
  background: #00B09D;
  color: #fff;
}

@media (min-width: 1024px) {
  .taglist__link:hover {
    background: #00B09D;
    color: #fff;
  }
}

.taglist--strong {
  margin: -6px -4px;
}

.tag-event {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  padding: 5px 0 0 4px;
  color: #fff;
  font-size: 13px;
}

.tag-event::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-width: 49px 57px 0 0;
  border-style: solid;
  border-color: #E20000 transparent transparent transparent;
  content: ' ';
}

.tag-time {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: none;
  padding: 4px 0;
  min-height: 69px;
  width: 44px;
  background: #E20000;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  pointer-events: none;
}

.tag-time--show {
  display: block;
}

.tag-time__icon {
  display: block;
  margin-bottom: .25em;
  font-weight: normal;
  font-size: 20px;
}

.tag-time__strong {
  font-size: 18px;
}

.tag-store {
  display: inline-block;
  width: 60px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0;
}

.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%;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: transparent;
}

table > caption {
  overflow: hidden;
  width: 0;
  height: 0;
  text-indent: 100%;
  white-space: nowrap;
}

.table {
  overflow: hidden;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.table__row {
  padding: 10px;
  border-width: 1px 1px 0 1px;
  font-size: 0.875em;
  border: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .table__row {
    display: table;
    padding: 0;
    width: 100%;
  }
}

@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: #00B09D;
    color: #fff;
  }
}

@media (min-width: 1024px) {
  .table__head .table__cell,
  .table__body .table__cell {
    display: table-cell;
    padding: 10px 6px;
    vertical-align: middle;
    text-align: center;
  }
}

@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 {
  display: inline-block;
  margin: -3px 0 0;
  content: attr(data-th) "：";
  vertical-align: middle;
  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 {
  margin-bottom: 20px;
  font-size: .875em;
}

.table + .table__tips {
  margin-top: -10px;
}

.btn {
  border: 1px solid transparent;
  display: inline-block;
  padding: 12px 10px;
  font-size: inherit;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: .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;
  -webkit-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  border-radius: 5px;
}

@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);
    -o-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--default {
  color: #777;
  background: #fff;
  border-color: #ddd;
}

.btn--default:focus, .btn--default:active {
  color: #777;
  background: #e6e6e6;
}

@media (min-width: 1024px) {
  .btn--default:hover {
    color: #777;
    background: #e6e6e6;
  }
}

.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: #00B09D;
  border-color: #00B09D;
}

.btn--primary:focus, .btn--primary:active {
  color: #fff;
  background: #007d70;
  border-color: #F6BC0C;
}

@media (min-width: 1024px) {
  .btn--primary:hover {
    color: #fff;
    background: #007d70;
    border-color: #F6BC0C;
  }
}

.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: #333;
  background: #fff;
  border-color: #ddd;
}

.btn--third:focus, .btn--third:active {
  color: #F6BC0C;
  border-color: #F6BC0C;
}

@media (min-width: 1024px) {
  .btn--third:hover {
    color: #F6BC0C;
    border-color: #F6BC0C;
  }
}

.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: #1877f2;
  border-color: #1877f2;
}

.btn--facebook:focus, .btn--facebook:active {
  color: #fff;
  background: #4267b2;
  border-color: #4267b2;
}

@media (min-width: 1024px) {
  .btn--facebook:hover {
    color: #fff;
    background: #4267b2;
    border-color: #4267b2;
  }
}

.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-function {
  text-align: center;
  display: block;
  padding: .55em 1em;
  text-decoration: none;
  border-radius: 2.77778em;
  color: #988976;
  -webkit-transition: background .15s;
  -o-transition: background .15s;
  transition: background .15s;
}

.btn-function:focus, .btn-function:active {
  color: #988976;
  background: #F8F8F8;
}

@media (min-width: 1024px) {
  .btn-function:hover {
    color: #988976;
    background: #F8F8F8;
  }
}

.btn-function__text {
  vertical-align: middle;
}

.btn-function:hover .btn-function__text {
  text-decoration: underline;
}

.btn-function__icon {
  margin-right: .35em;
}

.btn-xs {
  font-size: .75em;
  padding: 3px 6px;
}

@media (min-width: 1024px) {
  .btn-xs {
    font-size: .75em;
  }
}

.btn-sm {
  font-size: .75em;
  padding: 6px 20px;
}

.btn-md {
  max-height: 44px;
  width: 100%;
}

@media (min-width: 768px) {
  .btn-md {
    width: 170px;
  }
}

.btn-lg {
  width: 100%;
}

@media (min-width: 1024px) {
  .btn-lg {
    font-size: 1.11111em;
    padding: 15px 10px 15px;
  }
}

.btn--max-width-170 {
  max-width: 170px;
}

.btn-icon {
  display: block;
  color: #999;
}

.btn-icon:active {
  color: #222;
}

.icon-btn__icon {
  font-size: inherit;
}

.btnbox {
  text-align: 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: 0 auto;
}

.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: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  color: #888;
  display: inline-block;
}

.btn-like--active .btn-like__icon {
  -webkit-animation: like .15s;
  animation: like .15s;
}

@media (min-width: 1024px) {
  .btn-like:hover .btn-like__icon {
    color: #988976;
  }
}

.btn-like--active .btn-like__icon::before {
  content: '\e92a';
  color: #00B09D;
}

@media (min-width: 1024px) {
  .btn-like:hover .btn-like__icon::before {
    content: '\e92a';
    color: #988976;
  }
}

@-webkit-keyframes favorite {
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes favorite {
  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 {
  margin: 50px 0;
  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;
}

.pagination__control {
  margin: 0 5px;
}

.pagination__control--disabled {
  border: none;
}

.pagination__link {
  display: block;
  text-decoration: none;
  width: 36px;
  height: 36px;
  color: #333;
  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;
  border-radius: 50%;
  background: #fff;
}

.pagination__link:focus, .pagination__link:active {
  color: #fff;
  background: #00B09D;
}

@media (min-width: 1024px) {
  .pagination__link:hover {
    color: #fff;
    background: #00B09D;
  }
}

.pagination__control--disabled .pagination__link {
  text-decoration: none;
  border: none;
  cursor: default;
  pointer-events: none;
  color: #ccc;
}

.pagination__icon {
  font-size: 24px;
}

.pagination__current {
  display: inline-block;
  margin: 0 2px;
  vertical-align: middle;
  font-weight: bold;
}

@media (min-width: 768px) {
  .pagination__current {
    display: none;
  }
}

.pagination__current-num {
  padding: 0 5px;
  font-weight: bold;
  color: #00B09D;
}

.list-page {
  display: none;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 768px) {
  .list-page {
    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: 0;
  }
}

@media (min-width: 768px) {
  .list-page__item {
    margin: 0 10px;
  }
}

@media (min-width: 768px) {
  .list-page__link {
    text-decoration: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #555;
    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;
  }
}

@media (min-width: 768px) {
  .list-page__item:hover .list-page__link,
  .list-page__item--current .list-page__link {
    color: #fff;
    background: #00B09D;
  }
}

.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__btn {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  padding: 10px 10px;
  display: block;
  text-decoration: none;
  background: #fff;
  border-style: solid;
  border-color: #e1e1e1;
  border-width: 1px;
}

.collapse--open .collapse__btn {
  border-bottom-width: 0;
}

.collapse__icon {
  position: absolute;
  top: 50%;
  right: 12px;
  font-size: 12px;
  color: #ddd;
  margin-top: -.5em;
  -webkit-transition: -webkit-transform .25s ease-in-out;
  transition: -webkit-transform .25s ease-in-out;
  -o-transition: transform .25s ease-in-out;
  transition: transform .25s ease-in-out;
  transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}

.collapse--open .collapse__icon {
  top: 50%;
  -webkit-transform: rotate(-180deg);
  -ms-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 .25s ease;
  -o-transition: all .25s ease;
  transition: all .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 .5s ease .05s;
  -o-transition: top .5s ease .05s;
  transition: top .5s ease .05s;
  font-size: inherit;
  background: #535353;
}

.tooltips--active .tooltips__info {
  top: 50%;
}

.tooltips--error .tooltips__info {
  background: #E20000;
}

.tooltips--success .tooltips__info {
  background: #F6BC0C;
}

.tooltips__icon, .tooltips__text {
  display: inline-block;
  vertical-align: middle;
}

.tooltips__icon {
  font-size: 20px;
  margin: 0 8px 0 0;
}

.tooltips__text {
  letter-spacing: .1em;
}

.loading {
  position: relative;
  cursor: default;
}

.loading::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 101;
  width: 2em;
  height: 2em;
  margin: -1.5em 0 0 -1.5em;
  -webkit-box-shadow: 0 0 0 1px transparent;
  box-shadow: 0 0 0 1px transparent;
  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: .2em;
  border-radius: 500rem;
  -webkit-animation: form-spin .4s linear;
  animation: form-spin .4s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  visibility: visible;
}

.load-more {
  min-height: 30px;
  margin-top: 20px;
  text-align: center;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  opacity: 0;
}

.load-more--active {
  opacity: 1;
}

.load-more__text {
  display: none;
  overflow: none;
  text-indent: 100%;
  white-space: nowrap;
}

@-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 .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear;
}

.lightbox--active {
  opacity: 1;
  top: 0;
  bottom: 0;
  z-index: 1000;
}

.lightbox__box {
  position: relative;
  width: auto;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  -o-transition: transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .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);
}

.lightbox--active .lightbox__box {
  -webkit-transform: translate(0, 0);
  -ms-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 #ddd;
  background-color: #34383C;
  color: #fff;
}

.lightbox__head--left {
  padding-left: 15px;
}

.lightbox__title {
  color: #fff;
  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;
  color: #fff;
}

.lightbox__close-icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-decoration: none;
  -webkit-transition: background .3s;
  -o-transition: background .3s;
  transition: background .3s;
}

.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 {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #e8e8e8;
}

.lightbox__body--scroll::-webkit-scrollbar-thumb {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: #988976;
}

.lightbox__footer {
  padding: 0 15px 15px;
}

.lightbox__desc {
  line-height: 1.8;
  text-align: center;
  overflow: hidden;
}

.carousel-wrap {
  position: relative;
  margin: 0 0 30px;
}

@media (min-width: 1024px) {
  .carousel-wrap--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__btn {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  top: 50%;
  color: #fff;
  -webkit-transition: color .25s ease, opacity .25s ease;
  -o-transition: color .25s ease, opacity .25s ease;
  transition: color .25s ease, opacity .25s ease;
  text-decoration: none;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.carousel__btn:focus, .carousel__btn:active {
  color: #fff;
}

@media (min-width: 1024px) {
  .carousel__btn:hover {
    color: #fff;
  }
}

@media (min-width: 1024px) {
  .carousel__btn:hover {
    opacity: .8;
  }
}

.carousel__btnbox--sm .carousel__btn {
  font-size: 30px;
}

@media (min-width: 1440px) {
  .carousel__btnbox--lg .carousel__btn {
    color: #00B09D;
    text-shadow: none;
  }
}

.carousel__btn--disabled {
  color: #ccc;
}

.carousel__btn-icon {
  font-size: 30px;
  display: inline-block;
}

@media (min-width: 1024px) {
  .carousel__btn-icon {
    font-size: 36px;
  }
}

.carousel__btn-prev {
  left: 0;
}

@media (min-width: 1440px) {
  .carousel__btnbox--lg .carousel__btn-prev {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.carousel__btn-next {
  right: 0;
}

@media (min-width: 1440px) {
  .carousel__btnbox--lg .carousel__btn-next {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.owl-carousel .owl-nav {
  cursor: pointer;
  z-index: 999;
  width: 100%;
}

.owl-theme .owl-nav [class*=owl-] {
  width: 36px;
  height: 36px;
  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;
  color: #fff;
  border-radius: 0;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  border: none;
  font-weight: normal;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 2;
  margin: 0;
  top: calc(50% - 18px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .owl-theme .owl-nav [class*=owl-] {
    width: 80px;
    height: 80px;
    top: calc(50% - 40px);
  }
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: initial;
  color: #fff;
  opacity: 0.5;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  color: #fff;
  overflow: hidden;
}

.owl-carousel .owl-nav button.owl-prev:active,
.owl-carousel .owl-nav button.owl-prev:hover {
  -webkit-transform: translate(-5px, -50%);
  -ms-transform: translate(-5px, -50%);
  transform: translate(-5px, -50%);
}

.owl-carousel .owl-nav button.owl-next:active,
.owl-carousel .owl-nav button.owl-next:hover {
  -webkit-transform: translate(5px, -50%);
  -ms-transform: translate(5px, -50%);
  transform: translate(5px, -50%);
}

.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.owl-theme .owl-nav [class*=owl-] span {
  padding-top: 100px;
}

.owl-theme .owl-nav [class*=owl-] span:before {
  font-family: 'icomoon';
  font-size: 26px;
  display: inline;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width: 1024px) {
  .owl-theme .owl-nav [class*=owl-] span:before {
    font-size: 60px;
  }
}

.owl-theme .owl-nav .owl-prev span:before {
  content: "\e90d";
}

.owl-theme .owl-nav .owl-next span:before {
  content: "\e90c";
}

.owl-carousel.carousel__nav--over .owl-nav [class*=owl-] {
  width: 50px;
  height: 50px;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
}

.owl-carousel.carousel__nav--over .owl-nav button.owl-next,
.owl-carousel.carousel__nav--over .owl-nav button.owl-prev {
  font-size: 50px;
  color: #fff;
  background-color: transparent;
  opacity: 0.5;
}

.owl-carousel.carousel__nav--over .owl-nav button.owl-next:active,
.owl-carousel.carousel__nav--over .owl-nav button.owl-next:hover,
.owl-carousel.carousel__nav--over .owl-nav button.owl-prev:active,
.owl-carousel.carousel__nav--over .owl-nav button.owl-prev:hover {
  background: transparent;
  color: #fff;
  opacity: 1;
}

.owl-carousel.carousel__nav--over .owl-nav button.owl-prev {
  left: 0;
}

.owl-carousel.carousel__nav--over .owl-nav button.owl-next {
  right: 0;
}

.owl-carousel.carousel__nav--over .owl-nav [class*=owl-] span {
  padding-top: 50px;
}

.carousel__dotbox--over .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

.owl-theme .owl-dots {
  margin: 20px 0 0 0;
}

@media (min-width: 1024px) {
  .owl-theme .owl-dots {
    margin: 30px 0 0 0;
  }
}

.owl-theme .owl-dots .owl-dot span {
  background: #ddd;
  opacity: 1;
  width: 16px;
  height: 10px;
  border-radius: 20px;
  margin: 5px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #00B09D;
  opacity: 1;
}

.owl-theme.carousel__dotbox--dark .owl-dots .owl-dot span {
  background: #000;
}

.owl-theme.carousel__dotbox--dark .owl-dots .owl-dot.active span,
.owl-theme.carousel__dotbox--dark .owl-dots .owl-dot:hover span {
  background: #000;
}

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: "Lato", "-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: 44px;
  border: 1px solid #ddd;
  background: #fff;
}

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: .65;
  background-color: #eee;
  border-color: #ccc;
}

.form__field--error .form__control {
  border-color: #E20000;
}

.form__control-other {
  display: inline-block;
  width: auto;
}

.form__controls {
  margin-bottom: 18px;
}

.form__controls:focus {
  border-color: #ddd;
  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: 3px;
}

@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: #E20000;
  margin-right: 4px;
}

.form__label--hide {
  display: none;
}

.form__optgroup {
  background: #F8F8F8;
}

.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: #ddd;
  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: #E20000;
  display: block;
}

.form__field--error .form__feedback > a {
  color: inherit;
}

.form__field--success .form__feedback {
  color: #00B09D;
  display: block;
}

.form__keep + .form__feedback {
  margin-top: -8px;
}

.form__controls + .form__feedback {
  margin-top: -10px;
}

.form__feedback i {
  font-size: 20px;
  margin-top: -4px;
}

.form__field--success .form__feedback-icon {
  color: #00B09D;
}

.form__field--error .form__feedback-icon {
  color: #E20000;
}

.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 .35s;
  -o-transition: max-height .35s;
  transition: max-height .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 #ddd;
  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%);
  -ms-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: #E20000;
}

.form__field--success .input-verify-icon {
  color: #00B09D;
  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: 30px;
  }
}

.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--2 .list-option__item-other {
  width: calc(100% - 10px);
}

@media (min-width: 768px) {
  .list-option--2 .list-option__item-other {
    width: auto;
  }
}

.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%);
  -ms-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: 20px;
  height: 20px;
  content: '';
  border: 1px solid #ddd;
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 0px;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

.radiobox__label::after,
.checkbox__label::after {
  content: '';
  position: absolute;
  display: none;
}

.radiobox__label-other,
.checkbox__label-other {
  display: inline-block;
  margin-right: 5px;
}

.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: #fff;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  top: 19px;
  left: 7px;
}

.radiobox:checked[disabled] + .radiobox__label::after {
  background: #ccc;
}

.checkbox__label::before {
  border-radius: 3px;
}

.checkbox__label::after {
  content: "\e912";
  top: 15px;
  left: 2px;
  color: #fff;
  font-family: 'icomoon';
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}

.checkbox:checked[disabled] + .checkbox__label::after {
  border-color: #ccc;
}

.radiobox:checked + .radiobox__label::before,
.checkbox:checked + .checkbox__label::before {
  background: #00B09D;
}

.list-report {
  padding: 0;
  list-style: none;
}

.list-report__item {
  margin-bottom: 5px;
}

.list-report__item:last-child {
  margin-bottom: 0;
}

.list-report__title, .list-report__data {
  display: block;
}

@media (min-width: 768px) {
  .list-report__title, .list-report__data {
    display: inline;
  }
}

.list-report__title {
  float: left;
  text-align: right;
}

@media (min-width: 768px) {
  .list-report__title {
    float: none;
    width: auto;
    text-align: left;
  }
}

.list-report__item--all .list-report__title {
  float: none;
  width: 100%;
  text-align: left;
}

.list-report__data {
  padding-left: 5.5em;
  word-break: break-all;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .list-report__data {
    padding-left: 0;
  }
}

.list-report__item--all .list-report__data {
  padding-left: 0;
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.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% - (5px * 2));
  }
}

@media (min-width: 600px) {
  .grid-sm-3 .grid__item {
    width: calc(33.333% - (5px * 2));
  }
}

@media (min-width: 600px) {
  .grid-sm-4 .grid__item {
    width: calc(25% - (5px * 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-1 .grid__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

@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% - (20px * 2));
  }
}

@media (min-width: 1440px) {
  .grid-xl-3 .grid__item {
    width: calc(33.333% - (20px * 2));
  }
}

@media (min-width: 1440px) {
  .grid-xl-4 .grid__item {
    width: calc(25% - (20px * 2));
  }
}

@media (min-width: 1440px) {
  .grid-xl-5 .grid__item {
    width: calc(20% - (20px * 2));
  }
}

@media (min-width: 1440px) {
  .grid-xl-6 .grid__item {
    width: calc(16.667% - (20px * 2));
  }
}

.grid-xs-1 {
  margin: -5px 0;
}

.grid-xs-1 .grid__item {
  margin: 5px;
}

.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: -5px;
  }
}

@media (min-width: 600px) {
  .grid-sm-2 .grid__item, .grid-sm-3 .grid__item, .grid-sm-4 .grid__item {
    margin: 5px;
  }
}

@media (min-width: 768px) {
  .grid-md-1 {
    margin: -10px 0;
  }
}

@media (min-width: 768px) {
  .grid-md-1 .grid__item {
    margin: 10px;
  }
}

@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: 1024px) {
  .grid-lg-1--no-gutter {
    margin: -15px;
  }
}

@media (min-width: 1440px) {
  .grid-xl-2, .grid-xl-3, .grid-xl-4, .grid-xl-5, .grid-xl-6 {
    margin: 0 -20px;
  }
}

@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: 20px;
  }
}

@media (max-width: 767px) {
  .grid-xs--scroll {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0 6px;
    margin: -6px -12px -6px -6px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .grid-xs--scroll::after {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 6px;
    flex: 0 0 6px;
    content: '';
  }
  .grid-xs--scroll .grid__item {
    margin: 6px;
    white-space: normal;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .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;
    padding: 0 7px;
    margin: -7px -14px -7px -7px;
    overflow-x: auto;
    white-space: nowrap;
  }
  .grid-md--scroll::after {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 7px;
    flex: 0 0 7px;
    content: '';
  }
  .grid-md--scroll .grid__item {
    margin: 7px;
    white-space: normal;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .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 {
    padding: 0;
    margin: 0 -9px 9px;
    overflow-x: auto;
    white-space: nowrap;
  }
  .grid-lg--scroll .grid__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-lg--scroll::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .grid-lg--scroll::-webkit-scrollbar-track {
    margin: 80px 0 5px 0;
    border-radius: 10px;
  }
  .grid-lg--scroll::-webkit-scrollbar-thumb {
    background: #dbdbdb;
    border-radius: 4px;
  }
}

.articlelist {
  padding: 0;
  margin-bottom: 20px;
}

.articlelist__item {
  position: relative;
  overflow: hidden;
}

.articlelist__item::after {
  content: " ";
  display: block;
  clear: both;
  line-height: 0;
  height: 0;
  visibility: hidden;
}

.articlelist__imgbox {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.articlelist__imgbox::after {
  padding-top: 100%;
  content: "";
  display: block;
}

@media (min-width: 1280px) {
  .articlelist__imgbox::after {
    padding-top: 56.66667%;
  }
}

.articlelist__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.articlelist__btn-play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #34383C;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .articlelist__btn-play {
    width: 70px;
    height: 70px;
  }
}

.articlelist__play-icon {
  font-size: 16px;
}

@media (min-width: 1024px) {
  .articlelist__play-icon {
    font-size: 32px;
  }
}

.articlelist__img-link {
  display: block;
}

.articlelist__imgbox:active .articlelist__img-link::before {
  opacity: 0.06;
}

.articlelist__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.articlelist__img::before {
  content: '';
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.articlelist .img--horizontal {
  height: 100%;
  width: initial;
  max-width: initial;
}

@media (min-width: 1280px) {
  .articlelist .img--horizontal {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.articlelist .img--straight {
  width: 100%;
}

.articlelist__tagbox {
  font-size: 0.75em;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .articlelist__tagbox {
    font-size: 0.875em;
  }
}

.articlelist__title {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-height: 2.6em;
  line-height: 1.3;
  font-size: 18px;
  word-break: break-word;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .articlelist__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.articlelist__cata {
  font-size: 14px;
  margin: 0 0 5px;
  color: #aaa;
}

.articlelist__cata-value {
  color: #aaa;
}

.articlelist__title-link {
  display: inline-block;
  text-decoration: none;
  letter-spacing: .05em;
  -webkit-transition: color .15s;
  -o-transition: color .15s;
  transition: color .15s;
  color: #333;
}

.articlelist__desc {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-height: 5.1em;
  line-height: 1.7;
  line-height: 1.7;
  margin-bottom: 1em;
}

@media (min-width: 1024px) {
  .articlelist__desc {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-height: 5.1em;
    line-height: 1.7;
    font-size: 16px;
  }
}

.articlelist__databox {
  margin-bottom: 10px;
}

.articlelist__databox-item {
  margin: 0 0 5px;
}

.articlelist__data {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  color: #aaa;
}

.articlelist__data-dt {
  margin: 0 5px 0 0;
}

.articlelist__data-source {
  display: none;
}

.articlelist__data-dt-icon {
  font-size: 22px;
}

.articlelist__date {
  font-weight: 300;
}

.articlelist__date::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin: -1.5px .65em 0;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.articlelist__social {
  float: right;
  text-align: right;
  height: 20px;
  display: none;
}

.articlelist__social iframe html {
  float: right;
}

.articlelist__btnbox {
  display: none;
}

.articlelist__btn {
  width: 100%;
}

@media (min-width: 1024px) {
  .articlelist--outline .articlelist__item {
    border: 1px solid #e1e1e1;
  }
}

.articlelist--video .articlelist__btn-play {
  display: block;
}

@media (min-width: 1024px) {
  .articlelist--simple .articlelist__tagbox {
    display: none;
  }
}

@media (min-width: 1024px) {
  .articlelist--h-shadow .articlelist__item:hover {
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1024px) {
  .articlelist--side-simple .articlelist__infobox {
    display: none;
  }
}

.articlelist--mode-simple .articlelist__data-dt, .articlelist--mode-simple .articlelist__data-author, .articlelist--mode-simple .articlelist__data-source, .articlelist--mode-simple .articlelist__social-facebook, .articlelist--mode-simple .articlelist__desc {
  display: none;
}

.articlelist--mode-simple .articlelist__data-view .articlelist__data-dt {
  display: block;
}

.articlelist--mode-simple .articlelist__imgbox {
  margin-bottom: 0;
}

.articlelist--mode-simple .articlelist__title {
  font-size: 1em;
  margin-bottom: .5em;
}

@media (min-width: 1024px) {
  .articlelist--mode-simple .articlelist__title {
    font-size: 20px;
  }
}

.articlelist--mode-simple .articlelist__databox {
  padding: 0;
  border: none;
  margin-bottom: 0;
  color: #aaa;
}

@media (min-width: 1024px) {
  .articlelist--mode-simple .articlelist__databox {
    font-size: 0.88889em;
  }
}

.articlelist--mode-simple .articlelist__tagbox {
  font-size: 0.75em;
}

.articlelist--card .articlelist__data-dt, .articlelist--card .articlelist__desc {
  display: none;
}

.articlelist--card .articlelist__data-view .articlelist__data-dt {
  display: block;
}

.articlelist--card .articlelist__imgbox {
  margin-bottom: 0;
}

.articlelist--card .articlelist__infobox {
  background: #988976;
  color: #fff;
  border-bottom: 5px solid #111;
  padding: 1em;
}

@media (min-width: 1024px) {
  .articlelist--card .articlelist__infobox {
    -webkit-transition: background .45s;
    -o-transition: background .45s;
    transition: background .45s;
    background: rgba(152, 137, 118, 0.95);
    height: 15em;
  }
}

@media (min-width: 1440px) {
  .articlelist--card .articlelist__infobox {
    padding-left: 1.66667em;
    padding-right: 1.66667em;
  }
}

.articlelist--card .articlelist__databox {
  padding: 0;
  border: none;
  color: #00B09D;
}

@media (min-width: 1024px) {
  .articlelist--card .articlelist__databox {
    font-size: 0.88889em;
  }
}

.articlelist--card .articlelist__title {
  font-size: 1.25em;
}

@media (min-width: 1024px) {
  .articlelist--card .articlelist__title {
    font-size: 1.33333em;
  }
}

@media (min-width: 1024px) {
  .articlelist--card .articlelist__desc {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-height: 6em;
    line-height: 1.5;
    height: 6em;
  }
}

@media (min-width: 1024px) {
  .articlelist--card .articlelist__btnbox {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .25s .05s, -webkit-box-shadow .45s;
    transition: -webkit-transform .25s .05s, -webkit-box-shadow .45s;
    -o-transition: transform .25s .05s, box-shadow .45s;
    transition: transform .25s .05s, box-shadow .45s;
    transition: transform .25s .05s, box-shadow .45s, -webkit-transform .25s .05s, -webkit-box-shadow .45s;
    -webkit-box-shadow: 0 -1em 1em #988976;
    box-shadow: 0 -1em 1em #988976;
  }
}

@media (min-width: 1024px) {
  .articlelist--card .articlelist__item:hover .articlelist__btnbox {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    -webkit-box-shadow: 0 -1em 0.5em #111;
    box-shadow: 0 -1em 0.5em #111;
  }
}

.articlelist--card .articlelist__item:hover .articlelist__infobox {
  background: #111;
}

@media (max-width: 1023px) {
  .articlelist--card-horizontal-xs .articlelist__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .articlelist--card-horizontal-xs .articlelist__imgbox {
    width: 80px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-bottom: 0;
  }
  .articlelist--card-horizontal-xs .articlelist__imgbox::after {
    padding-top: 100%;
  }
}

@media (max-width: 1023px) and (min-width: 1024px) {
  .articlelist--card-horizontal-xs .articlelist__imgbox::after {
    padding-top: 75%;
  }
}

@media (max-width: 1023px) {
  .articlelist--card-horizontal-xs .articlelist__infobox {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border: none;
    padding: 10px 15px 0;
    border-right: 5px solid #655C4C;
  }
  .articlelist--card-horizontal-xs .articlelist__databox {
    margin-bottom: 5px;
  }
  .articlelist--card-horizontal-xs .articlelist__data {
    padding: 0;
  }
  .articlelist--card-horizontal-xs .articlelist__favorite {
    display: none;
  }
  .articlelist--card-horizontal-xs .articlelist__title {
    font-size: 1em;
  }
}

@media (min-width: 1024px) {
  .articlelist--cover-lg .articlelist__imgbox {
    margin-bottom: 0;
  }
  .articlelist--cover-lg .articlelist__infobox {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: background .55s, max-height .3s;
    -o-transition: background .55s, max-height .3s;
    transition: background .55s, max-height .3s;
    height: 100%;
    max-height: 7.83333em;
  }
  .articlelist--cover-lg .articlelist__desc {
    opacity: 0;
    -webkit-transition: opacity .15s;
    -o-transition: opacity .15s;
    transition: opacity .15s;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-height: 1.4em;
    line-height: 1.4;
  }
}

@media (min-width: 1024px) and (min-width: 1440px) {
  .articlelist--cover-lg .articlelist__desc {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-height: 2.8em;
    line-height: 1.4;
  }
}

@media (min-width: 1024px) {
  .articlelist--cover-lg .articlelist__item:hover .articlelist__infobox {
    background: rgba(17, 17, 17, 0.9);
    border-bottom: none;
    max-height: 17em;
  }
  .articlelist--cover-lg .articlelist__item:hover .articlelist__databox {
    margin-bottom: 2em;
  }
  .articlelist--cover-lg .articlelist__item:hover .articlelist__title {
    margin-bottom: .5em;
  }
  .articlelist--cover-lg .articlelist__item:hover .articlelist__desc {
    opacity: 1;
  }
}

@media (min-width: 1280px) {
  .articlelist--horizontal .img--horizontal {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

.articlelist--horizontal .articlelist__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.articlelist--horizontal .articlelist__item:first-child {
  padding-top: 0;
}

.articlelist--horizontal .articlelist__imgbox {
  margin-bottom: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 113px;
  flex: 0 0 113px;
}

@media (min-width: 768px) {
  .articlelist--horizontal .articlelist__imgbox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
  }
}

@media (min-width: 1024px) {
  .articlelist--horizontal .articlelist__imgbox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 290px;
    flex: 0 0 290px;
  }
}

@media (min-width: 1280px) {
  .articlelist--horizontal .articlelist__imgbox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 450px;
    flex: 0 0 450px;
  }
}

.articlelist--horizontal .articlelist__imgbox::after {
  padding-top: 100%;
  content: "";
  display: block;
}

@media (min-width: 1280px) {
  .articlelist--horizontal .articlelist__imgbox::after {
    padding-top: 56.66667%;
  }
}

.articlelist--horizontal .articlelist__infobox {
  padding: 0 0 0 18px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .articlelist--horizontal .articlelist__infobox {
    padding-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .articlelist--horizontal .articlelist__title {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .articlelist--horizontal .articlelist__databox {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    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;
  }
}

@media (min-width: 768px) {
  .articlelist--horizontal .articlelist__tagbox {
    text-align: right;
  }
}

.articlelist--horizontal .articlelist__desc {
  display: none;
}

@media (min-width: 768px) {
  .articlelist--horizontal .articlelist__desc {
    display: block;
  }
}

@media (min-width: 1024px) {
  .articlelist--normal .img--horizontal {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 1023px) {
  .articlelist--normal .articlelist__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
}

@media (max-width: 1023px) {
  .articlelist--normal .articlelist__item:first-child {
    padding-top: 0;
  }
}

@media (min-width: 1024px) {
  .articlelist--normal .articlelist__imgbox {
    margin: 0 0 25px;
  }
}

@media (max-width: 1023px) {
  .articlelist--normal .articlelist__imgbox {
    margin-bottom: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }
}

@media (max-width: 1023px) {
  .articlelist--normal .articlelist__imgbox::after {
    padding-top: 100%;
    content: "";
    display: block;
  }
}

@media (min-width: 1024px) {
  .articlelist--normal .articlelist__imgbox::after {
    padding-top: 56.66667%;
  }
}

@media (min-width: 1024px) {
  .articlelist--normal .articlelist__infobox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 1023px) {
  .articlelist--normal .articlelist__infobox {
    padding: 0 0 0 18px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.articlelist--normal .articlelist__databox-item {
  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;
}

@media (min-width: 1024px) {
  .articlelist--normal .articlelist__databox-item {
    display: block;
  }
}

@media (min-width: 1440px) {
  .articlelist--normal .articlelist__databox-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.articlelist--normal .articlelist__cata {
  margin: 0;
}

@media (min-width: 1024px) {
  .articlelist--normal .articlelist__databox {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

@media (min-width: 1024px) {
  .articlelist--normal .articlelist__data {
    margin-bottom: 5px;
  }
}

@media (min-width: 1920px) {
  .articlelist--normal .articlelist__data {
    margin-bottom: 0;
  }
}

.articlelist--normal .articlelist__tagbox {
  display: none;
}

@media (max-width: 1023px) {
  .articlelist--normal .articlelist__desc {
    display: none;
  }
}

@media (min-width: 1024px) {
  .articlelist--normal .articlelist__desc {
    display: block;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-height: 4.2em;
    line-height: 1.4;
    margin-bottom: 0;
  }
}

.articlelist--headine {
  margin: 0 0 30px;
}

.articlelist--headine .articlelist__item {
  padding: 15px;
  background: #eee;
}

@media (min-width: 768px) {
  .articlelist--headine .articlelist__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .articlelist--headine .articlelist__item {
    padding: 30px;
  }
}

.articlelist--headine .articlelist__imgbox {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .articlelist--headine .articlelist__imgbox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .articlelist--headine .articlelist__imgbox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 310px;
    flex: 0 0 310px;
  }
}

@media (min-width: 1280px) {
  .articlelist--headine .articlelist__imgbox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 440px;
    flex: 0 0 440px;
  }
}

.articlelist--headine .articlelist__imgbox::after {
  padding-top: 78.02548%;
  content: "";
  display: block;
}

@media (min-width: 768px) {
  .articlelist--headine .articlelist__infobox {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.articlelist--headine .articlelist__cata {
  display: none;
}

@media (min-width: 768px) {
  .articlelist--headine .articlelist__cata {
    display: block;
  }
}

.articlelist--headine .articlelist__databox {
  display: none;
}

@media (min-width: 768px) {
  .articlelist--headine .articlelist__databox {
    display: block;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    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;
  }
}

@media (min-width: 768px) {
  .articlelist--headine .articlelist__tagbox {
    text-align: right;
  }
}

.articlelist--headine .articlelist__title {
  margin: 0;
}

@media (min-width: 768px) {
  .articlelist--headine .articlelist__title {
    margin-bottom: 30px;
  }
}

.articlelist--headine .articlelist__desc {
  display: none;
}

@media (min-width: 768px) {
  .articlelist--headine .articlelist__desc {
    display: block;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-height: 6.8em;
    line-height: 1.7;
  }
}

@media (min-width: 1024px) {
  .articlelist--headine .articlelist__desc {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-height: 5.1em;
    line-height: 1.7;
  }
}

@media (min-width: 1280px) {
  .articlelist--headine .articlelist__desc {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-height: 11.9em;
    line-height: 1.7;
  }
}

@media (min-width: 1280px) {
  .articlelist--side-horizontal .img--horizontal {
    height: 100%;
    width: initial;
    max-width: initial;
  }
}

.articlelist--side-horizontal .articlelist {
  margin: -15px 0;
}

.articlelist--side-horizontal .articlelist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.articlelist--side-horizontal .articlelist__item:first-child {
  padding-top: 0;
}

.articlelist--side-horizontal .articlelist__imgbox {
  margin-bottom: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83px;
  flex: 0 0 83px;
}

@media (min-width: 1024px) {
  .articlelist--side-horizontal .articlelist__imgbox::after {
    padding-top: 100%;
  }
}

.articlelist--side-horizontal .articlelist__infobox {
  padding: 0 0 0 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.articlelist--side-horizontal .articlelist__title {
  font-size: 18px;
}

.articlelist--side-horizontal .articlelist__databox {
  margin: 0;
}

.articlelist--side-horizontal .articlelist__tagbox, .articlelist--side-horizontal .articlelist__category, .articlelist--side-horizontal .articlelist__cata {
  display: none;
}

.articlelist--side-horizontal .articlelist__date::before {
  content: none;
}

.articlelist--list-horizontal .articlelist__item {
  padding: 9px 0;
  border-bottom: 1px solid #ddd;
}

.articlelist--list-horizontal .articlelist__item:first-child {
  padding-top: 0;
}

.articlelist--list-horizontal .articlelist__imgbox {
  display: none;
}

.articlelist--list-horizontal .articlelist__imgbox::after {
  display: none;
}

.articlelist--list-horizontal .articlelist__infobox {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.articlelist--list-horizontal .articlelist__title {
  font-size: 18px;
  font-weight: normal;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-height: 1.4em;
  line-height: 1.4;
  margin-bottom: 0;
}

.articlelist--list-horizontal .articlelist__item--current .articlelist__title-link {
  color: #00B09D;
}

.articlelist--list-horizontal .articlelist__cata {
  display: none;
}

.articlelist--list-horizontal .articlelist__databox {
  white-space: nowrap;
  margin: 0;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 97px;
  flex: 0 1 97px;
}

.articlelist--list-horizontal .articlelist__data-dt {
  display: none;
}

.articlelist--list-horizontal .articlelist__databox-item {
  margin: 0;
}

.articlelist--list-horizontal .articlelist__data {
  border-radius: 50px;
  font-size: 14px;
  background: #aaa;
  color: #fff;
  margin: 0 10px 0 0;
  padding: 5px 10px;
}

.articlelist--list-horizontal .articlelist__tagbox, .articlelist--list-horizontal .articlelist__category {
  display: none;
}

.articlelist--list-horizontal .articlelist__date::before {
  content: none;
}

.articlelist--media .img--horizontal {
  width: 100%;
  height: initial;
}

@media (min-width: 768px) {
  .articlelist--media .articlelist__imgbox {
    margin: 0 0 15px;
  }
}

.articlelist--media .articlelist__imgbox::after {
  padding-top: 56.66667%;
  content: "";
  display: block;
}

@media (min-width: 768px) {
  .articlelist--media .articlelist__databox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.articlelist--media .articlelist__tagbox {
  display: none;
}

@media (min-width: 768px) {
  .articlelist--media .articlelist__tagbox {
    display: block;
    text-align: right;
  }
}

.articlelist--media .articlelist__cata {
  display: none;
}

.articlelist--favorite .checkbox:checked + .articlelist__checkbox-label::before {
  background: #00B09D;
  border-color: #00B09D;
}

.articlelist--favorite .articlelist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__item {
    border: none;
    margin-bottom: 0;
    padding: 20px 0;
  }
}

.articlelist--favorite .articlelist__item:last-child {
  border: none;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__item:hover {
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  }
}

.articlelist--favorite .articlelist__imgbox {
  width: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__imgbox {
    width: 220px;
  }
}

.articlelist--favorite .articlelist__imgbox::after {
  padding-top: 100%;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__imgbox::after {
    padding-top: 75%;
  }
}

.articlelist--favorite .articlelist__infobox {
  padding-left: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.articlelist--favorite .articlelist__favorite {
  display: none;
}

.articlelist--favorite .articlelist__title {
  height: 2.4em;
  font-size: 1em;
}

@media (min-width: 768px) {
  .articlelist--favorite .articlelist__title {
    height: auto;
  }
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__title {
    font-size: 1.33333em;
  }
}

.articlelist--favorite .articlelist__desc {
  display: none;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__desc {
    display: block;
    font-size: 0.88889em;
    margin-bottom: 0.75em;
  }
}

.articlelist--favorite .articlelist__tagbox {
  font-size: 0.75em;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__tagbox {
    font-size: 0.88889em;
  }
}

.articlelist--favorite .articlelist__databox {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-width: 0;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__databox {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-width: 1px;
    margin-bottom: 10px;
    font-size: 0.77778em;
  }
}

.articlelist--favorite .articlelist__data {
  margin-right: 1em;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__data {
    margin-right: 0;
  }
}

.articlelist--favorite .articlelist__data-author {
  display: none;
}

@media (min-width: 1440px) {
  .articlelist--favorite .articlelist__data-author {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.articlelist--favorite .articlelist__functionbox {
  position: relative;
}

@media (min-width: 768px) {
  .articlelist--favorite .articlelist__functionbox {
    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;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50px;
  }
}

@media (min-width: 1440px) {
  .articlelist--favorite .articlelist__functionbox {
    width: 80px;
  }
}

.articlelist--favorite .articlelist__functionbox form {
  position: static;
}

.articlelist--favorite .articlelist__functionbox-check {
  display: none;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__functionbox-check {
    display: block;
  }
}

.articlelist--favorite .articlelist__functionbox-del {
  position: absolute;
  top: 2.4em;
  right: 0;
}

@media (min-width: 768px) {
  .articlelist--favorite .articlelist__functionbox-del {
    position: relative;
    top: 0;
  }
}

@media (min-width: 768px) {
  .articlelist--favorite .articlelist__function {
    width: 1.5625em;
    height: 1.5625em;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__function {
    -webkit-transition: background .15s;
    -o-transition: background .15s;
    transition: background .15s;
    width: 2.55556em;
    height: 2.55556em;
  }
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__function:hover {
    background: #F8F8F8;
  }
}

.articlelist--favorite .articlelist__checkbox-label {
  height: 100%;
}

.articlelist--favorite .articlelist__checkbox-label::after, .articlelist--favorite .articlelist__checkbox-label::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.articlelist--favorite .articlelist__checkbox-label::before {
  border-radius: 2px;
  border-color: #ddd;
}

.articlelist--favorite .articlelist__checkbox-label::after {
  color: #fff;
}

.articlelist--favorite .articlelist__btn-delete {
  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: 0;
  background: transparent;
  color: #00B09D;
  -webkit-transition: background .15s;
  -o-transition: background .15s;
  transition: background .15s;
}

@media (min-width: 768px) {
  .articlelist--favorite .articlelist__btn-delete {
    color: #ddd;
  }
}

.articlelist--favorite .articlelist__btn-delete i {
  font-size: 1.125em;
}

@media (min-width: 1024px) {
  .articlelist--favorite .articlelist__btn-delete i {
    font-size: 1.33333em;
  }
}

.articlelist--favorite .articlelist__btn-delete:focus, .articlelist--favorite .articlelist__btn-delete:active {
  background: #00B09D;
  color: #fff;
}

.simplelist {
  padding: 0;
  margin-bottom: 20px;
}

.simplelist__head {
  display: none;
}

@media (min-width: 1024px) {
  .simplelist__head {
    display: block;
  }
}

.simplelist__item {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .simplelist__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .simplelist__head .simplelist__col {
    color: #333;
  }
}

.simplelist__col-date, .simplelist__col-cata {
  font-size: 14px;
}

@media (min-width: 1024px) {
  .simplelist__col-date, .simplelist__col-cata {
    font-size: 16px;
  }
}

.simplelist__col-date {
  color: #aaa;
  margin: 0 0 10px;
}

@media (min-width: 1024px) {
  .simplelist__col-date {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 15.19%;
    flex-basis: 15.19%;
    margin: 0;
  }
}

.simplelist__col-cata {
  margin: 0 0 10px;
}

@media (min-width: 1024px) {
  .simplelist__col-cata {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 15.19%;
    flex-basis: 15.19%;
    margin: 0;
    color: #aaa;
  }
}

.simplelist__col-cata .simplelist__value {
  color: #333;
}

.simplelist__col-info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 1024px) {
  .simplelist__field {
    display: none;
  }
}

.simplelist__simpletag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #aaa;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .simplelist__simpletag {
    font-size: 16px;
  }
}

.simplelist__title {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-height: 2.6em;
  line-height: 1.3;
  font-size: 18px;
  word-break: break-word;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .simplelist__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.simplelist__title-link {
  display: inline-block;
  text-decoration: none;
  letter-spacing: .05em;
  -webkit-transition: color .15s;
  -o-transition: color .15s;
  transition: color .15s;
  color: #333;
}

.simplelist__desc {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-height: 5.1em;
  line-height: 1.7;
  line-height: 1.7;
  margin-bottom: 1em;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .simplelist__desc {
    font-size: 16px;
  }
}

.simpletag__link {
  color: #aaa;
}

.result__data {
  font-weight: normal;
}

.result__data-title {
  color: #033e7c;
}

.result__data-title::before {
  content: "「";
  color: #333;
}

.result__data-title + .result__data-title::before {
  content: "-「";
}

.result__data-title::after {
  content: "」";
  color: #333;
}

.result__data-num {
  color: #033e7c;
  font-weight: 700;
}

.result__no-box {
  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;
  height: 340px;
  width: 100%;
  padding: 10px;
  background: #fff;
  margin-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .result__no-box {
    height: 400px;
  }
}

.result__no-title {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 1.67;
}

@media (min-width: 1024px) {
  .result__no-title {
    font-size: 20px;
  }
}

.result__no-desc {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.result__no-btnbox {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .result__no-btnbox {
    margin-top: 30px;
  }
}

.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 .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .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: #F6BC0C;
  -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: #F6BC0C;
    -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;
}

.editor {
  word-wrap: break-word;
}

.editor html,
.editor body,
.editor fieldset,
.editor form,
.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6,
.editor ol,
.editor ul {
  display: block;
}

.editor li {
  display: list-item;
}

.editor body {
  margin: 8px;
}

.editor h1 {
  font-size: 2em;
  margin: .67em 0;
}

.editor h2 {
  font-size: 1.5em;
  margin: .75em 0;
}

.editor h3 {
  font-size: 1.17em;
  margin: .83em 0;
}

.editor h4,
.editor ul,
.editor fieldset,
.editor form,
.editor ol {
  margin: 1.12em 0;
}

.editor h5 {
  font-size: .83em;
  margin: 1.5em 0;
}

.editor h6 {
  font-size: .75em;
  margin: 1.67em 0;
}

.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  font-weight: normal;
}

.editor strong {
  font-weight: bold;
}

.editor img {
  width: auto;
}

.editor i {
  font-style: italic;
}

.editor button,
.editor textarea,
.editor input,
.editor select {
  display: inline-block;
}

.editor ol,
.editor ul {
  padding-left: 1.66667em;
}

.editor ol ol, .editor ol ul,
.editor ul ol,
.editor ul ul {
  margin-top: 0;
  margin-bottom: 0;
}

.editor ol {
  list-style-type: decimal;
}

.editor ol li {
  list-style-type: decimal;
}

.editor ul {
  padding-left: 0;
}

.editor ul > li {
  padding-left: 1.66667em;
  position: relative;
}

.editor ul > li::before {
  content: '◆';
  position: absolute;
  left: .5em;
  top: 0;
}

.editor :link,
.editor :visited {
  text-decoration: underline;
}

.editor :focus {
  outline: thin dotted invert;
}

.editor {
  font-size: 1em;
  line-height: 1.75;
}

.editor ul,
.editor ol {
  margin: 0 0 1.25em;
}

.editor ul ul,
.editor ul ol,
.editor ol ul,
.editor ol ol {
  margin: 0 0 1.25em;
}

.editor__title1, .editor__title2, .editor__title3, .editor__title4, .editor__title5, .editor__title6 {
  font-weight: normal;
  margin-bottom: .5em;
  line-height: 1.3;
}

.editor__title1 {
  font-size: 1.5em;
  margin-bottom: .3em;
}

.editor__title2 {
  font-size: 1.375em;
}

.editor__title3 {
  font-size: 1.375em;
  margin: 0 0 10px;
}

.editor__title4 {
  font-size: 1.25em;
}

.editor__title5 {
  font-size: 1.125em;
}

.editor__title6 {
  font-size: 1em;
}

.editor p {
  line-height: 1.75;
  margin-bottom: 1.875em;
}

.editor .imgbox, .editor__movie-box {
  width: auto;
  max-width: 100%;
  margin-bottom: 1.875em;
}

.editor__foreword {
  color: #777;
  line-height: 1.5;
  font-size: 1.125em;
  border-left: 5px solid #00B09D;
  margin-bottom: 1.875em;
  padding-left: 10px;
}

.editor__img-source {
  margin-top: -10px;
  padding-bottom: 1.875em;
  color: #999;
  font-size: 0.875em;
}

.editor img {
  margin-bottom: 20px;
}

.editor table {
  white-space: normal;
}

.editor td,
.editor th {
  border-width: 1px;
  border-style: solid;
  padding: 5px;
}

.scrolltable {
  width: 100%;
  position: relative;
}

.scrolltable__inner {
  overflow-x: auto;
  overflow-y: hidden;
}

.box {
  margin-bottom: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .box {
    margin-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .box {
    margin-bottom: 50px;
  }
}

.box--bg {
  background: #fff;
  padding: 10px;
}

.box__heading {
  font-size: 22px;
  font-weight: normal;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .box__heading {
    text-align: left;
  }
}

.box__heading--center {
  text-align: center;
}

.box__heading-tips {
  color: #ddd;
  display: block;
  margin: 6px 0 2px;
}

.box__body {
  margin-top: -1px;
  overflow: hidden;
}

.box__body--border {
  border: 1px solid #ddd;
  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 #ddd;
  padding: 10px;
}

.box-tab {
  padding-top: 90px;
}

.box-separate {
  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;
}

.step {
  margin: 20px 0 20px;
}

@media (min-width: 768px) {
  .step {
    margin-bottom: 30px;
  }
}

.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: 450px;
  margin: 0 auto;
}

.list-step::before {
  content: '';
  height: 2px;
  width: 67%;
  background: #ccc;
  position: absolute;
  left: 50%;
  top: 1.1875em;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.list-step__item {
  width: 33%;
  text-align: center;
  color: #ccc;
}

.list-step__item--current {
  color: #00B09D;
}

.list-step__item-num {
  width: 2.375em;
  height: 2.375em;
  line-height: 1;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-weight: 700;
}

.list-step__item--current .list-step__item-num {
  background: #00B09D;
  color: #fff;
  border-color: #00B09D;
}

.list-step__item-title {
  display: block;
  font-size: 14px;
  margin-top: .75em;
}

.diy-banner {
  overflow: hidden;
  position: relative;
  margin: 0 0 1.875em;
}

.diy-banner__imgbox {
  overflow: hidden;
  position: relative;
}

.diy-banner__imgbox::after {
  content: "";
  display: block;
  pointer-events: none;
}

.diy-banner--small .diy-banner__imgbox::after {
  padding-top: 99.12536%;
}

@media (min-width: 1024px) {
  .diy-banner--small .diy-banner__imgbox::after {
    padding-top: 30%;
  }
}

.diy-banner--medium .diy-banner__imgbox::after {
  padding-top: 116.61808%;
}

@media (min-width: 1024px) {
  .diy-banner--medium .diy-banner__imgbox::after {
    padding-top: 46.11111%;
  }
}

.diy-banner--large .diy-banner__imgbox::after {
  padding-top: 193.58601%;
}

@media (min-width: 1024px) {
  .diy-banner--large .diy-banner__imgbox::after {
    padding-top: 63.77778%;
  }
}

.diy-banner--text .diy-banner__imgbox::after {
  display: none;
}

.diy-banner__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  max-width: none;
  margin: auto;
  z-index: 0;
}

@media (min-width: 1024px) {
  .diy-banner__img {
    width: 100%;
    height: auto;
  }
}

.diy-banner__img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 2;
  opacity: 0.2;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.diy-banner__infobox {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  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: 1.875em 8.74636%;
}

@media (min-width: 1024px) {
  .diy-banner__infobox {
    padding: 3.75em 6.66667%;
  }
}

.diy-banner--text .diy-banner__infobox {
  position: static;
  background: transparent;
  color: #333;
  padding: 0;
}

.diy-banner__title {
  font-size: 40px;
  line-height: 1.125;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.diy-banner--text .diy-banner__title {
  color: #333;
  text-align: left;
}

.diy-banner .img--horizontal {
  height: 100%;
}

@media (min-width: 1024px) {
  .diy-banner .img--horizontal {
    width: 100%;
    height: initial;
  }
}

.diy-banner .img--straight {
  width: 100%;
}

@media (min-width: 1024px) {
  .diy-banner .img--straight {
    width: 100%;
  }
}

.diy-articlelist {
  padding: 0;
}

@media (min-width: 1024px) {
  .diy-articlelist--row-two, .diy-articlelist--row-three {
    margin: 0 -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.diy-articlelist__item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .diy-articlelist--img-left .diy-articlelist__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .diy-articlelist--row-two .diy-articlelist__item {
    width: calc(50% - 40px);
    margin: 0 20px;
  }
}

@media (min-width: 1024px) {
  .diy-articlelist--row-three .diy-articlelist__item {
    width: calc(33.33333% - 40px);
    margin: 0 20px;
  }
}

.diy-articlelist__imgbox {
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}

@media (min-width: 1024px) {
  .diy-articlelist--img-left .diy-articlelist__imgbox {
    margin-right: 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 47.77778%;
    flex: 1 0 47.77778%;
  }
}

.diy-articlelist__imgbox::after {
  padding-top: 56.55977%;
  content: "";
  display: block;
}

.diy-articlelist__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: none;
  height: auto;
  margin: auto;
}

@media (min-width: 1024px) {
  .diy-articlelist--img-left .diy-articlelist__infobox {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}

.diy-articlelist__tagbox {
  font-size: 0.75em;
}

@media (min-width: 1024px) {
  .diy-articlelist__tagbox {
    font-size: 1em;
  }
}

.diy-articlelist__title {
  line-height: 1.2;
  font-size: 28px;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .diy-articlelist--img-left .diy-articlelist__title {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .diy-articlelist--row-two .diy-articlelist__title,
  .diy-articlelist--row-three .diy-articlelist__title {
    font-size: 24px;
  }
}

.diy-articlelist__desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1em;
}

.diy-heading {
  font-weight: bold;
  margin: 0 0 20px;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .diy-heading {
    margin: 0 0 30px;
  }
}

.diy-heading--1 {
  font-size: 30px;
}

@media (min-width: 1024px) {
  .diy-heading--1 {
    font-size: 50px;
  }
}

.diy-heading--2 {
  font-size: 26px;
}

@media (min-width: 1024px) {
  .diy-heading--2 {
    font-size: 45px;
  }
}

.diy-heading--3 {
  font-size: 24px;
}

@media (min-width: 1024px) {
  .diy-heading--3 {
    font-size: 40px;
  }
}

.diy-heading--4 {
  font-size: 22px;
}

@media (min-width: 1024px) {
  .diy-heading--4 {
    font-size: 35px;
  }
}

.diy-heading--5 {
  font-size: 18px;
}

@media (min-width: 1024px) {
  .diy-heading--5 {
    font-size: 30px;
  }
}

.diy-heading--6 {
  font-size: 16px;
}

@media (min-width: 1024px) {
  .diy-heading--6 {
    font-size: 26px;
  }
}

.diy-paragraph {
  line-height: 1.6;
  margin: 0 0 30px;
}

.article__diy--medium .diy-paragraph {
  font-size: 16px;
}

.article__diy--small .diy-paragraph {
  font-size: 14px;
}

.article__diy--large .diy-paragraph {
  font-size: 18px;
}

.diy-link {
  color: #00B09D;
}

.diy-btnbox {
  margin: 20px 0 30px;
}

.diy-btn {
  border: 1px solid transparent;
  display: inline-block;
  padding: 12px 50px;
  font-size: inherit;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: .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;
  -webkit-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  border-radius: 5px;
  margin: 0 10px;
}

@media (min-width: 1024px) {
  .diy-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);
    -o-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);
  }
}

.diy-btn:focus, .diy-btn:active {
  outline-offset: -2px;
  text-decoration: none;
}

.diy-btn:active {
  background-image: none;
  outline: 0;
}

@media (min-width: 1024px) {
  .diy-btn:hover {
    text-decoration: none;
  }
}

.diy-btn--default {
  color: #777;
  background: #fff;
  border-color: #ddd;
}

.diy-btn--default:focus, .diy-btn--default:active {
  color: #777;
  background: #e6e6e6;
}

@media (min-width: 1024px) {
  .diy-btn--default:hover {
    color: #777;
    background: #e6e6e6;
  }
}

.diy-btn--default[disabled], .diy-btn--default.disabled:hover, .diy-btn--default[disabled]:hover, .diy-btn--default.disabled:focus, .diy-btn--default[disabled]:focus {
  cursor: not-allowed;
  background: #ccc;
  border-color: #ccc;
  color: #fff;
}

.diy-btn--primary {
  background: #34383C;
  color: #fff;
}

.diy-btn--primary:active, .diy-btn--primary:focus, .diy-btn--primary:hover {
  background: #050505;
  color: #fff;
}

.diy-imgbox {
  margin: 0 0 30px;
}

.downloadlist__item {
  position: relative;
}

.downloadlist--normal .downloadlist__item {
  text-align: center;
  display: inline-block;
  width: 170px;
  margin: 0 0 20px;
  padding: 0 15px;
}

.downloadlist--normal .downloadlist__item:not(first-child) {
  border-right: 1px solid #ddd;
}

.downloadlist--horizontal .downloadlist__item,
.downloadlist--horizontal-sm .downloadlist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-top: 1px solid #ddd;
}

.downloadlist--horizontal .downloadlist__item:last-child,
.downloadlist--horizontal-sm .downloadlist__item:last-child {
  border-bottom: 1px solid #ddd;
}

.downloadlist--horizontal-sm .downloadlist__typebox {
  margin: 0 10px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
}

.downloadlist--normal .downloadlist__iconbox {
  margin: 0 0 20px;
}

.downloadlist--horizontal .downloadlist__iconbox {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  margin: 0 15px 0 0;
}

.downloadlist--horizontal-sm .downloadlist__iconbox {
  display: none;
}

.downloadlist__icon {
  font-size: 50px;
}

.downloadlist__item--xls .downloadlist__icon {
  color: #217A4A;
}

.downloadlist__item--ppt .downloadlist__icon {
  color: #D14424;
}

.downloadlist__item--pdf .downloadlist__icon {
  color: #CC4B4C;
}

.downloadlist__item--rar .downloadlist__icon {
  color: #5C1B78;
}

.downloadlist__item--zip .downloadlist__icon {
  color: #FEC009;
}

.downloadlist__item--docx .downloadlist__icon {
  color: #185ABD;
}

.downloadlist__type {
  border-radius: 3px;
  font-size: 12px;
  text-align: center;
  padding: 5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  width: 50px;
}

.downloadlist--normal .downloadlist__type {
  display: none;
}

.downloadlist--horizontal .downloadlist__type {
  display: none;
}

.downloadlist__item--xls .downloadlist__type {
  background: #217A4A;
}

.downloadlist__item--ppt .downloadlist__type {
  background: #D14424;
}

.downloadlist__item--pdf .downloadlist__type {
  background: #CC4B4C;
}

.downloadlist__item--rar .downloadlist__type {
  background: #5C1B78;
}

.downloadlist__item--zip .downloadlist__type {
  background: #FEC009;
}

.downloadlist__item--docx .downloadlist__type {
  background: #185ABD;
}

.downloadlist--horizontal .downloadlist__infobox {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.downloadlist__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 5px;
  color: #333;
}

.downloadlist__item:focus .downloadlist__title,
.downloadlist__item:active .downloadlist__title,
.downloadlist__item:hover .downloadlist__title {
  color: #00B09D;
}

.downloadlist__time {
  color: #aaa;
  font-size: 14px;
}

.downloadlist__link-cover {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -1000%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.diy-carousel .carousel__imgbox::after {
  padding-top: 63.77778%;
}

.diy-table {
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  margin: 0 0 30px;
}

.diy-table thead {
  background: #eee;
}

.diy-table th {
  font-weight: bold;
  color: #333;
  padding: 10px 6px;
  vertical-align: middle;
}

.diy-table td {
  padding: 10px 6px;
  vertical-align: middle;
  color: #707070;
}

.diy-table tr:not(:last-child) td {
  border-bottom: 1px solid #ddd;
}

.tab {
  margin-bottom: 20px;
}

.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;
}

.tab__content--show {
  display: block;
}

.tab__list {
  font-size: 0;
  letter-spacing: -4px;
}

@media (min-width: 1024px) {
  .tab__list {
    padding: 0;
  }
}

.tab__item {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  letter-spacing: normal;
  word-spacing: normal;
  zoom: 1;
  line-height: 1.375;
  overflow: hidden;
}

@media (min-width: 768px) {
  .tab__item {
    font-size: 16px;
    width: auto;
    margin: 0 10px;
  }
}

@media (min-width: 768px) {
  .tab__item:first-child {
    margin-left: 0;
  }
}

.tab__item--current {
  color: #988976;
}

.tab__link {
  color: #777;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 7px;
}

@media (min-width: 768px) {
  .tab__link {
    padding: 10px 15px 10px;
  }
}

.tab__link:hover,
.tab__item--current .tab__link:active,
.tab__item--current .tab__link {
  color: #988976;
}

.tab__text {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.tab__text::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 3px;
  background: #988976;
  bottom: -5px;
  left: 0;
  -webkit-transition: width .25s, opacity .2s linear;
  -o-transition: width .25s, opacity .2s linear;
  transition: width .25s, opacity .2s linear;
  opacity: 0;
}

@media (min-width: 768px) {
  .tab__text::after {
    bottom: -3px;
  }
}

.tab__link:hover .tab__text::after,
.tab__item--current .tab__text::after {
  width: 100%;
  opacity: 1;
}

.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;
  }
}

body.header-fixed {
  overflow: hidden;
}

body.scroll-fixed {
  overflow: hidden;
}

.wrap {
  position: relative;
  min-height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrap__inner {
  max-width: 1400px;
  padding: 0 10px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wrap__inner {
    padding: 0 15px;
  }
}

@media (min-width: 1440px) {
  .wrap__inner {
    padding: 0;
  }
}

.wrap__inner--no-padding {
  padding: 0;
}

@media (min-width: 1024px) {
  .wrap__inner::after {
    content: ' ';
    display: block;
    height: 0;
    clear: both;
    line-height: 0;
    visibility: hidden;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  z-index: 10;
  height: 50px;
  background: #fff;
  font-weight: bold;
  border-bottom: 2px solid #00B09D;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .header {
    position: relative;
    background-color: #F8F8F8;
    background-image: url("Assets/bg_header.svg?t=20180927v1");
    background-repeat: no-repeat;
    background-position: calc(100% - 191px) -22px;
    height: auto;
  }
}

.header::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  right: 0;
  height: 6px;
  display: none;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .header::after {
    content: none;
  }
}

.header__top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
}

@media (min-width: 1024px) {
  .header__top-bar {
    position: relative;
    height: 100px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.header__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;
  width: 48px;
  height: 48px;
  color: #34383C;
  text-decoration: none;
}

.header__btn:focus, .header__btn:active {
  background: #F8F8F8;
  color: #34383C;
}

@media (min-width: 1024px) {
  .header__btn:hover {
    background: #F8F8F8;
    color: #34383C;
  }
}

.header__btn-text {
  display: none;
}

.header__btn-icon {
  font-size: 30px;
}

@media (min-width: 1024px) {
  .header__search {
    position: absolute;
    right: 0;
    top: 110px;
    width: 328px;
    z-index: 2;
  }
}

.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .header__logo {
    margin-left: 0;
  }
}

.header__login {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: .35s;
  -o-transition: .35s;
  transition: .35s;
}

@media (min-width: 1024px) {
  .header__login {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    position: static;
  }
}

.header--nav-open .header__login {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.content {
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 1024px) {
  .content {
    background-image: url("Assets/bg_content.svg?t=20180927v1");
    background-repeat: no-repeat;
    background-position: calc(100% - 27px) calc(100% - 139px);
    background-size: 497px 300px;
    padding-bottom: 180px;
  }
}

.content::before {
  content: ' ';
  display: block;
  height: 50px;
}

@media (min-width: 1024px) {
  .content::before {
    content: none;
  }
}

.section {
  margin: 0 0 25px;
  position: relative;
}

@media (min-width: 1024px) {
  .section {
    margin-bottom: 50px;
  }
}

.section:last-child.section--gray {
  margin-bottom: 0;
}

.section--gray .section__body {
  background: #F8F8F8;
  padding: 15px;
}

.section__heading {
  margin-bottom: 40px;
  line-height: 1.36;
  font-weight: bold;
  position: relative;
  border-bottom: 1px solid #ddd;
  padding: 10px 0 10px 15px;
}

.section__heading::before {
  content: "";
  display: block;
  width: 3px;
  height: 22px;
  background: #00B09D;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section__title {
  color: #333;
  font-size: 22px;
  line-height: 1.36;
}

@media (min-width: 1024px) {
  .section__title {
    font-size: 24px;
  }
}

.section__text {
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .section__functionbox {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .section__more {
    position: absolute;
    right: 0;
    top: 14px;
  }
}

.section__more-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;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 10px;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: .05em;
  cursor: pointer;
  -webkit-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  color: #777;
}

@media (min-width: 1024px) {
  .section__more-btn {
    border: transparent;
    padding: 0;
  }
}

.section__more-icon {
  font-size: 24px;
  margin: 0 0 0 5px;
}

@media (min-width: 1024px) {
  .section--side {
    margin: 0 0 30px;
  }
}

.section--side .section__heading {
  margin: 0 0 20px;
}

@media (min-width: 1024px) {
  .l-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1024px) {
  .l-layout__main {
    position: relative;
    width: calc(100% - 250px);
    padding-right: 30px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

@media (min-width: 1440px) {
  .l-layout__main {
    width: calc(100% - 330px);
    padding-right: 50px;
  }
}

.l-layout__sidebar {
  margin: 15px 0 15px;
}

@media (min-width: 768px) {
  .l-layout__sidebar {
    margin: 0 -15px;
  }
}

@media (min-width: 1024px) {
  .l-layout__sidebar {
    display: block;
    width: 250px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: none;
    padding: 0;
    margin: 0;
  }
}

@media (min-width: 1440px) {
  .l-layout__sidebar {
    width: 330px;
  }
}

.main {
  width: 100%;
}

@media (min-width: 1024px) {
  .main {
    float: left;
    width: calc(100% - 200px - 20px);
  }
}

@media (min-width: 1440px) {
  .main {
    width: calc(100% - 340px - 20px);
  }
}

@media (min-width: 1024px) {
  .sidebar {
    display: block;
    float: right;
    width: 200px;
  }
}

@media (min-width: 1440px) {
  .sidebar {
    width: 340px;
  }
}

.footer {
  background: #34383C;
  color: #fff;
}

@media (min-width: 1024px) {
  .footer {
    height: 130px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.footer a {
  color: inherit;
}

.footer__inner {
  padding: 20px 35px;
}

@media (min-width: 768px) {
  .footer__inner {
    padding: 0 15px;
  }
}

@media (min-width: 1440px) {
  .footer__inner {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer__owner {
  border-bottom: 1px solid #777;
  margin: 0 0 15px;
}

@media (min-width: 1024px) {
  .footer__owner {
    margin: 0;
    border: none;
  }
}

.footer__copyright {
  text-align: center;
  font-size: 14px;
  padding: 0 0 20px;
  letter-spacing: 0;
}

@media (min-width: 1024px) {
  .footer__copyright {
    text-align: left;
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .footer__copyright br {
    display: none;
  }
}

.gotop {
  position: fixed;
  bottom: 5em;
  right: 10px;
  z-index: 1;
}

@media (min-width: 1024px) {
  .gotop {
    bottom: 100px;
    right: 30px;
  }
}

.gotop__btn {
  background: rgba(170, 170, 170, 0.9);
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.gotop__btn:focus, .gotop__btn:active {
  background: rgba(127, 127, 127, 0.9);
}

@media (min-width: 1024px) {
  .gotop__btn:hover {
    background: rgba(127, 127, 127, 0.9);
  }
}

@media (min-width: 1024px) {
  .gotop__btn {
    -webkit-transition: 0.3s background cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: 0.3s background cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.3s background cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}

.gotop__btn-icon {
  color: #fff;
  margin: 10px;
  line-height: 20px;
  font-size: 20px;
  -webkit-transition: -webkit-transform .25s ease-in-out;
  transition: -webkit-transform .25s ease-in-out;
  -o-transition: transform .25s ease-in-out;
  transition: transform .25s ease-in-out;
  transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}

.gotop--down .gotop__btn-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.gotop__text {
  display: none;
}

.breadcrumb {
  font-size: 14px;
  padding: 8px 0;
  margin: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .breadcrumb {
    padding: 14px 0;
  }
}

@media (min-width: 1024px) {
  .breadcrumb {
    padding: 18.5px 0;
  }
}

.breadcrumb__item {
  display: inline;
}

.breadcrumb__item::before {
  content: ">";
  margin: 0 3px;
}

.breadcrumb__item:first-child:before {
  display: none;
}

.breadcrumb__link {
  color: #333;
  text-decoration: none;
  -webkit-transition: color .15s;
  -o-transition: color .15s;
  transition: color .15s;
}

.breadcrumb__item--current .breadcrumb__link {
  color: #00B09D;
}

.breadcrumb__icon {
  margin-top: -4px;
  font-size: 22px;
}

.logo {
  width: 140px;
  height: 30px;
}

@media (min-width: 1024px) {
  .logo {
    width: 234px;
    height: 50px;
  }
}

.logo__link {
  display: block;
  font-size: 0;
}

@media (min-width: 1024px) {
  .navbar {
    background: #34383C;
  }
}

.nav-wrap__trigger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (min-width: 1024px) {
  .nav-wrap__trigger {
    display: none;
  }
}

.nav-wrap--open .nav-wrap__trigger {
  color: #00B09D;
}

.nav-wrap__dropbox-overlay {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nav-wrap__dropbox-overlay {
    position: static;
    overflow: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: none;
    width: 100%;
    height: auto;
    pointer-events: auto;
  }
}

.nav-wrap--open .nav-wrap__dropbox-overlay {
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .nav-wrap--open .nav-wrap__dropbox-overlay {
    background: none;
  }
}

.nav-wrap__dropbox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 350ms;
  transition: -webkit-transform 350ms;
  -o-transition: transform 350ms;
  transition: transform 350ms;
  transition: transform 350ms, -webkit-transform 350ms;
  z-index: 2;
  overflow-X: hidden;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
  background: #F8F8F8;
}

@media (min-width: 1024px) {
  .nav-wrap__dropbox {
    color: #333;
    position: static;
    overflow: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: none;
    width: 100%;
    height: auto;
    max-height: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    pointer-events: auto;
  }
}

.nav-wrap--open .nav-wrap__dropbox {
  z-index: 6;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .nav-wrap--open .nav-wrap__dropbox {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.nav {
  padding: 0;
  margin: 0;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

@media (min-width: 1024px) {
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.nav--open {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media (min-width: 1024px) {
  .nav--open {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.nav--open-third {
  -webkit-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  transform: translateX(-200%);
}

@media (min-width: 1024px) {
  .nav--open-third {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

@media (min-width: 1024px) {
  .nav__item {
    -webkit-transition: background .25s;
    -o-transition: background .25s;
    transition: background .25s;
  }
}

.nav__item--current .nav__link {
  background: #eee;
}

@media (min-width: 1024px) {
  .nav__item--current .nav__link {
    background: #00B09D;
    color: #fff;
  }
}

@media (min-width: 1024px) {
  .nav--current .nav__item:hover {
    background: #00B09D;
    color: #fff;
  }
}

.nav__item--primary {
  border-left: 3px solid #00B09D;
}

@media (min-width: 1024px) {
  .nav__item--primary {
    border-left: none;
  }
}

.nav__item--second {
  position: relative;
}

.nav__link, .nav__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  padding: 0 1.25em;
  padding: 13px 20px;
  background: #F8F8F8;
  color: #333;
  border-bottom: 1px solid #e1e1e1;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .nav__link, .nav__heading {
    border: none;
    border-right: 1px solid #34383C;
    background: transparent;
    color: #fff;
    padding: 0 35px;
    line-height: 70px;
    font-size: 20px;
  }
}

.nav__link:focus, .nav__link:active, .nav__link:hover, .nav__heading:focus, .nav__heading:active, .nav__heading:hover {
  background: #eee;
  color: #333;
}

@media (min-width: 1024px) {
  .nav__link:focus, .nav__link:active, .nav__link:hover, .nav__heading:focus, .nav__heading:active, .nav__heading:hover {
    background: #00B09D;
    color: #fff;
  }
}

.nav__heading-icon {
  font-size: 1em;
  color: #777;
}

@media (min-width: 1024px) {
  .nav__heading-icon {
    color: #fff;
    margin: 0 0 0 5px;
    position: static;
    -webkit-transition: -webkit-transform .1s ease-in-out;
    transition: -webkit-transform .1s ease-in-out;
    -o-transition: transform .1s ease-in-out;
    transition: transform .1s ease-in-out;
    transition: transform .1s ease-in-out, -webkit-transform .1s ease-in-out;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@media (min-width: 1024px) {
  .nav__heading:hover .nav__heading-icon {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

@media (min-width: 1024px) {
  .nav__link {
    position: relative;
  }
}

@media (min-width: 1440px) {
  .nav__item:last-child .nav__link {
    padding-right: 0;
    text-align: right;
    background: transparent;
  }
}

.nav__subnav {
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav__item--third .nav__subnav {
    max-width: 1400px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.nav__subnav-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #F8F8F8;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  z-index: 1;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  visibility: hidden;
  height: auto;
}

@media (min-width: 1024px) {
  .nav__subnav-wrap {
    background: #F8F8F8;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 100%;
    line-height: 50px;
    visibility: hidden;
    z-index: -1;
  }
}

@media (min-width: 1024px) {
  .nav__item--second .nav__subnav-wrap {
    top: 70px;
    left: 0;
    right: initial;
    width: 100%;
    border: 1px solid #ddd;
  }
}

@media (min-width: 1024px) {
  .nav__item--third .nav__subnav-wrap {
    top: 170px;
    left: 0;
    right: initial;
    width: 100%;
    padding: 15px 0;
    line-height: 1;
  }
}

.nav__heading--active + .nav__subnav-wrap {
  visibility: visible;
}

@media (min-width: 1024px) {
  .nav__heading--active + .nav__subnav-wrap {
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .nav__item:hover .nav__subnav-wrap {
    visibility: visible;
  }
}

.nav__subnav-item:last-child {
  border-bottom: 1px solid #eee;
}

@media (min-width: 1024px) {
  .nav__subnav-item:last-child {
    border: none;
  }
}

@media (min-width: 1024px) {
  .nav__item:hover .nav__subnav-item {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .nav__item--third .nav__subnav-item {
    padding: 0 18px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 140px;
    flex: 0 1 140px;
    min-width: 140px;
    border-right: 1px solid #ddd;
    word-break: break-all;
  }
}

.nav__subnav-item--current {
  color: #00B09D;
}

.nav__subnav-back, .nav__subnav-link {
  color: #333;
  background: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  padding: 0 1.25em;
  padding: 13px 20px;
  border-bottom: 1px solid #e1e1e1;
  line-height: 1.5;
}

.nav__subnav-back:focus, .nav__subnav-back:active, .nav__subnav-back:hover, .nav__subnav-link:focus, .nav__subnav-link:active, .nav__subnav-link:hover {
  background: #eee;
  color: #333;
}

.nav__subnav-back {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .nav__subnav-back {
    display: none;
  }
}

.nav__subnav-link {
  padding-left: 2.77778em;
}

@media (min-width: 1024px) {
  .nav__subnav-link {
    background: #F8F8F8;
    padding: 12px 20px;
    line-height: 1;
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .nav__subnav-link:hover {
    background: #eee;
  }
}

.nav__subnav-back-icon {
  position: relative;
  font-size: 1em;
  color: #777;
  margin: 0 8px 0 0;
}

@media (min-width: 1024px) {
  .nav__subnav-back-icon {
    display: none;
  }
}

.nav__thirdnav {
  margin: 0;
  padding: 0;
}

.nav__thirdnav-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #F8F8F8;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  z-index: 1;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  visibility: hidden;
  height: auto;
}

@media (min-width: 1024px) {
  .nav__thirdnav-wrap {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: -1;
  }
}

.nav__thirdnav-heading--active + .nav__thirdnav-wrap {
  visibility: visible;
}

@media (min-width: 1024px) {
  .nav__thirdnav-heading--active + .nav__thirdnav-wrap {
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .nav__item:hover .nav__thirdnav-wrap {
    visibility: visible;
    position: static;
  }
}

.nav__thirdnav-item:last-child {
  border-bottom: 1px solid #eee;
}

@media (min-width: 1024px) {
  .nav__thirdnav-item:last-child {
    border: none;
  }
}

@media (min-width: 1024px) {
  .nav__item:hover .nav__thirdnav-item {
    opacity: 1;
  }
}

.nav__thirdnav-item--current {
  color: #00B09D;
}

.nav__thirdnav-heading, .nav__thirdnav-back, .nav__thirdnav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  padding: 0 1.25em;
  padding: 13px 20px;
  background: #F8F8F8;
  color: #333;
  border-bottom: 1px solid #e1e1e1;
  line-height: 1.5;
}

.nav__thirdnav-heading:focus, .nav__thirdnav-heading:active, .nav__thirdnav-heading:hover, .nav__thirdnav-back:focus, .nav__thirdnav-back:active, .nav__thirdnav-back:hover, .nav__thirdnav-link:focus, .nav__thirdnav-link:active, .nav__thirdnav-link:hover {
  background: #eee;
  color: #333;
}

@media (min-width: 1024px) {
  .nav__thirdnav-heading:focus, .nav__thirdnav-heading:active, .nav__thirdnav-heading:hover, .nav__thirdnav-back:focus, .nav__thirdnav-back:active, .nav__thirdnav-back:hover, .nav__thirdnav-link:focus, .nav__thirdnav-link:active, .nav__thirdnav-link:hover {
    background: #00B09D;
    color: #fff;
    border: nono;
  }
}

.nav__thirdnav-back {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .nav__thirdnav-back {
    display: none;
  }
}

.nav__thirdnav-heading, .nav__thirdnav-link {
  padding-left: 2.77778em;
}

@media (min-width: 1024px) {
  .nav__thirdnav-heading {
    border: none;
    padding: 0;
    font-size: 16px;
    border-left: 4px solid #00B09D;
    padding-left: 10px;
    line-height: 1;
    margin: 0 0 5px;
  }
}

@media (min-width: 1024px) {
  .nav__thirdnav-link {
    display: block;
    padding-left: 0;
    padding: 5px 0;
    font-size: 16px;
    color: #969696;
    border: none;
    line-height: 1.2;
  }
}

.nav__thirdnav-heading:hover, .nav__thirdnav-link:hover {
  background: transparent;
  color: #00B09D;
}

.nav__thirdnav-heading-icon, .nav__thirdnav-back-icon {
  position: relative;
  font-size: 1em;
  color: #777;
}

@media (min-width: 1024px) {
  .nav__thirdnav-heading-icon, .nav__thirdnav-back-icon {
    display: none;
  }
}

.nav__thirdnav-back-icon {
  margin: 0 8px 0 0;
}

.search__trigger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

@media (min-width: 1024px) {
  .search--active .search__trigger {
    display: none;
  }
}

@media (min-width: 1024px) {
  .search__trigger {
    display: none;
  }
}

.search__close {
  position: absolute;
  top: 0;
  display: block;
  display: none;
  z-index: 1;
  width: 50px;
  height: 50px;
  color: #fff;
  line-height: 44px;
  text-align: center;
}

.search__close:active {
  color: #eee;
}

.search__form {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  margin: 0 0 1.25em;
}

@media (min-width: 1024px) {
  .search__form {
    margin: 0;
  }
}

.search__input {
  width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 50px;
  line-height: normal;
  padding: 0.9375em;
  font-size: 16px;
  background: #fff;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}

.search__input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #333;
}

.search__input::-webkit-search-decoration, .search__input::-webkit-search-cancel-button, .search__input::-webkit-search-results-button, .search__input::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

.search__input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.search__btn-clear, .search__btn-search {
  top: 0;
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.search__btn-clear {
  display: none;
  background: #fff;
}

.search__btn-clear--active {
  display: inline-block;
}

.search__icon-clear {
  margin: -2px 0 0;
  color: #333;
  font-size: 14px;
}

.search__btn-search {
  right: 0;
  background: #00B09D;
  color: #fff;
  border: none;
}

.search__btn-search:focus, .search__btn-search:active {
  background: #007d70;
}

@media (min-width: 1024px) {
  .search__btn-search:hover {
    background: #007d70;
  }
}

@media (min-width: 1024px) {
  .search__btn-search {
    width: 60px;
  }
}

.search__btn-icon {
  font-size: 26px;
}

.search__btn-search-text {
  display: block;
  display: none;
}

.search__text {
  display: none;
}

.search__dropbox {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform .35s;
  transition: -webkit-transform .35s;
  -o-transition: transform .35s;
  transition: transform .35s;
  transition: transform .35s, -webkit-transform .35s;
  background: #F8F8F8;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .search__dropbox {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    position: static;
    background: transparent;
    -webkit-transition: opacity .25s;
    -o-transition: opacity .25s;
    transition: opacity .25s;
    overflow: hidden;
  }
}

.search--active .search__dropbox {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

@media (min-width: 1024px) {
  .search--active .search__dropbox {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .search__form-dropbox {
    border: 1px solid #ddd;
    padding: 15px 20px;
    opacity: 0;
    max-height: 0;
    -webkit-transition: max-height .35s;
    -o-transition: max-height .35s;
    transition: max-height .35s;
    background: #fff;
    width: calc(328px - 60px);
  }
}

@media (min-width: 1024px) {
  .search--active .search__form-dropbox {
    max-height: 500px;
    padding: 15px 20px;
    opacity: 1;
  }
}

.search-menu {
  padding: 1.6875em 1.875em;
}

@media (min-width: 1024px) {
  .search-menu {
    font-size: 16px;
    padding: 0;
  }
}

.search-menu__headingbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 0 0 0.5em;
  margin-bottom: 0.9375em;
}

.search-menu__heading {
  font-size: 0.875em;
  color: #aaa;
}

.search-menu__item {
  margin: 0.9375em 0;
}

.search-menu__item + .search-menu__item {
  margin-top: -0.3125em;
  padding-top: 1.5625em;
}

@media (min-width: 1024px) {
  .search-menu__item {
    margin: 0;
  }
}

.search-menu__btn-del {
  font-size: 0.875em;
  font-weight: normal;
  -webkit-transition: color .15s;
  -o-transition: color .15s;
  transition: color .15s;
}

.search-menu__taglist {
  margin: 0;
  padding: 0;
}

.search-menu__taglist-item {
  padding: 5px 0;
}

.search-menu__tag {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  color: #111;
}

@media (min-width: 1024px) {
  .search-menu__tag {
    cursor: pointer;
  }
}

.list-keyword {
  padding: 0;
  margin: 0 -3px;
}

.list-keyword__item {
  display: inline-block;
  margin: 5px 3px;
}

.list-keyword__link {
  display: block;
  padding: 5px 8px 5px;
  font-size: 0.875em;
  text-decoration: none;
  background: #fff;
  border-radius: 50px;
}

.list-keyword__link:active {
  color: #fff;
  background: #333;
}

.login__trigger {
  display: none;
}

@media (min-width: 1024px) {
  .login__trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-decoration: none;
    padding: 8px 0 8px 5px;
  }
}

.login--open .login__trigger, .login__trigger:acitve {
  color: #00B09D;
}

@media (min-width: 1024px) {
  .login__trigger:hover {
    color: inherit;
  }
}

@media (min-width: 1024px) {
  .login__trigger-icon {
    font-size: .8em;
    margin-left: .25em;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
}

@media (min-width: 1024px) {
  .login:hover .login__trigger-icon,
  .login--open .login__trigger-icon {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

.login__item--after {
  display: none;
}

@media (min-width: 1024px) {
  .login__item--after {
    position: relative;
  }
}

.login__avatarbox {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: .5em;
}

@media (min-width: 1024px) {
  .login__avatarbox {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1440px) {
  .login__avatarbox {
    margin-right: 1em;
  }
}

.login__text-name::before {
  content: '，';
}

@media (min-width: 1024px) {
  .login__dropbox {
    position: absolute;
    min-width: 195px;
    right: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: opacity .25s, -webkit-transform .25s;
    transition: opacity .25s, -webkit-transform .25s;
    -o-transition: opacity .25s, transform .25s;
    transition: opacity .25s, transform .25s;
    transition: opacity .25s, transform .25s, -webkit-transform .25s;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    font-weight: normal;
    z-index: 1;
  }
}

@media (min-width: 1024px) {
  .login:hover .login__dropbox,
  .login--open .login__dropbox {
    opacity: 1;
    max-height: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.login--success .login__item {
  display: none;
}

.login--success .login__item--after {
  display: block;
}

.nav-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .nav-user {
    display: block;
  }
}

.nav-user__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.nav-user__item::before {
  content: '';
  display: block;
  height: 20px;
  width: 1px;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: -1px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 1024px) {
  .nav-user__item::before {
    content: none;
  }
}

.nav-user__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 60px;
  text-decoration: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  -webkit-transition: color .15s;
  -o-transition: color .15s;
  transition: color .15s;
}

@media (min-width: 1024px) {
  .nav-user .login__avatarbox {
    display: none;
  }
}

@media (min-width: 1024px) {
  .login__item--before .nav-user__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .login__item--before .nav-user__item:first-child::after {
    content: '/';
  }
}

.login__item--after .nav-user__link {
  -webkit-transition: background .45s;
  -o-transition: background .45s;
  transition: background .45s;
}

@media (min-width: 1024px) {
  .login__item--after .nav-user__link:hover {
    background: #F8F8F8;
    color: #333;
  }
}

.nav-footer {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nav-footer__item {
  position: relative;
}

.nav-footer__item:not(:last-child)::after {
  content: "";
  display: block;
  background: #777;
  width: 1px;
  position: absolute;
  right: 0;
  top: 7px;
  height: 14px;
}

.nav-footer__link {
  display: block;
  padding: 5px 15px;
  line-height: 1.25;
  text-decoration: none;
  font-size: 0.875em;
}

.logolist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -15px 15px;
}

@media (min-width: 1024px) {
  .logolist {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.logolist__item {
  margin: 0 15px;
}

.logolist__img-moea {
  width: 96px;
}

.logolist__img-itri {
  width: 106px;
}

.contact-box {
  font-size: 12px;
}

.contact-box__title {
  font-weight: bold;
  margin: 0 0 10px;
}

.nav-menu {
  margin: 0 0 5px;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: none;
  }
}

.nav-menulist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px 20px;
}

.nav-menulist__item {
  position: relative;
}

.nav-menulist__item:after {
  content: "";
  display: block;
  height: 14px;
  width: 1px;
  background: #ddd;
  position: absolute;
  right: 0px;
  top: 0;
}

.nav-menulist__link {
  padding: 0 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.contactlist {
  font-size: 12px;
  text-align: center;
  margin: 0;
}

@media (min-width: 1024px) {
  .contactlist {
    font-size: 14px;
    text-align: right;
  }
}

.contactlist__item {
  margin-bottom: 5px;
}

@media (min-width: 1024px) {
  .contactlist__item {
    margin: 0 5px;
    display: inline-block;
  }
}

.contactlist__item:first-child {
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .contactlist__item:first-child {
    display: block;
  }
}

.contactlist__field {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.contactlist__icon {
  font-size: 20px;
  margin-right: 5px;
  color: #ddd;
}

.contactlist__text {
  display: none;
}

@media (max-width: 1023px) {
  .nav-side-wrap--fixed {
    position: fixed;
    top: 60px;
    left: 15px;
    right: 15px;
    z-index: 2;
  }
  .nav-side-wrap__trigger {
    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;
    cursor: pointer;
    text-decoration: none;
    line-height: 44px;
    padding: 0 1em;
    border: 1px solid #ddd;
    color: #333;
  }
  .nav-side-wrap__trigger:focus, .nav-side-wrap__trigger:active {
    color: inherit;
  }
}

@media (max-width: 1023px) and (min-width: 1024px) {
  .nav-side-wrap__trigger:hover {
    color: inherit;
  }
}

@media (max-width: 1023px) {
  .nav-side-wrap__trigger-icon {
    font-size: .75em;
    font-weight: 900;
    -webkit-transition: -webkit-transform .25s;
    transition: -webkit-transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
    transition: transform .25s, -webkit-transform .25s;
  }
  .nav-side-wrap--open .nav-side-wrap__trigger-icon {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .nav-side {
    max-height: 0;
    overflow: hidden;
    z-index: 3;
    top: 100%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    opacity: .5;
    -webkit-transition: opacity .25s, -webkit-transform .3s;
    transition: opacity .25s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .25s;
    transition: transform .3s, opacity .25s;
    transition: transform .3s, opacity .25s, -webkit-transform .3s;
    background: #fff;
  }
  .nav-side-wrap--open .nav-side {
    max-height: 800px;
    opacity: 1;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    border: 1px solid #ddd;
  }
  .nav-side__item {
    border-bottom: #e1e1e1 1px solid;
    opacity: .2;
    -webkit-transition: opacity .5s .1s;
    -o-transition: opacity .5s .1s;
    transition: opacity .5s .1s;
    margin: 0;
  }
  .nav-side__item--current {
    color: #00B09D;
  }
  .nav-side-wrap--open .nav-side__item {
    opacity: 1;
  }
  .nav-side__item:last-of-type {
    border: none;
  }
  .nav-side__link {
    display: block;
    text-decoration: none;
    padding: 13px 1em;
    color: inherit;
    position: relative;
    background: #fff;
  }
  .nav-side__link:hover {
    text-decoration: none;
    background: #F8F8F8;
  }
  .nav-side__link-icon {
    position: absolute;
    right: 1.33333em;
    top: 50%;
    font-size: .75em;
    -webkit-transition: -webkit-transform .25s;
    transition: -webkit-transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
    transition: transform .25s, -webkit-transform .25s;
    margin-top: -0.375em;
    display: inline-block;
  }
  .nav-side__link--active .nav-side__link-icon {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .nav-side__sub-nav {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height .25s, opacity .35s;
    -o-transition: max-height .25s, opacity .35s;
    transition: max-height .25s, opacity .35s;
    opacity: 0;
  }
  .nav-side__link--active + .nav-side__sub-nav {
    max-height: 300vh;
    opacity: 1;
  }
  .nav-side__sub-nav-item {
    color: #333;
    border-top: 1px solid #F8F8F8;
  }
  .nav-side__sub-nav-item:first-child {
    border-color: #e1e1e1;
  }
  .nav-side__sub-nav-link {
    padding: 13px 2em;
  }
}

@media (min-width: 1024px) {
  .nav-side-wrap {
    margin: 0 0 30px;
    background: #F8F8F8;
    padding: 15px 30px;
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    z-index: 2;
  }
}

.nav-side-wrap__heading {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  padding: 0 0 10px;
  margin: 0 0 20px;
}

@media (min-width: 1024px) {
  .nav-side {
    list-style-type: square;
    padding: 0 0 0 30px;
    line-height: 1.4;
  }
}

@media (min-width: 1024px) {
  .nav-side__item {
    margin-bottom: 10px;
    list-style-type: square;
  }
}

@media (min-width: 1024px) {
  .nav-side__link {
    color: #333;
    font-size: 16px;
    text-decoration: none;
  }
}

@media (min-width: 1024px) {
  .nav-side__item--current .nav-side__link {
    color: #00B09D;
  }
}

@media (min-width: 1024px) {
  .nav-side__link-icon {
    display: none;
  }
}

.nav-side__sub-nav {
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-side__sub-nav {
    margin: 15px 0;
  }
}

.nav-side__sub-nav-item--current {
  color: #00B09D;
}

.nav-side__sub-nav-link {
  display: inline-block;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .nav-side__sub-nav-link {
    margin: 5px 0 5px 10px;
  }
}

@media (min-width: 1024px) {
  .nav-side__sub-nav-item--current .nav-side__sub-nav-link {
    text-decoration: underline;
  }
}
