@charset "UTF-8";
/*
================================================================
----------------------------------------------------------------

 ServGear CSS Layout

----------------------------------------------------------------
 *
 * Copyright (c) 2020 servgear.net
 * https://servgear.net/
 *
 * licensed under the MIT license.
 * https://ja.wikipedia.org/wiki/MIT_License
 *
================================================================
*/
/*
================================================================
 ノーマライズ
================================================================
*/
/* ---------------------------------------------------------- */
/* compass/reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ---------------------------------------------------------- */
button, input, select, textarea {
  font-size: 1em;
  font-family: inherit;
}

/*
================================================================
 スクリプト要素
================================================================
*/
#sg-layout-viewsize {
  position: fixed;
  z-index: -9999;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
}

/*
================================================================
 ベースレイアウト
================================================================
*/
html {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
}
@media print {
  html {
    font-size: 9pt;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
}

.display-area {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.scroll-content {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.scroll-content.scroll-content--horizontal {
  width: auto;
  height: 100%;
}

/*
================================================================
 端末ごとの表示変更
================================================================
*/
@media all and (max-width: 1200px) {
  .mb-hide,
  .pc-only {
    /* タブレット、スマートフォン時非表示 */
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .sp-hide,
  .tb-only {
    /* スマートフォン時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 1201px) {
  .pc-hide,
  .mb-only,
  .tb-only {
    /* PC時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 768px) {
  .sp-only {
    /* PC、タブレット時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 768px) and (max-width: 1200px) {
  .tb-hide {
    /* タブレット時非表示 */
    display: none !important;
  }
}
/*
================================================================
 コンテナ
================================================================
*/
.container {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  width: calc(100% - 20px);
  max-width: 1060px;
}
@media all and (min-width: 481px) {
  .container {
    width: calc(100% - 40px);
  }
}
@media all and (min-width: 768px) {
  .container {
    width: calc(100% - 60px);
  }
}
@media all and (min-width: 961px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media all and (min-width: 1201px) {
  .container {
    width: calc(100% - 120px);
  }
}
@media all and (min-width: 1601px) {
  .container {
    width: calc(100% - 140px);
  }
}
.container.container--large {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  width: calc(100% - 20px);
  max-width: 1200px;
}
@media all and (min-width: 481px) {
  .container.container--large {
    width: calc(100% - 40px);
  }
}
@media all and (min-width: 768px) {
  .container.container--large {
    width: calc(100% - 60px);
  }
}
@media all and (min-width: 961px) {
  .container.container--large {
    width: calc(100% - 100px);
  }
}
@media all and (min-width: 1201px) {
  .container.container--large {
    width: calc(100% - 120px);
  }
}
@media all and (min-width: 1601px) {
  .container.container--large {
    width: calc(100% - 140px);
  }
}

/*
================================================================
 シンプル
================================================================
*/
.simple-list {
  padding-left: 1em;
}

.simple-list__mark {
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  text-align: center;
}

/*
================================================================
 グリッドレイアウト
================================================================
*/
.grid {
  /* flex表示により子要素をグリッドレイアウトにします */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.grid.grid--reverse {
  /* 右から埋めていくようにします */
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.grid.grid--center {
  /* 上下を中央揃えにします */
  -webkit-align-items: center;
  align-items: center;
}
.grid.grid--top {
  /* 上下を上揃えにします */
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.grid.grid--bottom {
  /* 上下を下揃えにします */
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.grid.grid--stretch {
  /* 上下を最大要素にあわせて引き伸ばします */
  -webkit-align-items: stretch;
  align-items: stretch;
}

.grid > * {
  /* グリッド要素サイズを 100% に設定します */
  box-sizing: border-box;
  width: 100% !important;
  background: transparent;
}

.grid > .grid__1 {
  /* グリッド要素サイズを 1 / 12 に設定します */
  width: 8.33333% !important;
}

.grid-width-1 {
  /* 対象をグリッド要素サイズ 1 / 12 に設定します */
  width: 8.33333% !important;
}

.grid > .grid__2 {
  /* グリッド要素サイズを 2 / 12 に設定します */
  width: 16.66667% !important;
}

.grid-width-2 {
  /* 対象をグリッド要素サイズ 2 / 12 に設定します */
  width: 16.66667% !important;
}

.grid > .grid__3 {
  /* グリッド要素サイズを 3 / 12 に設定します */
  width: 25% !important;
}

.grid-width-3 {
  /* 対象をグリッド要素サイズ 3 / 12 に設定します */
  width: 25% !important;
}

.grid > .grid__4 {
  /* グリッド要素サイズを 4 / 12 に設定します */
  width: 33.33333% !important;
}

.grid-width-4 {
  /* 対象をグリッド要素サイズ 4 / 12 に設定します */
  width: 33.33333% !important;
}

.grid > .grid__5 {
  /* グリッド要素サイズを 5 / 12 に設定します */
  width: 41.66667% !important;
}

.grid-width-5 {
  /* 対象をグリッド要素サイズ 5 / 12 に設定します */
  width: 41.66667% !important;
}

.grid > .grid__6 {
  /* グリッド要素サイズを 6 / 12 に設定します */
  width: 50% !important;
}

.grid-width-6 {
  /* 対象をグリッド要素サイズ 6 / 12 に設定します */
  width: 50% !important;
}

.grid > .grid__7 {
  /* グリッド要素サイズを 7 / 12 に設定します */
  width: 58.33333% !important;
}

.grid-width-7 {
  /* 対象をグリッド要素サイズ 7 / 12 に設定します */
  width: 58.33333% !important;
}

.grid > .grid__8 {
  /* グリッド要素サイズを 8 / 12 に設定します */
  width: 66.66667% !important;
}

.grid-width-8 {
  /* 対象をグリッド要素サイズ 8 / 12 に設定します */
  width: 66.66667% !important;
}

.grid > .grid__9 {
  /* グリッド要素サイズを 9 / 12 に設定します */
  width: 75% !important;
}

.grid-width-9 {
  /* 対象をグリッド要素サイズ 9 / 12 に設定します */
  width: 75% !important;
}

.grid > .grid__10 {
  /* グリッド要素サイズを 10 / 12 に設定します */
  width: 83.33333% !important;
}

.grid-width-10 {
  /* 対象をグリッド要素サイズ 10 / 12 に設定します */
  width: 83.33333% !important;
}

.grid > .grid__11 {
  /* グリッド要素サイズを 11 / 12 に設定します */
  width: 91.66667% !important;
}

.grid-width-11 {
  /* 対象をグリッド要素サイズ 11 / 12 に設定します */
  width: 91.66667% !important;
}

.grid > .grid__12 {
  /* グリッド要素サイズを 12 / 12 に設定します */
  width: 100% !important;
}

.grid-width-12 {
  /* 対象をグリッド要素サイズ 12 / 12 に設定します */
  width: 100% !important;
}

@media all and (min-width: 481px) {
  .grid > .grid__1--xs {
    /* xs幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--xs {
    /* xs幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--xs {
    /* xs幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--xs {
    /* xs幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--xs {
    /* xs幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--xs {
    /* xs幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--xs {
    /* xs幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--xs {
    /* xs幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--xs {
    /* xs幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--xs {
    /* xs幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--xs {
    /* xs幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--xs {
    /* xs幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
@media all and (min-width: 768px) {
  .grid > .grid__1--sm {
    /* sm幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--sm {
    /* sm幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--sm {
    /* sm幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--sm {
    /* sm幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--sm {
    /* sm幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--sm {
    /* sm幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--sm {
    /* sm幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--sm {
    /* sm幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--sm {
    /* sm幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--sm {
    /* sm幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--sm {
    /* sm幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--sm {
    /* sm幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
@media all and (min-width: 961px) {
  .grid > .grid__1--md {
    /* md幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--md {
    /* md幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--md {
    /* md幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--md {
    /* md幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--md {
    /* md幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--md {
    /* md幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--md {
    /* md幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--md {
    /* md幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--md {
    /* md幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--md {
    /* md幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--md {
    /* md幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--md {
    /* md幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
@media all and (min-width: 1201px) {
  .grid > .grid__1--lg {
    /* lg幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--lg {
    /* lg幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--lg {
    /* lg幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--lg {
    /* lg幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--lg {
    /* lg幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--lg {
    /* lg幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--lg {
    /* lg幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--lg {
    /* lg幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--lg {
    /* lg幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--lg {
    /* lg幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--lg {
    /* lg幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--lg {
    /* lg幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
@media all and (min-width: 1601px) {
  .grid > .grid__1--xl {
    /* xl幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--xl {
    /* xl幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--xl {
    /* xl幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--xl {
    /* xl幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--xl {
    /* xl幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--xl {
    /* xl幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--xl {
    /* xl幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--xl {
    /* xl幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--xl {
    /* xl幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--xl {
    /* xl幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--xl {
    /* xl幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--xl {
    /* xl幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
/*
================================================================
 グリッドレイアウト（余白付き）
================================================================
*/
.grid.grid--separate {
  min-height: 30px;
  margin: 0 -30px -30px 0;
  width: calc(100% + 30px);
}

.grid.grid--separate > * {
  width: calc(100% - 30px) !important;
  margin: 0 30px 30px 0;
}

.grid.grid--separate > .grid__1 {
  width: calc(8.33333% - 30px) !important;
}

.grid-separate-width-1 {
  width: calc(8.33333% - 30px) !important;
}

.grid.grid--separate > .grid__2 {
  width: calc(16.66667% - 30px) !important;
}

.grid-separate-width-2 {
  width: calc(16.66667% - 30px) !important;
}

.grid.grid--separate > .grid__3 {
  width: calc(25% - 30px) !important;
}

.grid-separate-width-3 {
  width: calc(25% - 30px) !important;
}

.grid.grid--separate > .grid__4 {
  width: calc(33.33333% - 30px) !important;
}

.grid-separate-width-4 {
  width: calc(33.33333% - 30px) !important;
}

.grid.grid--separate > .grid__5 {
  width: calc(41.66667% - 30px) !important;
}

.grid-separate-width-5 {
  width: calc(41.66667% - 30px) !important;
}

.grid.grid--separate > .grid__6 {
  width: calc(50% - 30px) !important;
}

.grid-separate-width-6 {
  width: calc(50% - 30px) !important;
}

.grid.grid--separate > .grid__7 {
  width: calc(58.33333% - 30px) !important;
}

.grid-separate-width-7 {
  width: calc(58.33333% - 30px) !important;
}

.grid.grid--separate > .grid__8 {
  width: calc(66.66667% - 30px) !important;
}

.grid-separate-width-8 {
  width: calc(66.66667% - 30px) !important;
}

.grid.grid--separate > .grid__9 {
  width: calc(75% - 30px) !important;
}

.grid-separate-width-9 {
  width: calc(75% - 30px) !important;
}

.grid.grid--separate > .grid__10 {
  width: calc(83.33333% - 30px) !important;
}

.grid-separate-width-10 {
  width: calc(83.33333% - 30px) !important;
}

.grid.grid--separate > .grid__11 {
  width: calc(91.66667% - 30px) !important;
}

.grid-separate-width-11 {
  width: calc(91.66667% - 30px) !important;
}

.grid.grid--separate > .grid__12 {
  width: calc(100% - 30px) !important;
}

.grid-separate-width-12 {
  width: calc(100% - 30px) !important;
}

@media all and (min-width: 481px) {
  .grid.grid--separate {
    min-height: 30px;
    margin: 0 -30px -30px 0;
    width: calc(100% + 30px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 30px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 30px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 30px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 30px) !important;
  }
}
@media all and (min-width: 768px) {
  .grid.grid--separate {
    min-height: 40px;
    margin: 0 -40px -40px 0;
    width: calc(100% + 40px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--separate {
    min-height: 40px;
    margin: 0 -40px -40px 0;
    width: calc(100% + 40px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate {
    min-height: 50px;
    margin: 0 -50px -50px 0;
    width: calc(100% + 50px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate {
    min-height: 50px;
    margin: 0 -50px -50px 0;
    width: calc(100% + 50px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 481px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 30px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 30px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 30px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 30px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 30px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 30px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 30px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 30px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 30px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 30px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 30px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 30px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 30px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 30px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 30px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 30px) !important;
  }
}
@media all and (min-width: 768px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 768px) {
  .grid.grid--separate > .grid__1--sm {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--sm {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--sm {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--sm {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--sm {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--sm {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--sm {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--sm {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--sm {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--sm {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--sm {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--sm {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--sm {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--sm {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--sm {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--sm {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--sm {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--sm {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--sm {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--sm {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--sm {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--sm {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--sm {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--sm {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--separate > .grid__1--sm {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--sm {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--sm {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--sm {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--sm {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--sm {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--sm {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--sm {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--sm {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--sm {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--sm {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--sm {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--sm {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--sm {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--sm {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--sm {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--sm {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--sm {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--sm {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--sm {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--sm {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--sm {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--sm {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--sm {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate > .grid__1--sm {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--sm {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--sm {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--sm {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--sm {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--sm {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--sm {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--sm {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--sm {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--sm {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--sm {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--sm {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--sm {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--sm {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--sm {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--sm {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--sm {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--sm {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--sm {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--sm {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--sm {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--sm {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--sm {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--sm {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--sm {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--sm {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--sm {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--sm {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--sm {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--sm {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--sm {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--sm {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--sm {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--sm {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--sm {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--sm {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--sm {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--sm {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--sm {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--sm {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--sm {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--sm {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--sm {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--sm {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--sm {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--sm {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--sm {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--sm {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--separate > .grid__1--md {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--md {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--md {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--md {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--md {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--md {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--md {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--md {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--md {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--md {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--md {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--md {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--md {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--md {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--md {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--md {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--md {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--md {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--md {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--md {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--md {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--md {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--md {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--md {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate > .grid__1--md {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--md {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--md {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--md {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--md {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--md {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--md {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--md {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--md {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--md {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--md {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--md {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--md {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--md {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--md {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--md {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--md {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--md {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--md {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--md {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--md {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--md {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--md {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--md {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--md {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--md {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--md {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--md {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--md {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--md {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--md {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--md {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--md {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--md {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--md {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--md {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--md {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--md {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--md {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--md {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--md {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--md {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--md {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--md {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--md {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--md {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--md {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--md {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate > .grid__1--lg {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--lg {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--lg {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--lg {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--lg {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--lg {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--lg {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--lg {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--lg {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--lg {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--lg {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--lg {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--lg {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--lg {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--lg {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--lg {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--lg {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--lg {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--lg {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--lg {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--lg {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--lg {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--lg {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--lg {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--lg {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--lg {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--lg {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--lg {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--lg {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--lg {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--lg {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--lg {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--lg {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--lg {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--lg {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--lg {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--lg {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--lg {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--lg {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--lg {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--lg {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--lg {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--lg {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--lg {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--lg {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--lg {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--lg {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--lg {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--xl {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--xl {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--xl {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--xl {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--xl {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--xl {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--xl {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--xl {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--xl {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--xl {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--xl {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--xl {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--xl {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--xl {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--xl {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--xl {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--xl {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--xl {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--xl {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--xl {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--xl {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--xl {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--xl {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--xl {
    width: calc(100% - 50px) !important;
  }
}
.grid.grid--narrow-separate {
  min-height: 10px;
  margin: 0 -10px -10px 0;
  width: calc(100% + 10px);
}

.grid.grid--narrow-separate > * {
  width: calc(100% - 10px) !important;
  margin: 0 10px 10px 0;
}

.grid.grid--narrow-separate > .grid__1 {
  width: calc(8.33333% - 10px) !important;
}

.grid-narrow-separate-width-1 {
  width: calc(8.33333% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__2 {
  width: calc(16.66667% - 10px) !important;
}

.grid-narrow-separate-width-2 {
  width: calc(16.66667% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__3 {
  width: calc(25% - 10px) !important;
}

.grid-narrow-separate-width-3 {
  width: calc(25% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__4 {
  width: calc(33.33333% - 10px) !important;
}

.grid-narrow-separate-width-4 {
  width: calc(33.33333% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__5 {
  width: calc(41.66667% - 10px) !important;
}

.grid-narrow-separate-width-5 {
  width: calc(41.66667% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__6 {
  width: calc(50% - 10px) !important;
}

.grid-narrow-separate-width-6 {
  width: calc(50% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__7 {
  width: calc(58.33333% - 10px) !important;
}

.grid-narrow-separate-width-7 {
  width: calc(58.33333% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__8 {
  width: calc(66.66667% - 10px) !important;
}

.grid-narrow-separate-width-8 {
  width: calc(66.66667% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__9 {
  width: calc(75% - 10px) !important;
}

.grid-narrow-separate-width-9 {
  width: calc(75% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__10 {
  width: calc(83.33333% - 10px) !important;
}

.grid-narrow-separate-width-10 {
  width: calc(83.33333% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__11 {
  width: calc(91.66667% - 10px) !important;
}

.grid-narrow-separate-width-11 {
  width: calc(91.66667% - 10px) !important;
}

.grid.grid--narrow-separate > .grid__12 {
  width: calc(100% - 10px) !important;
}

.grid-narrow-separate-width-12 {
  width: calc(100% - 10px) !important;
}

@media all and (min-width: 481px) {
  .grid.grid--narrow-separate {
    min-height: 10px;
    margin: 0 -10px -10px 0;
    width: calc(100% + 10px);
  }

  .grid.grid--narrow-separate > * {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid.grid--narrow-separate > .grid__1 {
    width: calc(8.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-1 {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2 {
    width: calc(16.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-2 {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3 {
    width: calc(25% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-3 {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4 {
    width: calc(33.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-4 {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5 {
    width: calc(41.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-5 {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6 {
    width: calc(50% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-6 {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7 {
    width: calc(58.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-7 {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8 {
    width: calc(66.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-8 {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9 {
    width: calc(75% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-9 {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10 {
    width: calc(83.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-10 {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11 {
    width: calc(91.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-11 {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12 {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-12 {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 768px) {
  .grid.grid--narrow-separate {
    min-height: 10px;
    margin: 0 -10px -10px 0;
    width: calc(100% + 10px);
  }

  .grid.grid--narrow-separate > * {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid.grid--narrow-separate > .grid__1 {
    width: calc(8.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-1 {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2 {
    width: calc(16.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-2 {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3 {
    width: calc(25% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-3 {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4 {
    width: calc(33.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-4 {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5 {
    width: calc(41.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-5 {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6 {
    width: calc(50% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-6 {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7 {
    width: calc(58.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-7 {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8 {
    width: calc(66.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-8 {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9 {
    width: calc(75% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-9 {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10 {
    width: calc(83.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-10 {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11 {
    width: calc(91.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-11 {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12 {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-12 {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--narrow-separate {
    min-height: 10px;
    margin: 0 -10px -10px 0;
    width: calc(100% + 10px);
  }

  .grid.grid--narrow-separate > * {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid.grid--narrow-separate > .grid__1 {
    width: calc(8.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-1 {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2 {
    width: calc(16.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-2 {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3 {
    width: calc(25% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-3 {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4 {
    width: calc(33.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-4 {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5 {
    width: calc(41.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-5 {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6 {
    width: calc(50% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-6 {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7 {
    width: calc(58.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-7 {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8 {
    width: calc(66.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-8 {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9 {
    width: calc(75% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-9 {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10 {
    width: calc(83.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-10 {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11 {
    width: calc(91.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-11 {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12 {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-12 {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--narrow-separate {
    min-height: 10px;
    margin: 0 -10px -10px 0;
    width: calc(100% + 10px);
  }

  .grid.grid--narrow-separate > * {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid.grid--narrow-separate > .grid__1 {
    width: calc(8.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-1 {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2 {
    width: calc(16.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-2 {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3 {
    width: calc(25% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-3 {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4 {
    width: calc(33.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-4 {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5 {
    width: calc(41.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-5 {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6 {
    width: calc(50% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-6 {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7 {
    width: calc(58.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-7 {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8 {
    width: calc(66.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-8 {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9 {
    width: calc(75% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-9 {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10 {
    width: calc(83.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-10 {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11 {
    width: calc(91.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-11 {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12 {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-12 {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--narrow-separate {
    min-height: 10px;
    margin: 0 -10px -10px 0;
    width: calc(100% + 10px);
  }

  .grid.grid--narrow-separate > * {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid.grid--narrow-separate > .grid__1 {
    width: calc(8.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-1 {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2 {
    width: calc(16.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-2 {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3 {
    width: calc(25% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-3 {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4 {
    width: calc(33.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-4 {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5 {
    width: calc(41.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-5 {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6 {
    width: calc(50% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-6 {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7 {
    width: calc(58.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-7 {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8 {
    width: calc(66.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-8 {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9 {
    width: calc(75% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-9 {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10 {
    width: calc(83.33333% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-10 {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11 {
    width: calc(91.66667% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-11 {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12 {
    width: calc(100% - 10px) !important;
    margin: 0 10px 10px 0;
  }

  .grid-narrow-separate-width-12 {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 481px) {
  .grid.grid--narrow-separate > .grid__1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--xs {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--xs {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 768px) {
  .grid.grid--narrow-separate > .grid__1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--xs {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--xs {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--narrow-separate > .grid__1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--xs {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--xs {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--narrow-separate > .grid__1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--xs {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--xs {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--narrow-separate > .grid__1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--xs {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--xs {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--xs {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--xs {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--xs {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--xs {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--xs {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--xs {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--xs {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--xs {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--xs {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--xs {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--xs {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 768px) {
  .grid.grid--narrow-separate > .grid__1--sm {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--sm {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--sm {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--sm {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--sm {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--sm {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--sm {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--sm {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--sm {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--sm {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--sm {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--sm {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--sm {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--sm {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--sm {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--sm {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--sm {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--sm {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--sm {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--sm {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--sm {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--sm {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--sm {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--sm {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--narrow-separate > .grid__1--sm {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--sm {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--sm {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--sm {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--sm {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--sm {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--sm {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--sm {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--sm {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--sm {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--sm {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--sm {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--sm {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--sm {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--sm {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--sm {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--sm {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--sm {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--sm {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--sm {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--sm {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--sm {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--sm {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--sm {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--narrow-separate > .grid__1--sm {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--sm {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--sm {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--sm {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--sm {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--sm {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--sm {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--sm {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--sm {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--sm {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--sm {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--sm {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--sm {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--sm {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--sm {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--sm {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--sm {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--sm {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--sm {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--sm {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--sm {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--sm {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--sm {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--sm {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--narrow-separate > .grid__1--sm {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--sm {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--sm {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--sm {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--sm {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--sm {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--sm {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--sm {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--sm {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--sm {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--sm {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--sm {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--sm {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--sm {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--sm {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--sm {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--sm {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--sm {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--sm {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--sm {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--sm {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--sm {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--sm {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--sm {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--narrow-separate > .grid__1--md {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--md {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--md {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--md {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--md {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--md {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--md {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--md {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--md {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--md {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--md {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--md {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--md {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--md {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--md {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--md {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--md {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--md {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--md {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--md {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--md {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--md {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--md {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--md {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--narrow-separate > .grid__1--md {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--md {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--md {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--md {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--md {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--md {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--md {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--md {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--md {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--md {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--md {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--md {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--md {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--md {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--md {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--md {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--md {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--md {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--md {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--md {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--md {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--md {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--md {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--md {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--narrow-separate > .grid__1--md {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--md {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--md {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--md {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--md {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--md {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--md {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--md {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--md {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--md {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--md {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--md {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--md {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--md {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--md {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--md {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--md {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--md {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--md {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--md {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--md {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--md {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--md {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--md {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--narrow-separate > .grid__1--lg {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--lg {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--lg {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--lg {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--lg {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--lg {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--lg {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--lg {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--lg {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--lg {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--lg {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--lg {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--lg {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--lg {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--lg {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--lg {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--lg {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--lg {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--lg {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--lg {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--lg {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--lg {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--lg {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--lg {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--narrow-separate > .grid__1--lg {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--lg {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--lg {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--lg {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--lg {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--lg {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--lg {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--lg {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--lg {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--lg {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--lg {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--lg {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--lg {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--lg {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--lg {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--lg {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--lg {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--lg {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--lg {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--lg {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--lg {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--lg {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--lg {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--lg {
    width: calc(100% - 10px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--narrow-separate > .grid__1--xl {
    width: calc(8.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-1--xl {
    width: calc(8.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__2--xl {
    width: calc(16.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-2--xl {
    width: calc(16.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__3--xl {
    width: calc(25% - 10px) !important;
  }

  .grid-narrow-separate-width-3--xl {
    width: calc(25% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__4--xl {
    width: calc(33.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-4--xl {
    width: calc(33.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__5--xl {
    width: calc(41.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-5--xl {
    width: calc(41.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__6--xl {
    width: calc(50% - 10px) !important;
  }

  .grid-narrow-separate-width-6--xl {
    width: calc(50% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__7--xl {
    width: calc(58.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-7--xl {
    width: calc(58.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__8--xl {
    width: calc(66.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-8--xl {
    width: calc(66.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__9--xl {
    width: calc(75% - 10px) !important;
  }

  .grid-narrow-separate-width-9--xl {
    width: calc(75% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__10--xl {
    width: calc(83.33333% - 10px) !important;
  }

  .grid-narrow-separate-width-10--xl {
    width: calc(83.33333% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__11--xl {
    width: calc(91.66667% - 10px) !important;
  }

  .grid-narrow-separate-width-11--xl {
    width: calc(91.66667% - 10px) !important;
  }

  .grid.grid--narrow-separate > .grid__12--xl {
    width: calc(100% - 10px) !important;
  }

  .grid-narrow-separate-width-12--xl {
    width: calc(100% - 10px) !important;
  }
}
.stretch-layout {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: transparent;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*
================================================================
 パララックスレイアウト
================================================================
*/
.parallax-frame {
  position: relative;
  overflow: hidden;
}

.parallax-frame__content {
  position: relative;
  z-index: 2;
}

.parallax-frame__display {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.parallax-frame--visible > .parallax-frame__display {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.parallax-frame-disabled .parallax-frame__display {
  display: none;
}

.parallax-frame__canvas {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100vh;
}

/*
================================================================
 スクリーンレイアウト
================================================================
*/
.media-screen {
  position: relative;
  overflow: hidden !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.media-screen > .media-screen__src {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: auto;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.media-screen > .media-screen__src.media-screen__src--wide {
  width: auto;
  height: 100%;
}
.media-screen > .media-screen__src.media-screen__src--narrow {
  width: 100%;
  height: auto;
}
.media-screen.media-screen--contain {
  background-size: contain;
}
.media-screen.media-screen--contain > .media-screen__src.media-screen__src--wide {
  width: 100%;
  height: auto;
}
.media-screen.media-screen--contain > .media-screen__src.media-screen__src--narrow {
  width: auto;
  height: 100%;
}
.media-screen.media-screen--adjust-width {
  background-size: 100% auto;
}
.media-screen.media-screen--adjust-width > .media-screen__src.media-screen__src--wide, .media-screen.media-screen--adjust-width > .media-screen__src.media-screen__src--narrow {
  width: 100%;
  height: auto;
}
.media-screen.media-screen--adjust-height {
  background-size: auto 100%;
}
.media-screen.media-screen--adjust-height > .media-screen__src.media-screen__src--wide, .media-screen.media-screen--adjust-height > .media-screen__src.media-screen__src--narrow {
  width: auto;
  height: 100%;
}
.media-screen.media-screen--orient-left {
  background-position: left center;
}
.media-screen.media-screen--orient-left > .media-screen__src {
  left: 0;
  right: auto;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.media-screen.media-screen--orient-right {
  background-position: right center;
}
.media-screen.media-screen--orient-right > .media-screen__src {
  left: auto;
  right: 0;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.media-screen.media-screen--orient-top {
  background-position: center top;
}
.media-screen.media-screen--orient-top > .media-screen__src {
  top: 0;
  bottom: auto;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.media-screen.media-screen--orient-bottom {
  background-position: center bottom;
}
.media-screen.media-screen--orient-bottom > .media-screen__src {
  top: auto;
  bottom: 0;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.media-screen.media-screen--orient-left-top {
  background-position: left top;
}
.media-screen.media-screen--orient-left-top > .media-screen__src {
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.media-screen.media-screen--orient-right-top {
  background-position: right top;
}
.media-screen.media-screen--orient-right-top > .media-screen__src {
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.media-screen.media-screen--orient-left-bottom {
  background-position: left bottom;
}
.media-screen.media-screen--orient-left-bottom > .media-screen__src {
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.media-screen.media-screen--orient-right-bottom {
  background-position: right bottom;
}
.media-screen.media-screen--orient-right-bottom > .media-screen__src {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.media-screen.media-screen--fixed {
  background-attachment: fixed;
  background-size: cover;
}
.agent-prop--iOS .media-screen.media-screen--fixed {
  background-attachment: scroll;
}
.agent-prop--iOS .media-screen.media-screen--fixed.media-screen--wide {
  background-size: auto 100vh;
}
.agent-prop--iOS .media-screen.media-screen--fixed.media-screen--narrow {
  background-size: 100vw auto;
}
.media-screen.media-screen--initialized > img.media-screen__src {
  display: none;
}

@media print {
  .media-screen.media-screen--initialized {
    background-image: none !important;
  }
  .media-screen.media-screen--initialized > img.media-screen__src {
    display: block;
  }
}
/*
================================================================
 フォームレイアウト
================================================================
*/
input.form-item, textarea.form-item {
  display: block;
  box-sizing: border-box;
  border: 1px solid #999;
  padding: 11px 10px 9px;
  font-size: 1.06667rem;
  text-align: left;
  border-radius: 5px;
  background: #fff;
  color: #333;
}
input.form-item::placeholder, textarea.form-item::placeholder {
  color: #999;
}
input.form-item::-webkit-input-placeholder, textarea.form-item::-webkit-input-placeholder {
  color: #999;
}
input.form-item::-moz-input-placeholder, textarea.form-item::-moz-input-placeholder {
  color: #999;
}
input.form-item:-ms-input-placeholder, textarea.form-item:-ms-input-placeholder {
  color: #999;
}
input.form-item::-ms-input-placeholder, textarea.form-item::-ms-input-placeholder {
  color: #999;
}

select.form-item {
  display: block;
  box-sizing: border-box;
  border: 1px solid #999;
  padding: 9px 0 11px 5px;
  font-size: 1.06667rem;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  background: #fff;
  color: #333;
}

input.form-item {
  width: 100%;
}

input.form-item.zip {
  width: 200px;
}

textarea.form-item {
  width: 100%;
  height: 180px;
}

select.form-item.form-item--num-value {
  direction: rtl;
  padding-left: 0;
  padding-right: 5px;
}

input.form-item.form-item--num-value {
  text-align: right;
}

input.form-item.form-item--inline,
select.form-item.form-item--inline {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}

input.label-checkbox_input {
  display: none;
}

input.label-checkbox_input + label,
label.label-checkbox {
  position: relative;
  display: inline-block;
  padding-left: 2em;
  padding-top: 9px;
  padding-bottom: 9px;
  line-height: 1.6;
  min-height: 1.6em;
  vertical-align: middle;
  cursor: pointer;
  text-align: left;
  margin-right: 2em;
}
@media all and (max-width: 480px) {
  input.label-checkbox_input + label,
  label.label-checkbox {
    display: block;
    margin-right: 0;
    margin-bottom: 0.4em;
  }
}
input.label-checkbox_input + label i.label-checkbox__display,
label.label-checkbox i.label-checkbox__display {
  /* チェックボックス枠 */
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.6em;
  display: block;
  box-sizing: border-box;
  width: 1.2em;
  height: 1.2em;
  background-color: #fff;
  border: 1px solid #999;
  content: "";
}
input.label-checkbox_input + label i.label-checkbox__display::before,
label.label-checkbox i.label-checkbox__display::before {
  /* チェックボックス チェックマーク 短辺 透明にして非表示 */
  position: absolute;
  top: 50%;
  left: 0.1em;
  margin-top: 0;
  display: block;
  width: 0.3em;
  height: 2px;
  background-color: #460f26;
  border: 1px solid #460f26;
  border-radius: 5px;
  transform: rotate(40deg);
  content: "";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
input.label-checkbox_input + label i.label-checkbox__display::after,
label.label-checkbox i.label-checkbox__display::after {
  /* チェックボックス チェックマーク 長辺 透明にして非表示 */
  position: absolute;
  top: 50%;
  left: 0.3em;
  margin-top: -0.1em;
  display: block;
  width: 0.7em;
  height: 2px;
  background-color: #460f26;
  border: 1px solid #460f26;
  border-radius: 5px;
  transform: rotate(-40deg);
  content: "";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

span.designed-label-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 2em;
  margin-right: 2em;
  line-height: 1.6;
  vertical-align: middle;
  text-align: left;
}
span.designed-label-text:last-child {
  margin-right: 0;
}
span.designed-label-text input.label-checkbox_input {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: inline-block;
  width: 2em;
  padding-left: 0;
  margin-right: 0;
  height: 1.6em;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
span.designed-label-text label {
  display: inline;
}
span.designed-label-text input.label-checkbox_input + label,
span.designed-label-text label.label-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 2em;
  padding-left: 0;
  margin-right: 0;
  height: 1.6em;
}

input.label-checkbox_input.label-checkbox_input--radio + label i.label-checkbox__display,
label.label-checkbox.label-checkbox--radio i.label-checkbox__display {
  border-radius: 100%;
}

input.label-checkbox_input:checked + label i.label-checkbox__display::before,
input.label-checkbox_input:checked + .label-checkbox_frame label.label-checkbox i.label-checkbox__display::before,
label.label-checkbox.is--checked i.label-checkbox__display::before {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
  -o-transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
  -webkit-transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
  transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
}
input.label-checkbox_input:checked + label i.label-checkbox__display::after,
input.label-checkbox_input:checked + .label-checkbox_frame label.label-checkbox i.label-checkbox__display::after,
label.label-checkbox.is--checked i.label-checkbox__display::after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
  -o-transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
  -webkit-transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
  transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
}

em.required {
  display: inline-block;
  background: #c00;
  color: #fff;
  font-size: 0.8em;
  line-height: 1;
  padding: 0.3em 0.3em 0.2em;
  border-radius: 5px;
}

dl.form-table dt {
  margin-top: 50px;
  font-weight: bold;
  font-size: 1.2rem;
}

.form-item_wrap + *,
.form-item_wrap {
  margin-top: 10px;
}

.confirm-input-value {
  font-size: 1.06667rem;
}
.confirm-input-value em {
  font-weight: bold;
  font-size: 1.73333rem;
}

.alert-text {
  color: #c00;
  font-weight: bold;
}

/* Scss Document */
