@charset "UTF-8";
/*
Site Structur
*/
/*
not required
*/
/*
0                   ~   $sp-max-width       :   sp
$sp-max-width + 1   ~   $pc-min-width - 1   :   tab
$pc-min-width       ~                       :   pc
*/
/*
FOX CSS 3.0.0
by Ronan Levesque - CC BY 3.0 license

Includes Normalize by Nicolas Gallagher
More info => http://necolas.github.io/normalize.css/
*/
/*-------------------------*/
/* +RESETS                 */
/*-------------------------*/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, Sans-serif;
  color: #000;
  background: #fff;
}

html, body, blockquote, form {
  margin: 0;
  padding: 0;
}

blockquote, code, embed, iframe, img, input, object, pre, table, td, textarea, video {
  max-width: 100%;
  height: auto;
}

a img, form, fieldset {
  border: none;
}

input, button, select {
  vertical-align: middle;
}

textarea {
  vertical-align: top;
}

abbr {
  cursor: help;
  border-bottom: 1px dotted #bbb;
}

blockquote p, button, input, li h1, li h2, li h3, li h4, li h5, li h6, li li, li p, select, td p, th p {
  font-size: 100%;
}

/*-------------------------*/
/* +NORMALIZE              */
/*-------------------------*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*-------------------------*/
/* +UTILS                  */
/*-------------------------*/
.fx-txt-left {
  text-align: left;
}

.fx-txt-right {
  text-align: right;
}

.fx-txt-center {
  text-align: center;
}

.fx-ellip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fx-left {
  float: left;
}

.fx-right {
  float: right;
}

.fx-center {
  margin: auto;
}

.fx-clearfix:before, .fx-clearfix:after {
  content: "";
  display: table;
}

.fx-clearfix:after {
  clear: both;
}

.fx-clear {
  clear: both;
}

.fx-inline {
  display: inline;
}

.fx-inlineb {
  display: inline-block;
}

.fx-valign {
  vertical-align: middle;
}

.fx-hidden {
  position: absolute;
  left: -9999px;
  text-indent: -9999px;
  overflow: hidden;
}

.fx-no-display {
  display: none;
}

/*-------------------------*/
/* +GRID                   */
/*-------------------------*/
.fx-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fx-row + .fx-row {
  margin-top: 0;
}

