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

.flex-row-jc-centering {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.flex-row-jc-flexend {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.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;
      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;
        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;
        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;
        align-self: center;
  }

  .fx-col-bottom-l {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
[class*=fx-col-fix] {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}
[class*=fx-col-fix] + .fx-col-auto {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}

[class*=fx-col-auto] {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}
[class*=fx-col-auto] + [class*=fx-col-fix] {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}

@media screen and (min-width: 740px) {
  .fx-col-fix-100-s {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
  }
  .fx-col-fix-100-s + .fx-col-auto-100-s {
    -ms-flex-preferred-size: calc(100% - 100px);
        flex-basis: calc(100% - 100px);
    width: calc(100% - 100px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .fx-col-auto-400-s {
    -ms-flex-preferred-size: calc(100% - 400px);
        flex-basis: calc(100% - 400px);
    width: calc(100% - 400px);
  }
  .fx-col-auto-400-s + .fx-col-fix-400-s {
    -ms-flex-preferred-size: 400px;
        flex-basis: 400px;
  }
}
@media screen and (min-width: 940px) {
  .fx-col-fix-100-m {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
  }
  .fx-col-fix-100-m + .fx-col-auto-100-m {
    -ms-flex-preferred-size: calc(100% - 100px);
        flex-basis: calc(100% - 100px);
    width: calc(100% - 100px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .fx-col-auto-400-m {
    -ms-flex-preferred-size: calc(100% - 400px);
        flex-basis: calc(100% - 400px);
    width: calc(100% - 400px);
  }
  .fx-col-auto-400-m + .fx-col-fix-400-m {
    -ms-flex-preferred-size: 400px;
        flex-basis: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .fx-col-fix-100-l {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
  }
  .fx-col-fix-100-l + .fx-col-auto-100-l {
    -ms-flex-preferred-size: calc(100% - 100px);
        flex-basis: calc(100% - 100px);
    width: calc(100% - 100px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .fx-col-auto-400-l {
    -ms-flex-preferred-size: calc(100% - 400px);
        flex-basis: calc(100% - 400px);
    width: calc(100% - 400px);
  }
  .fx-col-auto-400-l + .fx-col-fix-400-l {
    -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;
}

p {
  font-size: 1.6rem;
  /* 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 1rem 1rem;
}

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

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

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

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

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

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

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

.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: 100%;
  max-width: 1200px;
  margin: auto;
}

.Contents .container {
  width: 98%;
}
.Contents .Section {
  position: relative;
}
.Contents .Section + .Section {
  padding-top: 60px;
}
.Contents .Section h2, .Contents .Section h3, .Contents .Section h4, .Contents .Section h5 {
  font-weight: normal;
}
.Contents .Section h2 {
  font-size: 1.9rem;
}
.Contents .Section h3 {
  font-size: 1.8rem;
}
.Contents .Section h4, .Contents .Section h5 {
  font-size: 1.8rem;
}
@media only screen and (max-width: 740px) {
  .Contents .Section + .Section {
    padding-top: 30px;
  }
}

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

.pc-only {
  display: initial;
}
@media only screen and (max-width: 940px) {
  .pc-only {
    display: none !important;
  }
}

@media only screen and (min-width: 741px) {
  .pc-tab-only {
    display: initial;
  }
}
@media only screen and (max-width: 740px) {
  .pc-tab-only {
    display: none !important;
  }
}

@media only screen and (min-width: 940px) {
  .tab-sp-only {
    display: none !important;
  }
}
@media only screen and (max-width: 940px) {
  .tab-sp-only {
    display: initial !important;
  }
}

@media only screen and (min-width: 741px) {
  .sp-only {
    display: none !important;
  }
}
@media only screen and (max-width: 740px) {
  .sp-only {
    display: initial !important;
  }
}

body {
  font-family: "Zen Kaku Gothic New", "Raleway", sans-serif;
  color: #4b4e4e;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
p {
  line-height: 1.8;
  font-size: 1.6rem;
  color: #4b4e4e;
}

li {
  font-size: 1.4rem;
  font-size: 1.6rem;
}

.HeaderLogoBg {
  position: relative;
  line-height: 1;
  padding-left: 45px;
  font-size: 5rem !important;
}
.HeaderLogoBg::before {
  content: "";
  width: 33px;
  height: 34px;
  display: inline-block;
  background-image: url(./images/common/header_bg_logo.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media only screen and (max-width: 740px) {
  .HeaderLogoBg {
    font-size: 3.5rem !important;
    padding-left: 35px;
  }
  .HeaderLogoBg::before {
    width: 25px;
    height: 25px;
  }
}

.EngFont {
  font-family: "Raleway", sans-serif;
}
.EngFont * {
  font-family: "Raleway", sans-serif;
}

.JpnFont {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.Contents {
  overflow-x: hidden !important;
}
.Contents .container {
  width: calc(98% - 30px);
}
@media only screen and (max-width: 940px) {
  .Contents .container {
    width: calc(100% - 60px);
  }
}
.Contents .Section {
  clear: both;
}
.Contents .Section__head {
  margin-bottom: 50px;
}
@media only screen and (max-width: 940px) {
  .Contents .Section .Section__head {
    margin-bottom: 24px;
  }
  .Contents .Section + .Section {
    padding-top: 90px;
  }
}
.fixed-frame > .top,
.fixed-frame > .left,
.fixed-frame > .bottom,
.fixed-frame > .right {
  position: fixed;
  background-color: #000000;
  z-index: 1000;
}
.fixed-frame > .top {
  top: 0;
  left: 0;
  width: 100%;
  height: 13px;
}
.fixed-frame > .left {
  top: 0;
  left: 0;
  height: 100%;
  width: 13px;
}
.fixed-frame > .bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13px;
}
.fixed-frame > .right {
  top: 0;
  right: 0;
  height: 100%;
  width: 13px;
}

.fix_box {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}
.fix_box > .top,
.fix_box > .left,
.fix_box > .bottom,
.fix_box > .right {
  position: fixed;
  background-color: #fff;
  z-index: 8;
}
.fix_box > .top {
  top: 30px;
  left: 0;
  width: 100%;
  height: calc(50vh - 150px);
}
.fix_box > .left {
  top: 0;
  left: 0;
  height: 100%;
  width: calc(50vw - 350px);
}
.fix_box > .bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(50vh - 350px);
}
.fix_box > .right {
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50vw - 350px);
}

.fix_text_container {
  width: 200px;
  z-index: 20;
  /* フレックスコンテナであることを指定 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 左右中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
}

.fix_text span {
  font-size: 2.4rem;
  text-shadow: 0 0 3px #fff;
  display: inline-block;
  height: 26px;
  color: #000;
  text-align: left;
  width: 44px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック";
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 2s ease-out forwards;
          animation: text_anime_on 2s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Header {
  text-align: center;
  padding: 30px 0 15px;
  background-color: #fff;
}
.Header h1 {
  display: inline-block;
  width: 100px;
}
.Header h1 img {
  display: inline-block;
  width: 100%;
  height: auto;
}
.Header h1.logo_fadein {
  position: fixed;
  top: 45px;
  left: 30px;
  width: 100px;
  -webkit-animation: logo_animation 1s ease-out forwards;
          animation: logo_animation 1s ease-out forwards;
  z-index: 100;
  mix-blend-mode: color;
}
@media only screen and (max-width: 740px) {
  .Header {
    position: relative;
    z-index: 1000;
  }
  .Header h1 img {
    width: 87px;
  }
}

@-webkit-keyframes logo_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logo_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.MenuContainer {
  position: absolute;
  right: 5%;
  top: 70px;
  display: inline-block;
  width: 90px;
  z-index: 50;
}

.home.fix .Header {
  position: fixed;
  top: 0%;
  width: 100%;
  z-index: 50;
}
.home.fix .MenuContainer {
  position: fixed;
}

.Menu {
  text-align: left;
}
.Menu__item + .Menu__item {
  margin-top: 9px;
  padding-top: 9px;
}
.Menu__item a {
  font-size: 2.3rem;
}
.Menu__item img {
  width: auto;
}
.Menu__item.works img {
  width: 54px;
}
.Menu__item.about img {
  width: 53px;
}
.Menu__item.service img {
  width: 63px;
}
.Menu__item.contact img {
  width: 68px;
}

@media only screen and (max-width: 940px) {
  .Header {
    width: 100% !important;
    padding-left: 30px;
    left: auto;
    right: auto;
    margin: auto;
    text-align: left;
  }

  .MenuContainer {
    position: relative !important;
    right: auto;
    left: auto;
    top: auto;
    display: block;
    width: 100%;
    margin: auto;
  }
  .MenuContainer .Menu {
    text-align: left;
  }
  .MenuContainer .Menu__item {
    display: inline-block;
  }
  .MenuContainer .Menu__item + .Menu__item {
    margin-left: 15px;
  }
}
.Footer {
  padding: 200px 0 0px;
  margin-bottom: 50px;
}
.Footer .container {
  position: relative;
  width: calc(98% - 60px);
}
.Footer .container > .fx-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.Footer .FooterItem__list {
  display: inline-block;
  vertical-align: bottom;
  line-height: 1.5;
}
.Footer .FooterItem__list.FooterLogoList {
  padding-right: 35px;
}
.Footer .FooterItem__list.FooterLogoList img {
  width: 86px;
  height: auto;
}
.Footer .FooterMenu {
  text-align: right;
}
.Footer .FooterMenu__item {
  display: inline-block;
}
.Footer .FooterMenu__item a {
  font-size: 1.4rem;
}
.Footer .FooterMenu__item + .FooterMenu__item {
  margin-left: 20px;
}
@media only screen and (max-width: 940px) {
  .Footer .FooterItem {
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
  }
  .Footer .FooterItem__list.FooterLogoList {
    padding-right: 0;
    display: block;
    margin-bottom: 20px;
  }
  .Footer .FooterItem__list.FooterLogoList img {
    width: 86px;
    height: auto;
  }
  .Footer .FooterMenu {
    width: 100%;
    text-align: left;
  }
}
.Footer .GoToHomeButtonContainer {
  position: absolute;
  width: 70px;
  height: 70px;
  right: 29px;
  bottom: 0;
  -webkit-transform: translateY(35%);
          transform: translateY(35%);
}

@media only screen and (max-width: 1200px) {
  .Footer {
    position: relative;
  }
  .Footer .GoToHomeButtonContainer {
    bottom: 0;
    top: 150px;
  }
}
/* line 1, ../sass/lmd/flipsnap.scss */
.viewport {
  width: 6000px;
  overflow: hidden;
  margin: 0 auto;
  -webkit-transform: translateZ(0);
  /* Optional: When heavy at iOS6+ */
}

/* line 8, ../sass/lmd/flipsnap.scss */
.flipsnap {
  width: 1000%;
}
.flipsnap:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

/* line 19, ../sass/lmd/flipsnap.scss */
.item {
  float: left;
  margin-right: 30px;
}
.item.item-works {
  background-size: cover;
  background-position: center;
}
.item .item-topics {
  background-size: cover;
  background-position: center;
}
.item .item-topics > .hover-cell {
  display: table;
  background-color: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  cursor: pointer;
  text-align: center;
  padding: 0 30px;
}
.item .item-topics > .hover-cell:hover {
  opacity: 1;
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  /* line 39, ../sass/lmd/flipsnap.scss */
  .item .item-topics > .hover-cell:hover {
    opacity: 0;
  }
}
/* line 46, ../sass/lmd/flipsnap.scss */
.item .item-topics > .hover-cell .cell-content {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  color: #777;
}

/* line 51, ../sass/lmd/flipsnap.scss */
.item .item-topics > .hover-cell .cell-content .title {
  margin-top: 20px;
}

/* line 57, ../sass/lmd/flipsnap.scss */
.item .alter {
  opacity: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* line 62, ../sass/lmd/flipsnap.scss */
.item .alter.fadeout {
  opacity: 0;
}

/* line 70, ../sass/lmd/flipsnap.scss */
.controls button {
  background-color: transparent;
  border: none;
  color: #000000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* line 76, ../sass/lmd/flipsnap.scss */
.controls button:hover {
  color: #777777;
}

/* line 79, ../sass/lmd/flipsnap.scss */
.controls button:disabled {
  color: #cccccc;
}

[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-up:before {
  content: "u";
}

.controls button:disabled img {
  opacity: 0.4;
}

.LargeFontFadeIn {
  margin-left: 40px;
}
.LargeFontFadeIn span {
  font-size: 25rem;
  color: #c6c6c7;
  font-family: "Raleway", sans-serif;
}
.LargeFontFadeIn p {
  line-height: 1;
}
@media only screen and (max-width: 939px) and (min-width: 741px) {
  .LargeFontFadeIn span {
    font-size: 18rem;
  }
}
@media only screen and (max-width: 740px) {
  .LargeFontFadeIn span {
    font-size: 8rem;
  }
}

p.controls {
  text-align: right;
  margin-right: 30px;
}

@media only screen and (max-width: 940px) {
  p.controls {
    text-align: left;
    margin-right: 0px;
    margin-left: 30px;
  }
  p.controls button {
    width: 25%;
  }
}
@media only screen and (max-width: 740px) {
  p.controls {
    text-align: right;
    margin: 5px 0 0;
  }
  p.controls button {
    width: 25%;
  }
}
/*
//Plugin
@import "./plugins/bxslider";

//pages
@import "./pages/home";
@import "./pages/contact";
*/
.home .Contents {
  margin-top: 160px;
}
.home .Section__head {
  margin-bottom: 50px;
}
.home .EachCategory__head {
  margin-bottom: 40px;
}
.home .Section + .Section {
  padding-top: 150px;
}
@media only screen and (max-width: 740px) {
  .home .Section + .Section.HomeWorksSection,
.home .Section + .Section.HomeAboutSection {
    padding-top: 75px !important;
  }
  .home .Section + .Section.HomeWorksSection {
    padding-bottom: 75px !important;
  }
  .home .Section__head {
    font-size: 3.5rem !important;
    margin-bottom: 24px;
  }
  .home .Section + .Section {
    padding-top: 150px !important;
  }
}

.BackGround {
  padding-bottom: 80px;
  opacity: 0;
  position: relative;
  z-index: 1;
  font-size: 0;
}
.BackGround img {
  width: 100%;
}

.HomePholosophySection {
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
.HomePholosophySection .Section__head img {
  width: 87px;
  padding-top: 31px;
  height: auto;
}

.HomeCategorySection .EachCategory__head img {
  width: 178px;
  height: auto;
}
.HomeCategorySection .EachCategory__body p {
  font-size: 1.6rem;
}
.HomeCategorySection .EachCategory .CategoryImage__item {
  vertical-align: top;
}
.HomeCategorySection .EachCategory .PlanImage {
  padding: 0;
}
.HomeCategorySection .EachCategory .PlanImage img {
  max-height: 700px;
  width: auto;
}
.HomeCategorySection .EachCategory .PlanRealPhoto {
  padding: 0;
}
.HomeCategorySection .EachCategory .PlanRealPhoto img {
  max-height: 500px;
  width: auto;
}
.HomeCategorySection .EachCategory.restaurant .container {
  position: relative;
}
.HomeCategorySection .EachCategory.restaurant .CategoryImage__item {
  display: inline-block;
  position: absolute;
}
.HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanImage {
  left: 0;
}
.HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanImage img {
  width: 100%;
  height: auto;
  max-height: none !important;
}
.HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanRealPhoto {
  right: 0;
}
.HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanText {
  width: 400px;
}
.HomeCategorySection .EachCategory.shop {
  margin-bottom: 180px;
}
.HomeCategorySection .EachCategory.shop .container {
  position: relative;
}
.HomeCategorySection .EachCategory.shop .Category--main {
  display: inline-block !important;
  width: 500px;
  margin-bottom: 90px;
}
.HomeCategorySection .EachCategory.shop .CategoryImage__item {
  display: inline-block;
}
@media only screen and (min-width: 741px) {
  .HomeCategorySection .EachCategory.shop .CategoryImage {
    position: relative;
  }
  .HomeCategorySection .EachCategory.shop .PlanImage {
    width: 33%;
    text-align: center;
  }
  .HomeCategorySection .EachCategory.shop .PlanImage img {
    width: 60%;
    height: auto;
    max-height: none !important;
  }
  .HomeCategorySection .EachCategory.shop .PlanRealPhoto {
    width: 66%;
    position: absolute;
    top: 15%;
    left: 40%;
  }
  .HomeCategorySection .EachCategory.shop .PlanRealPhoto img {
    width: 100%;
    height: auto;
    max-height: none !important;
  }
  .HomeCategorySection .EachCategory.shop .PlanRealPhoto img.img_sp {
    display: none;
  }
  .HomeCategorySection .EachCategory.shop .Category--main.animation_fade_3_3 {
    display: none !important;
  }
  .HomeCategorySection .EachCategory.restaurant .container {
    position: unset;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanRealPhoto {
    position: absolute;
    left: 0;
    text-align: right;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanRealPhoto img {
    width: 65%;
    height: auto;
    max-height: none !important;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanImage {
    width: 19%;
    left: 50%;
    text-align: left;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanImage img {
    width: 60%;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanText {
    position: absolute;
    left: 45%;
  }
}
@media only screen and (max-width: 740px) {
  .HomeCategorySection .EachCategory img {
    width: 65% !important;
    max-height: none !important;
    height: auto !important;
    max-width: none !important;
  }
  .HomeCategorySection .EachCategory__head {
    font-size: 3.5rem !important;
    margin-bottom: 24px;
  }
  .HomeCategorySection .EachCategory .CategoryImage {
    position: relative;
  }
  .HomeCategorySection .EachCategory .CategoryImage .PlanRealPhoto {
    position: absolute;
    top: 25%;
    right: 0;
    text-align: right;
  }
  .HomeCategorySection .EachCategory .CategoryImage .PlanRealPhoto img.img_pc_tab {
    display: none;
  }
  .HomeCategorySection .EachCategory .CategoryImage .PlanImage img {
    width: 41% !important;
    padding-left: 10%;
  }
  .HomeCategorySection .EachCategory .CategoryImage__item {
    padding: 15px 5px;
  }
  .HomeCategorySection .EachCategory.shop {
    margin-bottom: 55px;
  }
  .HomeCategorySection .EachCategory.shop .Category--main {
    position: relative;
    bottom: auto;
    max-width: none !important;
    width: 100%;
  }
  .HomeCategorySection .EachCategory.shop .Category--main.animation_fade_1.pc-tab-only {
    display: none !important;
  }
  .HomeCategorySection .EachCategory.shop .EachCategory__head {
    margin-top: 100px;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage__item {
    position: relative;
    display: inline-block;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanImage {
    float: none;
    height: 500px !important;
    width: auto !important;
    max-width: none !important;
    position: absolute;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanRealPhoto {
    float: none;
    width: 100%;
    max-width: none !important;
    position: relative;
    padding-top: 40%;
    z-index: 5;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .PlanText {
    width: auto;
    margin-left: auto;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .EachCategory__head {
    padding-top: 42px;
  }
  .HomeCategorySection .EachCategory.restaurant .CategoryImage .EachCategory__head::before {
    top: calc(50% + 23px);
  }
}

.HomeWorksSection {
  margin-top: 150px;
  background: #f7f8f8;
  padding: 150px 0 !important;
}
.HomeWorksSection--sub {
  max-width: 560px;
}
.HomeWorksSection .Section__head img {
  width: 220px;
  height: auto;
}
.HomeWorksSection__body p.controls {
  text-align: right;
  margin-right: 30px;
}
.HomeWorksSection .slider_title {
  position: absolute;
  bottom: 0;
  z-index: 10000;
  width: 100%;
  background: #f7f8f8;
  font-size: 13px;
  padding: 5px;
}
.HomeWorksSection .item.item-works {
  position: relative;
}
@media only screen and (max-width: 740px) {
  .HomeWorksSection {
    margin-top: 0px;
    padding-top: 75px !important;
  }
  .HomeWorksSection__body p.controls {
    text-align: left;
    margin-right: 0px;
    margin-left: 30px;
  }
  .HomeWorksSection__body p.controls button {
    width: 25%;
  }
}

.HomeAboutSection .Section__head img {
  width: 238px;
  height: auto;
}

.GoToDetailFoot {
  text-align: left;
  margin-top: 80px;
}
.GoToDetailFoot img {
  width: 134px;
}

.CloudBg {
  background: url(./images/common/cloud_bg.png);
  -webkit-animation: bgiLoop 60s linear infinite;
          animation: bgiLoop 60s linear infinite;
  overflow-x: hidden !important;
}

@-webkit-keyframes bgiLoop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1400px 0px;
  }
}

@keyframes bgiLoop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1400px 0px;
  }
}
.HomeServiceSection {
  padding-top: 180px;
}
.HomeServiceSection .Section__head img {
  width: 248px;
  height: auto;
}
.HomeServiceSection dl.QandA {
  max-width: 840px;
}
.HomeServiceSection dl.QandA dt,
.HomeServiceSection dl.QandA dd {
  font-size: 1.6rem;
  line-height: 1.5;
}
.HomeServiceSection dl.QandA dt {
  border-bottom: 1px dotted grey;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
}
.HomeServiceSection dl.QandA dt::after {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  content: "";
  width: 15px;
  height: 10px;
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(./images/common/bottom_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.HomeServiceSection dl.QandA dt.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.HomeServiceSection dl.QandA dd {
  padding-top: 10px;
  display: none;
  opacity: 0.9;
}
.HomeServiceSection dl.QandA dd + dt {
  margin-top: 15px;
}
@media only screen and (max-width: 740px) {
  .HomeServiceSection dl.QandA dt {
    padding-right: 30px;
  }
  .HomeServiceSection dl.QandA dt::after {
    right: 3px;
  }
}

.HomeContactSection {
  padding-top: 180px;
  background: #fff;
}
.HomeContactSection .Section__head {
  margin-bottom: 50px;
}
.HomeContactSection .Section__head img {
  width: 271px;
  height: auto;
}
.HomeContactSection .Section__body {
  max-width: 930px;
}
.HomeContactSection .EachForm + .EachForm {
  margin-top: 30px;
}
.HomeContactSection .EachForm dt {
  margin-bottom: 10px;
}
.HomeContactSection .EachForm dd input,
.HomeContactSection .EachForm dd textarea {
  padding: 10px;
  background-color: #f7f8f8;
  width: 100%;
}

.AboutImages {
  margin-bottom: 200px;
  font-size: 0;
}
.AboutImages__item {
  font-size: 0;
}

.AboutSection .EachSection + .EachSection {
  padding-top: 150px;
}
.AboutSection .EachSection .EachSection__head {
  margin-bottom: 100px;
  font-size: 4.8rem;
}
@media only screen and (max-width: 740px) {
  .AboutSection .EachSection .EachSection__head {
    margin-bottom: 24px;
    font-size: 3.5rem !important;
  }
}

#js-GoogleMap {
  margin-top: 30px;
  padding: 25% 0;
}
@media only screen and (max-width: 740px) {
  #js-GoogleMap {
    padding: 50% 0;
  }
}

dl#profile {
  line-height: 1.5;
}
dl#profile dt {
  clear: both;
  float: left;
  width: 11em;
}
dl#profile dt::after {
  content: "：";
}
dl#profile dt:nth-child(7), dl#profile dt:nth-child(7) + dd {
  display: none;
}
dl#profile dd {
  margin: 0 0 15px 11em;
  padding-left: 10px;
  border-left: 2px solid #cfcfcf;
}
dl#profile dd ul,
dl#profile dd li {
  font-size: 1.6rem;
}
dl#profile dd dl dt {
  padding-bottom: 3px;
  float: none;
  width: 100%;
  clear: none;
}
dl#profile dd dl dt::after {
  content: "";
}
dl#profile dd dl dd {
  margin: 0 0 10px 0;
  padding-left: 0;
  border: none;
}
@media only screen and (max-width: 740px) {
  dl#profile > dt,
dl#profile > dd {
    float: none;
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  dl#profile > dd + dt {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 740px) {
  .AboutContents.Contents .EachSection:nth-child(1) {
    margin-top: 50px;
  }
  .AboutContents.Contents .Section.HomeServiceSection,
.AboutContents.Contents .Section.HomeContactSection {
    padding-top: 150px !important;
  }
  .AboutContents.Contents .AboutImages {
    margin-bottom: 50px;
  }
}

.HomeContactSection.PageSection {
  padding-top: 60px;
}
.HomeContactSection.PageSection .Section__body {
  margin-top: 30px;
}
.HomeContactSection .mw_wp_form.mw_wp_form_confirm input[name=auto_address],
.HomeContactSection .mw_wp_form.mw_wp_form_confirm .auto_address_container {
  display: none;
}
.HomeContactSection .EachForm .error {
  display: inline-block;
  margin-top: 5px;
}
.HomeContactSection .your_address1_container > span {
  display: inline-block;
}
.HomeContactSection .your_address1_container #postal_code {
  width: 150px;
}
.HomeContactSection .your_address1_container input[type=button] {
  margin-left: 30px;
  border: 2px solid #000;
  padding: 10px 15px 8px;
  line-height: 1;
}
.HomeContactSection .buttons {
  text-align: center;
}
.HomeContactSection .buttons input {
  display: inline-block;
  border: 2px solid #000;
  padding: 15px 15px 13px;
  line-height: 1;
  width: 200px !important;
  font-size: 1.8rem;
}

.mwform-radio-field.horizontal-item + .mwform-radio-field.horizontal-item {
  margin-left: 30px;
}

.checkbox_customize {
  padding-left: 20px;
}
.checkbox_customize label {
  position: relative;
}
.checkbox_customize input[type=checkbox] {
  display: none;
}
.checkbox_customize input[type=radio] {
  display: none;
}
.checkbox_customize label {
  padding-left: 10px;
}
.checkbox_customize label::before {
  width: 8px;
  height: 12px;
  border-right: 2px solid #0171bd;
  border-bottom: 2px solid #0171bd;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  display: inline-block;
  position: absolute;
  top: calc(50% - 5px);
  left: -17px;
  z-index: 1000;
  opacity: 0;
  content: "";
}
.checkbox_customize label::after {
  content: "";
  width: 15px;
  background-color: #deede3;
  display: inline-block;
  height: 16px;
  /* margin-left: -5px; */
  /* margin-right: 5px; */
  position: absolute;
  top: calc(50% - 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
  left: -16px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 1px black;
          box-shadow: 0 0 1px black;
}
.checkbox_customize label .mwform-radio-field-text::before {
  width: 8px;
  height: 12px;
  border-right: 2px solid #0171bd;
  border-bottom: 2px solid #0171bd;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  display: inline-block;
  position: absolute;
  top: calc(50% - 5px);
  left: -17px;
  z-index: 1000;
  opacity: 0;
  content: "";
}
.checkbox_customize input[type=checkbox]:checked + label::before {
  opacity: 1;
}
.checkbox_customize input[type=radio]:checked + label::before {
  opacity: 1;
}
.checkbox_customize label input[type=checkbox]:checked + .mwform-radio-field-text::before {
  opacity: 1;
}
.checkbox_customize label input[type=radio]:checked + .mwform-radio-field-text::before {
  opacity: 1;
}
.checkbox_customize.gd {
  text-align: center;
}
.checkbox_customize.gd .form-check {
  display: inline-block;
  min-width: 100px;
}
.checkbox_customize.gd .form-check + .form-check {
  margin-left: 20px;
}

.EachSection__head {
  font-size: 4.8rem !important;
}
.EachSection + .EachSection {
  padding-top: 150px;
}
@media only screen and (max-width: 740px) {
  .EachSection + .EachSection {
    padding-top: 150px;
  }
}

.WorksContents .Section + .Section {
  padding-top: 150px;
}

.EachWork {
  padding-bottom: 150px;
}
.EachWork:nth-child(1) {
  padding-top: 90px;
}
.EachWork:last-child {
  padding-bottom: 0;
}
.EachWork .EachSection__head {
  margin-bottom: 20px;
  font-size: 3.8rem !important;
}
.EachWork .EachSection + .EachSection {
  padding-top: 50px;
}
.EachWork .before_slider {
  margin-bottom: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.EachWork .before_slider p {
  line-height: 1.6;
}
.EachWork .works_link {
  margin-bottom: 50px;
}
.EachWork .works_link a {
  color: #00a1ff;
}
@media only screen and (max-width: 939px) and (min-width: 741px) {
  .EachWork {
    padding-bottom: 150px;
  }
  .EachWork:nth-child(1) {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 740px) {
  .EachWork {
    padding-bottom: 100px;
  }
  .EachWork:nth-child(1) {
    padding-top: 30px;
  }
  .EachWork .EachSection + .EachSection {
    padding-top: 30px;
  }
  .EachWork .EachSection__head {
    margin-bottom: 20px;
    font-size: 2.5rem !important;
  }
  .EachWork .works_link a {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .EachWork .before_slider {
    margin-bottom: 10px;
  }
}

.WorksDetailInfo .DetailTable th,
.WorksDetailInfo .DetailTable td {
  font-weight: normal;
  padding: 5px 10px;
  font-size: 1.6rem;
}
.WorksDetailInfo .DetailTable td {
  padding-left: 10px;
  margin-left: 10px;
}
.WorksDetailInfo .DetailTable td div.naiyou {
  margin: 0px 0;
  padding: 5px 5px 5px 20px;
  border-left: 1px solid grey;
}

body {
  position: relative;
}

p.Start_Logo {
  width: 60%;
  max-width: 200px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
p.Start_Logo svg path,
p.Start_Logo svg polygon {
  fill: none;
  stroke: #000;
  stroke-width: 1;
  stroke-miterlimit: 50;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  -webkit-animation: strokeAnimation 4s linear 0s forwards;
          animation: strokeAnimation 4s linear 0s forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
p.Start_Logo svg path#path_01,
p.Start_Logo svg polygon#path_01 {
  -webkit-animation: strokeAnimation 2.4s linear 0s forwards;
          animation: strokeAnimation 2.4s linear 0s forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
p.Start_Logo svg path#path_04,
p.Start_Logo svg polygon#path_04 {
  -webkit-animation: strokeAnimation 2.24s linear 0s forwards;
          animation: strokeAnimation 2.24s linear 0s forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes strokeAnimation {
  0% {
    stroke-dashoffset: 300;
  }
  80% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeAnimation {
  0% {
    stroke-dashoffset: 300;
  }
  80% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@media only screen and (max-width: 740px) {
  .sp_block {
    display: block;
  }
}