.fx-row-start-xs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.fx-row-center-xs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fx-row-end-xs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.fx-row-between-xs {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fx-row-around-xs {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (min-width: 740px) {
  .fx-row-start-s {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .fx-row-center-s {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fx-row-end-s {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .fx-row-between-s {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .fx-row-around-s {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media screen and (min-width: 940px) {
  .fx-row-start-m {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .fx-row-center-m {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fx-row-end-m {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .fx-row-between-m {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .fx-row-around-m {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media screen and (min-width: 1024px) {
  .fx-row-start-l {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .fx-row-center-l {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fx-row-end-l {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .fx-row-between-l {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .fx-row-around-l {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.flex-vertical-centering {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fx-row-reverse-xs {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 740px) {
  .fx-row-reverse-s {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 940px) {
  .fx-row-reverse-m {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1024px) {
  .fx-row-reverse-l {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
}

[class*="fx-col"] {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  -ms-flex: 1 1 100%;
  -webkit-flex: 1 1 100%;
}

.fx-col-10-xs {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  max-width: 10%;
  -ms-flex: 1 1 10%;
  -webkit-flex: 1 1 10%;
}

.fx-col-15-xs {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  max-width: 15%;
  -ms-flex: 1 1 15%;
  -webkit-flex: 1 1 15%;
}

.fx-col-20-xs {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
  -ms-flex: 1 1 20%;
  -webkit-flex: 1 1 20%;
}

.fx-col-25-xs {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  -ms-flex: 1 1 25%;
  -webkit-flex: 1 1 25%;
}

.fx-col-30-xs {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  max-width: 30%;
  -ms-flex: 1 1 30%;
  -webkit-flex: 1 1 30%;
}

.fx-col-33-xs {
  -ms-flex-preferred-size: 33.3333%;
      flex-basis: 33.3333%;
  max-width: 33.3333%;
  -ms-flex: 1 1 33.3333%;
  -webkit-flex: 1 1 33.3333%;
}

.fx-col-35-xs {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  max-width: 35%;
  -ms-flex: 1 1 35%;
  -webkit-flex: 1 1 35%;
}

.fx-col-40-xs {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  max-width: 40%;
  -ms-flex: 1 1 40%;
  -webkit-flex: 1 1 40%;
}

.fx-col-45-xs {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  max-width: 45%;
  -ms-flex: 1 1 45%;
  -webkit-flex: 1 1 45%;
}

.fx-col-50-xs {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  -ms-flex: 1 1 50%;
  -webkit-flex: 1 1 50%;
}

.fx-col-55-xs {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
  max-width: 55%;
  -ms-flex: 1 1 55%;
  -webkit-flex: 1 1 55%;
}

.fx-col-60-xs {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  max-width: 60%;
  -ms-flex: 1 1 60%;
  -webkit-flex: 1 1 60%;
}

.fx-col-65-xs {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  max-width: 65%;
  -ms-flex: 1 1 65%;
  -webkit-flex: 1 1 65%;
}

.fx-col-66-xs {
  -ms-flex-preferred-size: 66.6666%;
      flex-basis: 66.6666%;
  max-width: 66.6666%;
  -ms-flex: 1 1 66.6666%;
  -webkit-flex: 1 1 66.6666%;
}

.fx-col-70-xs {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  max-width: 70%;
  -ms-flex: 1 1 70%;
  -webkit-flex: 1 1 70%;
}

.fx-col-75-xs {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
  -ms-flex: 1 1 75%;
  -webkit-flex: 1 1 75%;
}

.fx-col-80-xs {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  max-width: 80%;
  -ms-flex: 1 1 80%;
  -webkit-flex: 1 1 80%;
}

.fx-col-85-xs {
  -ms-flex-preferred-size: 85%;
      flex-basis: 85%;
  max-width: 85%;
  -ms-flex: 1 1 85%;
  -webkit-flex: 1 1 85%;
}

.fx-col-90-xs {
  -ms-flex-preferred-size: 90%;
      flex-basis: 90%;
  max-width: 90%;
  -ms-flex: 1 1 90%;
  -webkit-flex: 1 1 90%;
}

.fx-col-95-xs {
  -ms-flex-preferred-size: 95%;
      flex-basis: 95%;
  max-width: 95%;
  -ms-flex: 1 1 95%;
  -webkit-flex: 1 1 95%;
}

.fx-col-100-xs {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  -ms-flex: 1 1 100%;
  -webkit-flex: 1 1 100%;
}

@media screen and (min-width: 740px) {
  .fx-col-10-s {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%;
    -ms-flex: 1 1 10%;
    -webkit-flex: 1 1 10%;
  }
  .fx-col-15-s {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    max-width: 15%;
    -ms-flex: 1 1 15%;
    -webkit-flex: 1 1 15%;
  }
  .fx-col-20-s {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
    -ms-flex: 1 1 20%;
    -webkit-flex: 1 1 20%;
  }
  .fx-col-25-s {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    -ms-flex: 1 1 25%;
    -webkit-flex: 1 1 25%;
  }
  .fx-col-30-s {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
    -ms-flex: 1 1 30%;
    -webkit-flex: 1 1 30%;
  }
  .fx-col-33-s {
    -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
    max-width: 33.3333%;
    -ms-flex: 1 1 33.3333%;
    -webkit-flex: 1 1 33.3333%;
  }
  .fx-col-35-s {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    max-width: 35%;
    -ms-flex: 1 1 35%;
    -webkit-flex: 1 1 35%;
  }
  .fx-col-40-s {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
    -ms-flex: 1 1 40%;
    -webkit-flex: 1 1 40%;
  }
  .fx-col-45-s {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    max-width: 45%;
    -ms-flex: 1 1 45%;
    -webkit-flex: 1 1 45%;
  }
  .fx-col-50-s {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    -ms-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
  }
  .fx-col-55-s {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
    max-width: 55%;
    -ms-flex: 1 1 55%;
    -webkit-flex: 1 1 55%;
  }
  .fx-col-60-s {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    -ms-flex: 1 1 60%;
    -webkit-flex: 1 1 60%;
  }
  .fx-col-65-s {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    max-width: 65%;
    -ms-flex: 1 1 65%;
    -webkit-flex: 1 1 65%;
  }
  .fx-col-66-s {
    -ms-flex-preferred-size: 66.6666%;
        flex-basis: 66.6666%;
    max-width: 66.6666%;
    -ms-flex: 1 1 66.6666%;
    -webkit-flex: 1 1 66.6666%;
  }
  .fx-col-70-s {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    max-width: 70%;
    -ms-flex: 1 1 70%;
    -webkit-flex: 1 1 70%;
  }
  .fx-col-75-s {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    -ms-flex: 1 1 75%;
    -webkit-flex: 1 1 75%;
  }
  .fx-col-80-s {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    max-width: 80%;
    -ms-flex: 1 1 80%;
    -webkit-flex: 1 1 80%;
  }
  .fx-col-85-s {
    -ms-flex-preferred-size: 85%;
        flex-basis: 85%;
    max-width: 85%;
    -ms-flex: 1 1 85%;
    -webkit-flex: 1 1 85%;
  }
  .fx-col-90-s {
    -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
    max-width: 90%;
    -ms-flex: 1 1 90%;
    -webkit-flex: 1 1 90%;
  }
  .fx-col-95-s {
    -ms-flex-preferred-size: 95%;
        flex-basis: 95%;
    max-width: 95%;
    -ms-flex: 1 1 95%;
    -webkit-flex: 1 1 95%;
  }
  .fx-col-100-s {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    -ms-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
  }
}

@media screen and (min-width: 940px) {
  .fx-col-10-m {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%;
    -ms-flex: 1 1 10%;
    -webkit-flex: 1 1 10%;
  }
  .fx-col-15-m {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    max-width: 15%;
    -ms-flex: 1 1 15%;
    -webkit-flex: 1 1 15%;
  }
  .fx-col-20-m {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
    -ms-flex: 1 1 20%;
    -webkit-flex: 1 1 20%;
  }
  .fx-col-25-m {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    -ms-flex: 1 1 25%;
    -webkit-flex: 1 1 25%;
  }
  .fx-col-30-m {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
    -ms-flex: 1 1 30%;
    -webkit-flex: 1 1 30%;
  }
  .fx-col-33-m {
    -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
    max-width: 33.3333%;
    -ms-flex: 1 1 33.3333%;
    -webkit-flex: 1 1 33.3333%;
  }
  .fx-col-35-m {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    max-width: 35%;
    -ms-flex: 1 1 35%;
    -webkit-flex: 1 1 35%;
  }
  .fx-col-40-m {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
    -ms-flex: 1 1 40%;
    -webkit-flex: 1 1 40%;
  }
  .fx-col-45-m {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    max-width: 45%;
    -ms-flex: 1 1 45%;
    -webkit-flex: 1 1 45%;
  }
  .fx-col-50-m {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    -ms-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
  }
  .fx-col-55-m {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
    max-width: 55%;
    -ms-flex: 1 1 55%;
    -webkit-flex: 1 1 55%;
  }
  .fx-col-60-m {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    -ms-flex: 1 1 60%;
    -webkit-flex: 1 1 60%;
  }
  .fx-col-65-m {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    max-width: 65%;
    -ms-flex: 1 1 65%;
    -webkit-flex: 1 1 65%;
  }
  .fx-col-66-m {
    -ms-flex-preferred-size: 66.6666%;
        flex-basis: 66.6666%;
    max-width: 66.6666%;
    -ms-flex: 1 1 66.6666%;
    -webkit-flex: 1 1 66.6666%;
  }
  .fx-col-70-m {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    max-width: 70%;
    -ms-flex: 1 1 70%;
    -webkit-flex: 1 1 70%;
  }
  .fx-col-75-m {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    -ms-flex: 1 1 75%;
    -webkit-flex: 1 1 75%;
  }
  .fx-col-80-m {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    max-width: 80%;
    -ms-flex: 1 1 80%;
    -webkit-flex: 1 1 80%;
  }
  .fx-col-85-m {
    -ms-flex-preferred-size: 85%;
        flex-basis: 85%;
    max-width: 85%;
    -ms-flex: 1 1 85%;
    -webkit-flex: 1 1 85%;
  }
  .fx-col-90-m {
    -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
    max-width: 90%;
    -ms-flex: 1 1 90%;
    -webkit-flex: 1 1 90%;
  }
  .fx-col-95-m {
    -ms-flex-preferred-size: 95%;
        flex-basis: 95%;
    max-width: 95%;
    -ms-flex: 1 1 95%;
    -webkit-flex: 1 1 95%;
  }
  .fx-col-100-m {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    -ms-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
  }
}

@media screen and (min-width: 1024px) {
  .fx-col-10-l {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%;
    -ms-flex: 1 1 10%;
    -webkit-flex: 1 1 10%;
  }
  .fx-col-15-l {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    max-width: 15%;
    -ms-flex: 1 1 15%;
    -webkit-flex: 1 1 15%;
  }
  .fx-col-20-l {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
    -ms-flex: 1 1 20%;
    -webkit-flex: 1 1 20%;
  }
  .fx-col-25-l {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    -ms-flex: 1 1 25%;
    -webkit-flex: 1 1 25%;
  }
  .fx-col-30-l {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
    -ms-flex: 1 1 30%;
    -webkit-flex: 1 1 30%;
  }
  .fx-col-33-l {
    -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
    max-width: 33.3333%;
    -ms-flex: 1 1 33.3333%;
    -webkit-flex: 1 1 33.3333%;
  }
  .fx-col-35-l {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    max-width: 35%;
    -ms-flex: 1 1 35%;
    -webkit-flex: 1 1 35%;
  }
  .fx-col-40-l {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
    -ms-flex: 1 1 40%;
    -webkit-flex: 1 1 40%;
  }
  .fx-col-45-l {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    max-width: 45%;
    -ms-flex: 1 1 45%;
    -webkit-flex: 1 1 45%;
  }
  .fx-col-50-l {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    -ms-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
  }
  .fx-col-55-l {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
    max-width: 55%;
    -ms-flex: 1 1 55%;
    -webkit-flex: 1 1 55%;
  }
  .fx-col-60-l {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    -ms-flex: 1 1 60%;
    -webkit-flex: 1 1 60%;
  }
  .fx-col-65-l {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    max-width: 65%;
    -ms-flex: 1 1 65%;
    -webkit-flex: 1 1 65%;
  }
  .fx-col-66-l {
    -ms-flex-preferred-size: 66.6666%;
        flex-basis: 66.6666%;
    max-width: 66.6666%;
    -ms-flex: 1 1 66.6666%;
    -webkit-flex: 1 1 66.6666%;
  }
  .fx-col-70-l {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    max-width: 70%;
    -ms-flex: 1 1 70%;
    -webkit-flex: 1 1 70%;
  }
  .fx-col-75-l {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    -ms-flex: 1 1 75%;
    -webkit-flex: 1 1 75%;
  }
  .fx-col-80-l {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    max-width: 80%;
    -ms-flex: 1 1 80%;
    -webkit-flex: 1 1 80%;
  }
  .fx-col-85-l {
    -ms-flex-preferred-size: 85%;
        flex-basis: 85%;
    max-width: 85%;
    -ms-flex: 1 1 85%;
    -webkit-flex: 1 1 85%;
  }
  .fx-col-90-l {
    -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
    max-width: 90%;
    -ms-flex: 1 1 90%;
    -webkit-flex: 1 1 90%;
  }
  .fx-col-95-l {
    -ms-flex-preferred-size: 95%;
        flex-basis: 95%;
    max-width: 95%;
    -ms-flex: 1 1 95%;
    -webkit-flex: 1 1 95%;
  }
  .fx-col-100-l {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    -ms-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
  }
}

.fx-col-top-xs {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.fx-col-center-xs {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.fx-col-bottom-xs {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media screen and (min-width: 740px) {
  .fx-col-top-s {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .fx-col-center-s {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .fx-col-bottom-s {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

@media screen and (min-width: 940px) {
  .fx-col-top-m {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .fx-col-center-m {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .fx-col-bottom-m {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

@media screen and (min-width: 1024px) {
  .fx-col-top-l {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .fx-col-center-l {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .fx-col-bottom-l {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.fx-col-fix-50 {
  -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
}

.fx-col-fix-50 + .fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 50px);
      flex-basis: calc(100% - 50px);
  width: calc(100% - 50px);
}

.fx-col-fix-100 {
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
}

.fx-col-fix-100 + .fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 100px);
      flex-basis: calc(100% - 100px);
  width: calc(100% - 100px);
}

.fx-col-fix-150 {
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
}

.fx-col-fix-150 + .fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 150px);
      flex-basis: calc(100% - 150px);
  width: calc(100% - 150px);
}

.fx-col-fix-200 {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
}

.fx-col-fix-200 + .fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 200px);
      flex-basis: calc(100% - 200px);
  width: calc(100% - 200px);
}

.fx-col-fix-250 {
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
}

.fx-col-fix-250 + .fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 250px);
      flex-basis: calc(100% - 250px);
  width: calc(100% - 250px);
}

.fx-col-fix-300 {
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
}

.fx-col-fix-300 + .fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 300px);
      flex-basis: calc(100% - 300px);
  width: calc(100% - 300px);
}

.fx-col-fix-350 {
  -ms-flex-preferred-size: 350px;
      flex-basis: 350px;
}

.fx-col-fix-350 + .fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 350px);
      flex-basis: calc(100% - 350px);
  width: calc(100% - 350px);
}

.fx-col-fix-400 {
  -ms-flex-preferred-size: 400px;
      flex-basis: 400px;
}

.fx-col-fix-400 + .fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 400px);
      flex-basis: calc(100% - 400px);
  width: calc(100% - 400px);
}

.fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 50px);
      flex-basis: calc(100% - 50px);
  width: calc(100% - 50px);
}

.fx-col-auto + .fx-col-fix-50 {
  -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
}

.fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 100px);
      flex-basis: calc(100% - 100px);
  width: calc(100% - 100px);
}

.fx-col-auto + .fx-col-fix-100 {
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
}

.fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 150px);
      flex-basis: calc(100% - 150px);
  width: calc(100% - 150px);
}

.fx-col-auto + .fx-col-fix-150 {
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
}

.fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 200px);
      flex-basis: calc(100% - 200px);
  width: calc(100% - 200px);
}

.fx-col-auto + .fx-col-fix-200 {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
}

.fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 250px);
      flex-basis: calc(100% - 250px);
  width: calc(100% - 250px);
}

.fx-col-auto + .fx-col-fix-250 {
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
}

.fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 300px);
      flex-basis: calc(100% - 300px);
  width: calc(100% - 300px);
}

.fx-col-auto + .fx-col-fix-300 {
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
}

.fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 350px);
      flex-basis: calc(100% - 350px);
  width: calc(100% - 350px);
}

.fx-col-auto + .fx-col-fix-350 {
  -ms-flex-preferred-size: 350px;
      flex-basis: 350px;
}

.fx-col-auto {
  -ms-flex-preferred-size: calc(100% - 400px);
      flex-basis: calc(100% - 400px);
  width: calc(100% - 400px);
}

.fx-col-auto + .fx-col-fix-400 {
  -ms-flex-preferred-size: 400px;
      flex-basis: 400px;
}

/*-------------------------*/
/* +GRID IE9               */
/*-------------------------*/
.ie9 .fx-row {
  font-size: 0;
}

.ie9 [class*="fx-row-reverse"] {
  direction: rtl;
}

.ie9 [class*="fx-row-reverse"] > * {
  direction: ltr;
}

.ie9 [class*="fx-col"] {
  display: inline-block;
  font-size: 16px;
}

.ie9 .fx-col-10-xs {
  width: 10%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-15-xs {
  width: 15%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-20-xs {
  width: 20%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-25-xs {
  width: 25%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-30-xs {
  width: 30%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-33-xs {
  width: 33.3333%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-35-xs {
  width: 35%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-40-xs {
  width: 40%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-45-xs {
  width: 45%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-50-xs {
  width: 50%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-55-xs {
  width: 55%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-60-xs {
  width: 60%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-65-xs {
  width: 65%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-66-xs {
  width: 66.6666%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-70-xs {
  width: 70%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-75-xs {
  width: 75%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-80-xs {
  width: 80%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-85-xs {
  width: 85%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-90-xs {
  width: 90%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-95-xs {
  width: 95%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

.ie9 .fx-col-100-xs {
  width: 100%;
}

.ie9 .fx-row-start-xs {
  text-align: left;
}

.ie9 .fx-row-end-xs {
  text-align: right;
}

.ie9 .fx-row-center-xs, .ie9 .fx-row-between-xs, .ie9 .fx-row-around-xs {
  text-align: center;
}

@media screen and (min-width: 740px) {
  .ie9 .fx-col-10-s {
    width: 10%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-15-s {
    width: 15%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-20-s {
    width: 20%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-25-s {
    width: 25%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-30-s {
    width: 30%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-33-s {
    width: 33.3333%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-35-s {
    width: 35%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-40-s {
    width: 40%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-45-s {
    width: 45%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-50-s {
    width: 50%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-55-s {
    width: 55%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-60-s {
    width: 60%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-65-s {
    width: 65%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-66-s {
    width: 66.6666%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-70-s {
    width: 70%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-75-s {
    width: 75%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-80-s {
    width: 80%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-85-s {
    width: 85%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-90-s {
    width: 90%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-95-s {
    width: 95%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
  .ie9 .fx-col-100-s {
    width: 100%;
  }
  .ie9 .fx-row-start-s {
    text-align: left;
  }
  .ie9 .fx-row-center-s, .ie9 .fx-row-between-s, .ie9 .fx-row-around-s {
    text-center: right;
  }
}

@media screen and (min-width: 940px) {
  .ie9 .fx-col-10-m {
    width: 10%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-15-m {
    width: 15%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-20-m {
    width: 20%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-25-m {
    width: 25%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-30-m {
    width: 30%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-33-m {
    width: 33.3333%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-35-m {
    width: 35%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-40-m {
    width: 40%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-45-m {
    width: 45%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-50-m {
    width: 50%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-55-m {
    width: 55%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-60-m {
    width: 60%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-65-m {
    width: 65%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-66-m {
    width: 66.6666%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-70-m {
    width: 70%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-75-m {
    width: 75%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-80-m {
    width: 80%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-85-m {
    width: 85%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-90-m {
    width: 90%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-95-m {
    width: 95%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
  .ie9 .fx-col-100-m {
    width: 100%;
  }
  .ie9 .fx-row-start-m {
    text-align: left;
  }
  .ie9 .fx-row-center-m, .ie9 .fx-row-between-m, .ie9 .fx-row-around-m {
    text-center: right;
  }
}

@media screen and (min-width: 1024px) {
  .ie9 .fx-col-10-l {
    width: 10%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-15-l {
    width: 15%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-20-l {
    width: 20%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-25-l {
    width: 25%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-30-l {
    width: 30%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-33-l {
    width: 33.3333%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-35-l {
    width: 35%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-40-l {
    width: 40%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-45-l {
    width: 45%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-50-l {
    width: 50%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-55-l {
    width: 55%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-60-l {
    width: 60%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-65-l {
    width: 65%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-66-l {
    width: 66.6666%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-70-l {
    width: 70%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-75-l {
    width: 75%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-80-l {
    width: 80%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-85-l {
    width: 85%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-90-l {
    width: 90%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-95-l {
    width: 95%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
  .ie9 .fx-col-100-l {
    width: 100%;
  }
  .ie9 .fx-row-start-l {
    text-align: left;
  }
  .ie9 .fx-row-center-l, .ie9 .fx-row-between-l, .ie9 .fx-row-around-l {
    text-center: right;
  }
}

.ie9 .fx-col {
  width: 100%;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*
html5 doctor reset cssでは、box-sizing: border-box;が無い
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/*
Reset Form Design
  */
input[type='text'], input[type='email'], input[type='tel'] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + label {
  background: #ff0000;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + label {
  background: #ff0000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

button,
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

/*
Reset SmartPhone FormDesign
*/
input[type="submit"],
input[type="button"],
input[type='text'], input[type='email'], input[type='tel'] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.clear:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/*
フォントサイズの調整
htmlのベースを10px
bodyを16pxにして、あとはremで調整
*/
html {
  font-size: 62.5%;
}

/* body font-size 16px*/
body {
  font-size: 1.6em;
  position: relative;
  word-break: break-word;
}

h1 {
  font-size: 5rem;
  /* 50px */
}

p {
  font-size: 1.5rem;
  /* 15px */
}

p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

a {
  color: #252525;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  width: auto;
  max-width: 100%;
}

/*
input[type="checkbox"] {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
}
*/
.alignnone {
  margin: 0rem;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 0rem auto 0rem auto;
}

.alignright {
  float: right;
  margin: 0rem;
}

.alignleft {
  float: left;
  margin: 0rem;
}

.aligncenter {
  display: block;
  margin: 0rem auto 0rem auto;
}

img.alignright {
  float: right;
  margin: 0rem;
  padding: 0rem 1.0rem 1.0rem;
}

img.alignnone {
  margin: 0;
  padding: 0rem 1.0rem 1.0rem;
}

img.alignleft {
  float: left;
  margin: 0;
  padding: 0rem 1.0rem 1.0rem;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0rem 1.0rem 1.0rem;
}

.wp-caption {
  background: #fff;
  /*border: 1rem solid #f0f0f0;*/
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 0rem 1.0rem 1.0rem;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 0.5rem 2.0rem 2.0rem 0;
}

.wp-caption.alignleft {
  margin: 0.5rem 2.0rem 2.0rem 0;
}

.wp-caption.alignright {
  margin: 0.5rem 0 2.0rem 2.0rem;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 1.1rem;
  line-height: 1.7rem;
  margin: 0;
  padding: 0 0.4rem 0.5rem;
}

body {
  position: relative;
  overflow-x: hidden;
}

body:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.container {
  width: 98%;
  max-width: 1200px;
  margin: auto;
}

.Footer {
  margin: 60px 0 0;
}

.Contents .Section {
  position: relative;
  z-index: 2;
  padding: 60px 0 0;
}

.Contents .Section:first-child {
  padding-top: 60px;
}

.Contents .Section:last-child {
  padding-bottom: 0;
}

.Contents .Section h2, .Contents .Section h3, .Contents .Section h4, .Contents .Section h5 {
  font-weight: bold;
}

.Contents .Section h2 {
  font-size: 2.5rem;
}

.Contents .Section h3 {
  font-size: 2.0rem;
}

.Contents .Section h4, .Contents .Section h5 {
  font-size: 1.8rem;
}

@media only screen and (max-width: 740px) {
  .Contents .Section {
    padding: 30px 0 0;
  }
}

.home .Contents .Section:first-child {
  padding-top: 0;
}

.Section [class*="fx-col"] {
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 0;
}

body {
  font-size: 15px;
}

p {
  font-size: 15px;
  line-height: 150%;
}

@media only screen and (max-width: 740px) {
  p {
    font-size: 13px;
  }
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 740px) {
  .container {
    width: 90%;
  }
}

.Contents .Section h2 {
  font-weight: normal;
}

@media only screen and (max-width: 740px) {
  .Contents .Section {
    padding: 100px 0;
  }
  .Contents .Section h2 {
    font-size: 20px;
  }
}

.Contents a:hover {
  opacity: 0.8;
}

.blur {
  -webkit-filter: blur(20px);
  -moz-filter: blur(20px);
  -ms-filter: blur(20px);
  -o-filter: blur(20px);
  filter: blur(20px);
}

.blackandwhite img, .blackandwhitegal img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
}

.blackandwhite img:hover, .blackandwhitegal img:hover {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.bx-wrapper {
  margin-bottom: 0 !important;
  -webkit-box-shadow: 0 0 0 #fff !important;
          box-shadow: 0 0 0 #fff !important;
  padding: 0 !important;
  border: none !important;
}

.bx-wrapper .bx-viewport {
  background: transparent !important;
  -webkit-box-shadow: 0 0 0 #fff;
          box-shadow: 0 0 0 #fff;
  left: 0 !important;
  border: none !important;
  z-index: 10 !important;
}

#imageGallery li {
  text-align: center;
}

img.company_slide_image.vertical {
  display: inline-block;
}

/*
//pages
@import "./pages/contact";
*/
.Header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 15px;
}

.Header .Header__main {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.Header .Header__head {
  font-weight: normal;
  font-size: 12px;
}

.Header .Header__head .number {
  display: block;
  margin-bottom: 5px;
}

.Header .Header__head .Header__sub > * {
  display: inline-block;
  vertical-align: middle;
}

.Header .Header__head .Header__sub .opening_time {
  margin-left: 10px;
}

.Header .Header__body {
  text-align: right;
}

@media only screen and (max-width: 740px) {
  .Header .Header__head {
    text-align: center;
  }
  .Header .Header__head .number {
    margin-bottom: 10px;
  }
  .Header .Header__head .Header__sub > * {
    display: block;
    margin-bottom: 10px;
  }
  .Header .Header__body {
    margin-top: 10px;
    text-align: center;
  }
}

.home .Header .Header__head {
  color: #fff;
}

.Footer {
  background: #f2f8ff;
  position: relative;
}

.Footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  -webkit-transform: skewY(-9deg);
  transform: skewY(-9deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #f2f8ff;
}

.Footer__head {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 10px;
}

.Footer__sub {
  margin-bottom: 10px;
}

.Footer__main > .fx-row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.Footer .flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.Footer__head {
  margin-bottom: 15px;
}

.Footer__logo {
  margin-bottom: 25px;
}

.Footer .ShopImageContainer {
  text-align: center;
}

@media only screen and (min-width: 741px) {
  .Footer .ShopImageContainer {
    padding: 0 2% 0 0;
  }
}

.Footer .CompanyInfoSection table td,
.Footer .CompanyInfoSection table th {
  font-weight: normal;
  text-align: left;
  font-size: 14px;
  padding: 8px;
}

@media only screen and (max-width: 740px) {
  .Footer .CompanyInfoSection {
    margin-bottom: 30px;
  }
}

.Footer .GoogleMapSection__main {
  position: relative;
  padding: 26% 0;
}

.Footer .GoogleMapSection__main iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
}

.Footer .GoogleMapSection p {
  font-size: 12px;
}

.Footer .GoogleMapSection__foot {
  text-align: center;
  margin-top: 15px;
}

.Footer .GoogleMapSection__foot .fx-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.Footer .GoogleMapSection .GoogleMapButton {
  display: block;
  padding: 10px;
  text-align: center;
  color: #fff;
  background-color: #0094ff;
  border-radius: 5px;
}

@media only screen and (max-width: 740px) {
  .Footer .GoogleMapSection {
    margin-top: 30px;
  }
  .Footer .GoogleMapSection__main {
    padding: 50% 0;
  }
  .Footer .GoogleMapSection__foot .fx-row > p {
    margin-bottom: 10px;
  }
}

.Contact {
  padding-top: 80px;
}

.Contact__head {
  font-weight: normal;
  margin-bottom: 10px;
  font-size: 2rem;
}

.Contact__sub {
  font-size: 13px;
}

.Contact__body {
  margin-top: 30px;
}

@media only screen and (min-width: 741px) {
  .Contact__body .firstcontactform {
    padding-right: 5%;
  }
  .Contact__body .secondcontactform {
    padding-left: 5%;
  }
}

.Contact__body dl dt {
  font-size: 13px;
  color: #00a3d0;
  padding-bottom: 5px;
}

.Contact__body dl dd {
  padding-bottom: 12px;
  font-size: 13px;
}

.Contact__body dl dd .CheckBox {
  margin-top: 5px;
}

.Contact__body dl dd .CheckBox__item {
  padding-bottom: 10px;
}

.Contact__body dl dd input[type="text"],
.Contact__body dl dd textarea {
  width: 100%;
  padding: 4px;
  border: 1px solid #000;
  background-color: #fff;
}

.Contact__body input[type="checkbox"] {
  border: 1px solid #000;
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.Contact__body input[type="checkbox"] + label {
  vertical-align: middle;
  display: inline-block;
}

.Contact__body p.confirm_checkbox_container {
  margin: 45px 0;
  text-align: center;
  color: #00a3d0;
}

@media only screen and (max-width: 740px) {
  .Contact__body p.confirm_checkbox_container {
    text-align: left;
  }
  .Contact__body p.confirm_checkbox_container span.wpcf7-list-item {
    margin: 0 !important;
  }
}

.Contact__body .FormButton {
  text-align: center;
}

.Contact__body .FormButton__item {
  display: inline-block;
  max-width: 130px;
  margin: 0 10px;
  border-radius: 5px;
  width: calc(50% - 20px);
  background-color: #0094ff;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

.Contact__body .FormButton__item input[type="button"],
.Contact__body .FormButton__item input[type="submit"] {
  padding: 10px 20px 8px;
  line-height: 1;
}

.wpcf7-form .confirmpageopen {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed .startopen {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed .confirmpageopen {
  display: inline-block;
}

.wpcf7-form.custom-wpcf7c-confirmed .wpcf7c-conf {
  border: none;
}

.copyright {
  text-align: right;
  margin: 45px auto 0;
}

.copyright img {
  width: 330px;
}

.StepHomeMark {
  position: relative;
}

.StepHomeMark > div {
  padding: 50px 30px;
}

.StepHomeMark .StepHomeMark__mark {
  -webkit-transform: rotate(-0.5deg);
          transform: rotate(-0.5deg);
  display: inline-block;
  position: absolute;
  padding: 0 30px;
}

.StepHomeMark__white {
  background: #fff;
}

@media only screen and (max-width: 740px) {
  .StepHomeMark__white {
    padding: 0 !important;
  }
}

.StepHomeMark__blue {
  position: relative;
  z-index: 0;
  padding: 70px 30px !important;
}

.StepHomeMark__blue::after {
  content: "";
  position: absolute;
  left: 0;
  top: 110px;
  -webkit-transform: skewY(-9deg);
          transform: skewY(-9deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #f2f8ff;
}

@media only screen and (min-width: 741px) {
  .home {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(./images/home/eyecath_bg.png);
    background-size: contain;
    background-position: top;
  }
}

@media only screen and (max-width: 740px) {
  .home .EyeCatchSection {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(./images/home/eyecath_bg.png);
    background-size: cover;
    background-position: top;
  }
}

.Wrapper {
  background: #f2f8ff;
}

.InnerWrapper {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./images/common/wrapper_bg.svg);
  background-size: contain;
  background-position: bottom;
  padding-bottom: 45px;
}

.grecaptcha-badge {
  display: none;
}

.home .grecaptcha-badge {
  display: block;
}

.EyeCatchSection {
  position: relative;
  padding: 26% 0 15% !important;
}

.EyeCatchSection p {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  color: #fff;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  font-size: 3rem;
  text-shadow: 2px 2px 2px #000;
}

@media only screen and (max-width: 740px) {
  .EyeCatchSection {
    padding: 125% 0 15% !important;
  }
  .EyeCatchSection p {
    font-size: 2.5rem;
  }
}

.RowSection {
  padding: 0px !important;
  margin: 0px !important;
}

@media only screen and (max-width: 740px) {
  .RowSection {
    margin-top: -68px !important;
  }
}

@media only screen and (max-width: 740px) {
  .RowSection .ChildSection > div {
    width: 100%;
    max-width: none;
  }
  .RowSection .BannerSection {
    margin-top: 30px;
  }
  .RowSection .BannerSection img {
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .RowSection .BannerSection {
    text-align: center;
  }
  .RowSection .InfoSectionContainer {
    margin: auto;
  }
}

.InfoSection .InfoSectionContainer {
  background-color: rgba(242, 242, 242, 0.8);
  padding: 22px 20px;
  border-radius: 10px;
  max-width: 390px;
  font-size: 14px;
}

.InfoSection .Info__item {
  margin: 10px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.InfoSection .Info__item.EachInfo .EachInfo__head--inner {
  display: inline-block;
}

.InfoSection .Info__item .EachInfo__head {
  overflow: hidden;
  padding: 5px 3px 4px 5px;
}

.InfoSection .Info__item .scroll {
  text-align: center;
  border: 1px solid #666;
  color: #000000;
  background: #fff;
  overflow: hidden;
  margin-left: 1px;
  background: #ffffff;
  padding: 3px 0px 1px 0;
  overflow: hidden;
  display: block;
}

.InfoSection .Info__item .scroll span {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  line-height: 1em;
  -webkit-animation: scrollAnime 5s linear infinite;
          animation: scrollAnime 5s linear infinite;
}

@-webkit-keyframes scrollAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scrollAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.BannerSection {
  text-align: right;
}

@media only screen and (min-width: 741px) {
  .ItemSection {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
}

.ItemSection .container {
  position: relative;
  overflow: hidden;
}

.ItemSection__head {
  margin-bottom: 50px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.ItemSection__head span {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 5px;
  font-weight: normal;
}

.ItemSection__sub {
  text-align: right;
  margin-bottom: 40px;
}

@media only screen and (max-width: 740px) {
  .ItemSection__sub {
    margin-bottom: 20px;
  }
}

.ItemSection .EachItem {
  padding: 6% 4% 6%;
}

.ItemSection .EachItem__head {
  margin-bottom: 10px;
}

.ItemSection .EachItem__head > * {
  vertical-align: middle;
}

.ItemSection .EachItem .ItemCategory {
  display: inline-block;
  background: #000;
  color: #fff;
  width: 100px;
  text-align: center;
  font-size: 12px;
  padding: 8px;
  line-height: 1.3;
}

.ItemSection .EachItem .ItemCategory.rental_apartment {
  background-color: #009245;
}

.ItemSection .EachItem__body {
  padding: 33%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 740px) {
  .GreetingSection {
    padding-top: 0 !important;
  }
}

.GreetingSection__head {
  margin: 0 0 15px;
  padding: 0;
  color: #0094ff;
  font-weight: normal;
}

.NewTag {
  font-size: 10px;
  color: #fff;
  background: #ed1c24;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 4px 0;
  margin-top: 2px;
}

.single .Contents {
  padding-top: 120px;
}

@media only screen and (max-width: 740px) {
  .SingleItemSection + .ItemSection {
    padding-top: 0;
  }
}

.SingleItemSection .EachItem .ItemCategory {
  display: inline-block;
  background: #000;
  color: #fff;
  width: 100px;
  text-align: center;
  font-size: 12px;
  padding: 8px;
  vertical-align: middle;
  line-height: 1.3;
}

.SingleItemSection .EachItem .ItemCategory.rental_apartment {
  background-color: #009245;
}

.SingleItemSection .EachItem__head {
  margin-bottom: 15px;
}

.SingleItemSection .EachItem__head .fx-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.SingleItemSection .EachItem__head .ItemName {
  display: inline-block;
  vertical-align: middle;
}

.SingleItemSection .EachItem__title {
  vertical-align: middle;
}

@media only screen and (min-width: 741px) {
  .SingleItemSection .EachItem__body .EachContent {
    margin: 30px;
  }
}

@media only screen and (max-width: 740px) {
  .SingleItemSection .EachItem__body .EachContent {
    margin: 30px 0;
  }
}

.SingleItemSection .EachItem__body #PropSlide li {
  overflow: hidden;
}

.SingleItemSection .EachItem__body #PropSlide li img.vertical {
  height: 100%;
  width: auto;
}

.SingleItemSection .EachItem__body #bxPager {
  margin-top: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.SingleItemSection .EachItem__body #bxPager > a {
  -ms-flex-preferred-size: 60px;
      flex-basis: 60px;
  max-width: 60px;
}

.SingleItemSection .EachItem__body #bxPager > a img {
  width: 56px;
  padding: 2px;
}

.SingleItemSection .EachItem__body .ItemOutline__head {
  display: inline-block;
  background: #000;
  color: #fff;
  width: 100px;
  text-align: center;
  font-size: 12px;
  margin-bottom: 10px;
  padding: 8px;
}

.SingleItemSection .EachItem .ItemInfoTable table {
  width: 100%;
  border: 1px solid #b3b3b3;
  border-collapse: collapse;
}

.SingleItemSection .EachItem .ItemInfoTable table th,
.SingleItemSection .EachItem .ItemInfoTable table td {
  text-align: left;
  border: 1px solid #b3b3b3;
  padding: 8px 15px;
  line-height: 1.3;
}

.SingleItemSection .EachItem .ItemInfoTable table th {
  width: 150px;
  background: #f2f2f2;
  color: #0094ff;
}

.SingleItemSection .EachItem__foot {
  margin: 45px auto;
  text-align: center;
}

.SingleItemSection .EachItem__foot img {
  max-width: 300px;
  width: 100%;
}

@media only screen and (min-width: 741px) {
  #youbou,
  #hentou {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #youbou > span,
  #hentou > span {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
    margin: 5px 0;
  }
}

@media only screen and (max-width: 740px) {
  #youbou > span,
  #hentou > span {
    margin: 8px 0;
    display: block;
  }
}

.wpcf7-form-control-wrap.youbou,
.wpcf7-form-control-wrap.hentou {
  display: block;
  width: 100%;
}
