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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1024px) {
  .fx-row-reverse-l .fx-col-auto {
    -ms-flex-preferred-size: calc(100% - 200px);
        flex-basis: calc(100% - 200px);
    width: calc(100% - 200px); }
    .fx-row-reverse-l .fx-col-auto + .fx-col-fix-200 {
      -ms-flex-preferred-size: 200px;
          flex-basis: 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); }

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

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

@media screen and (min-width: 1024px) {
  .fx-row-reverse-l .fx-col-auto {
    -ms-flex-preferred-size: calc(100% - 250px);
        flex-basis: calc(100% - 250px);
    width: calc(100% - 250px); }
    .fx-row-reverse-l .fx-col-auto + .fx-col-fix-250 {
      -ms-flex-preferred-size: 250px;
          flex-basis: 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); }

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

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

@media screen and (min-width: 1024px) {
  .fx-row-reverse-l .fx-col-auto {
    -ms-flex-preferred-size: calc(100% - 300px);
        flex-basis: calc(100% - 300px);
    width: calc(100% - 300px); }
    .fx-row-reverse-l .fx-col-auto + .fx-col-fix-300 {
      -ms-flex-preferred-size: 300px;
          flex-basis: 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); }

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

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

@media screen and (min-width: 1024px) {
  .fx-row-reverse-l .fx-col-auto {
    -ms-flex-preferred-size: calc(100% - 350px);
        flex-basis: calc(100% - 350px);
    width: calc(100% - 350px); }
    .fx-row-reverse-l .fx-col-auto + .fx-col-fix-350 {
      -ms-flex-preferred-size: 350px;
          flex-basis: 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); }

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

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

@media screen and (min-width: 1024px) {
  .fx-row-reverse-l .fx-col-auto {
    -ms-flex-preferred-size: calc(100% - 400px);
        flex-basis: calc(100% - 400px);
    width: calc(100% - 400px); }
    .fx-row-reverse-l .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: 100%;
  max-width: 1000px;
  margin: auto; }

.Footer {
  margin: 60px 0 0; }

.Contents .container {
  width: 98%; }

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

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

.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: "Sawarabi Mincho", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; }

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

.Footer {
  margin: 0; }

.container {
  max-width: 1000px; }

.home .Contents .Section {
  padding: 60px 0; }

.Contents p {
  line-height: 1.8; }

@media only screen and (max-width: 940px) {
  .Contents .container {
    padding: 0 10px; } }

.Contents .Section {
  padding: 60px 0; }
  .Contents .Section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: normal; }
  .Contents .Section h3 {
    font-size: 2.2rem; }
  @media only screen and (max-width: 740px) {
    .Contents .Section {
      padding: 60px 0; } }

.Contents a:hover {
  opacity: 0.8; }

.Menu {
  padding-top: 30px;
  width: 100%;
  max-width: 727px;
  margin: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .Menu__item a {
    padding: 10px 0;
    display: block;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0); }
    .Menu__item a:hover {
      border-bottom: 1px solid #000; }
  .Menu.tab-sp-only {
    margin: 30px 0 40px; }
    .Menu.tab-sp-only .Menu__item a {
      padding: 10px 0 !important;
      font-size: 1.4rem; }

@media only screen and (min-width: 940px) {
  .toppage .Menu__item a {
    color: #fff; } }

.Header {
  padding-top: 50px; }
  .Header__head {
    text-align: center;
    margin-bottom: 30px; }
    .Header__head a {
      display: inline-block;
      font-size: 0;
      vertical-align: middle; }
    .Header__head img {
      max-width: 336px; }
  .Header__sub {
    text-align: center;
    line-height: 1.5; }
    .Header__sub a {
      color: #000; }
  @media only screen and (max-width: 940px) {
    .Header {
      color: #000;
      background-color: #ededed !important;
      padding: 0px !important; }
      .Header .container {
        padding-left: 0;
        padding-right: 0; }
      .Header .Header__sub {
        display: none; }
      .Header .header_logo {
        display: inline-block;
        position: relative;
        z-index: 1000;
        background: #ededed;
        padding: 0px !important;
        max-width: none;
        width: 100%;
        vertical-align: middle;
        padding: 10px 0 10px 5% !important;
        text-align: left;
        margin: 0;
        font-size: 0; }
        .Header .header_logo a img {
          width: calc(50% + 20px);
          max-width: none; }
      .Header .MenuContainer {
        background-image: url(./images/common/body_bg.png);
        background-repeat: repeat-y;
        background-size: 100%; }
        .Header .MenuContainer .Menu__item {
          text-align: center !important;
          border-bottom: none !important; }
          .Header .MenuContainer .Menu__item .menu__item {
            text-align: center !important; }
            .Header .MenuContainer .Menu__item .menu__item a {
              text-shadow: unset !important;
              color: #0a3c71; }
            .Header .MenuContainer .Menu__item .menu__item:hover {
              background: #0a3c71 !important; }
              .Header .MenuContainer .Menu__item .menu__item:hover a {
                color: #fff !important; }
            .Header .MenuContainer .Menu__item .menu__item.sp_extramenu img {
              margin: auto;
              width: 80%; } }
  @media only screen and (max-width: 939px) and (min-width: 741px) {
    .Header .MenuLine__item .menu__item a {
      font-size: 2.0rem; }
    .Header .MenuLine__item:last-child .menu .menu__item a {
      font-size: 1.5rem; }
    .Header .MenuLine__item:last-child .menu .menu__item:nth-child(1) a {
      font-size: 1.5rem; } }

.toppage .Header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: transparent;
  z-index: 10; }
  .toppage .Header__sub a {
    color: #fff; }

.page .Header {
  padding-bottom: 30px; }

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand; }

/* ハンバーガー */
#js-Header #navibtn {
  display: none;
  cursor: pointer;
  cursor: hand; }

@media only screen and (max-width: 940px) {
  #js-Header #navibtn {
    display: block;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: calc(50%);
    right: 10px;
    z-index: 1000; }
  #js-Header #navibtn::before {
    display: block;
    position: absolute;
    content: 'MENU';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    right: 38px;
    z-index: 1000;
    width: 55px;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold; }
  #js-Header #navibtn span {
    display: block;
    width: 40px;
    height: 40px; }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px; }
  #navibtn span span::before,
  #navibtn span::after {
    position: absolute;
    left: 0px;
    content: "";
    width: 33px;
    height: 3px;
    background-color: #000;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out; }
  #navibtn span span::after {
    background-color: #000; }
  #navibtn span span::before {
    top: 7px; }
  #menu-navibtn:checked + #js-Header label#navibtn span span::before {
    top: 19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  /* 下の棒 */
  #navibtn span::after {
    bottom: 7px; }
  #menu-navibtn:checked + #js-Header label#navibtn > span::after {
    bottom: 18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg); }
  /* 中の棒 */
  #navibtn span span::after {
    top: 18px; }
  #menu-navibtn:checked + #js-Header label#navibtn span span::after {
    display: none; }
  .Header {
    z-index: 1000; }
    .Header .Header__main, .Header .container {
      position: relative;
      width: 100%;
      display: block !important;
      max-width: unset; }
    .Header .Header__main {
      margin: 0 !important;
      z-index: 1000;
      background: #fff; }
      .Header .Header__main img {
        width: 80%; }
    .Header .MenuContainer {
      position: absolute;
      width: 100%;
      display: block !important;
      -webkit-box-flex: unset !important;
      flex: unset !important;
      -ms-flex: unset !important;
      -webkit-flex: unset !important;
      max-width: unset;
      z-index: 100;
      -webkit-transition: .2s;
      transition: .2s;
      -webkit-transform: translateY(-150%);
              transform: translateY(-150%); }
      .Header .MenuContainer * {
        position: relative !important;
        width: 100%;
        display: block !important;
        -webkit-box-flex: unset !important;
        flex: unset !important;
        -ms-flex: unset !important;
        -webkit-flex: unset !important;
        max-width: unset; }
      .Header .MenuContainer .Menu__item a {
        -webkit-transition: .5s;
        transition: .5s;
        padding: 15px 0;
        width: calc(100% - 60px);
        margin: auto; }
      .Header .MenuContainer .Menu__item:last-child {
        margin-bottom: 20px; }
    .Header .container .fx-row {
      display: block; }
  #menu-navibtn:checked + .Header {
    -webkit-box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.5);
            box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.5); }
    #menu-navibtn:checked + .Header .MenuContainer {
      -webkit-transform: translateY(0%);
              transform: translateY(0%); } }

.Footer {
  background: #000;
  padding: 43px 0 0;
  color: #fff; }
  .Footer__main .Footer__head {
    margin-bottom: 40px; }
    .Footer__main .Footer__head + P {
      line-height: 1.5; }
  .Footer__sub {
    position: relative; }
  .Footer .Menu__item a {
    color: #fff; }
  @media only screen and (min-width: 940px) {
    .Footer .Menu {
      padding-top: 5px; } }
  .Footer .GlobalNav__item a {
    padding: 0 40px;
    color: #fff; }
  @media only screen and (min-width: 940px) {
    .Footer .GlobalNav {
      -webkit-transform: translateX(-40px);
              transform: translateX(-40px);
      position: absolute;
      bottom: 0;
      left: 0; }
      .Footer .GlobalNav__item {
        display: inline-block; }
        .Footer .GlobalNav__item:first-child a {
          border-right: 1px solid #fff; } }
  @media only screen and (max-width: 940px) {
    .Footer .GlobalNav {
      margin: 60px auto 40px; }
      .Footer .GlobalNav__item {
        display: block;
        width: 100%;
        text-align: center; }
        .Footer .GlobalNav__item a {
          display: block;
          padding: 10px 0;
          text-align: center;
          font-size: 1.4rem; } }
  .Footer .copyright {
    text-align: center;
    padding: 30px 0px;
    font-size: 1.1rem;
    line-height: 1.5; }
    .Footer .copyright a {
      color: #fff; }
  .Footer__foot {
    text-align: center;
    bottom: 30px; }
    @media only screen and (min-width: 940px) {
      .Footer__foot {
        position: absolute;
        right: 2%;
        width: calc(50% - 200px);
        max-width: 500px; }
        .Footer__foot a {
          display: inline-block;
          padding: 5px;
          width: calc(50% - 10px); } }
    @media only screen and (max-width: 940px) {
      .Footer__foot a {
        display: inline-block;
        padding: 5px; } }
  @media only screen and (max-width: 940px) {
    .Footer__main {
      margin-bottom: 20px; }
      .Footer__main .Footer__head {
        text-align: center;
        margin-bottom: 20px; }
        .Footer__main .Footer__head + p {
          text-align: center; }
    .Footer .Menu {
      display: block; }
      .Footer .Menu__item {
        display: block;
        text-align: center;
        padding-bottom: 5px; }
        .Footer .Menu__item a {
          display: block;
          padding: 10px 0;
          text-align: center; } }

.doubleBox {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 5px;
  padding: 20px 0;
  line-height: 1;
  z-index: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #fff; }
  .doubleBox:hover::after {
    background-color: rgba(86, 79, 32, 0.8); }
  .doubleBox:first-child {
    margin-left: 0;
    margin-right: 10px; }
  .doubleBox:last-child {
    margin-left: 0;
    margin-right: 10px; }
  .doubleBox:hover {
    color: #fff; }
  .doubleBox::before {
    content: '';
    border: 1px solid #564F20;
    display: block;
    position: absolute;
    width: 90%;
    height: 100%;
    top: -4px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1; }
  .doubleBox::after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: calc(5% + 4px);
    width: 90%;
    height: 100%;
    border: 1px solid #564F20;
    background-color: rgba(86, 79, 32, 0.8);
    z-index: -1; }

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s; }

.popup.is-show {
  opacity: 1;
  visibility: visible; }

.popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  max-width: 1200px;
  background-color: transparent;
  z-index: 2; }
  .popup-inner.VerticalImage {
    width: auto;
    max-width: none;
    height: 80vh; }
  @media only screen and (max-width: 740px) {
    .popup-inner {
      width: 95%; } }

.popup-inner img {
  width: 100%; }

.popup-inner.VerticalImage img {
  height: 80vh;
  width: auto;
  max-width: none; }

.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer; }

.close-btn i {
  font-size: 20px;
  color: #333; }

.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer; }

/*
//Plugin
@import "./plugins/bxslider";

//pages
@import "./pages/contact";
*/
.EyeCatchSection {
  position: relative;
  padding: 33.32137% 0 !important;
  min-height: 0.8vh;
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./images/home/eyecatch_bg.png);
  background-size: cover; }
  .EyeCatchSection__body {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto; }
  .EyeCatchSection__head {
    position: absolute;
    top: calc(160px);
    left: 0;
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
    width: 26%;
    max-width: 408px;
    z-index: 80; }
  .EyeCatchSection__foot {
    position: absolute;
    top: calc(180px);
    -webkit-transform: none;
            transform: none;
    right: 0;
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
    width: 30%;
    max-width: 420px;
    z-index: 80; }
  @media only screen and (min-width: 940px) {
    .EyeCatchSection__body {
      top: calc(204px + 10%);
      -webkit-transform: none;
              transform: none;
      width: 19.9688%;
      z-index: 100; } }
  @media only screen and (max-width: 939px) and (min-width: 741px) {
    .EyeCatchSection {
      height: 100vh; }
      .EyeCatchSection__body {
        width: 36%; }
      .EyeCatchSection__head {
        top: 70px;
        width: 33%; }
      .EyeCatchSection__foot {
        top: auto;
        width: 33%;
        bottom: -2%; } }
  @media only screen and (max-width: 740px) {
    .EyeCatchSection {
      height: 90vh; }
      .EyeCatchSection__body {
        width: 40.4%;
        top: calc(50% + 25px); }
      .EyeCatchSection__head {
        width: 50%;
        top: 70px;
        -webkit-transform: translateX(-40%);
                transform: translateX(-40%); }
      .EyeCatchSection__foot {
        top: auto;
        -webkit-transform: translateX(40%);
                transform: translateX(40%);
        width: 50%;
        bottom: 3%; } }

.WelcomeSection {
  padding: 120px 0 !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./images/home/welcome_section_bg.png); }
  .WelcomeSection__head {
    width: 95%;
    max-width: 820px;
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
    text-shadow: 0px 2px 7px #000000;
    margin: auto;
    line-height: 2 !important;
    font-weight: bold;
    letter-spacing: 2px; }
  @media only screen and (max-width: 940px) {
    .WelcomeSection__head {
      width: 98%;
      max-width: none;
      padding: 5% 0 !important; } }

.InformationSection {
  padding-bottom: 60px !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./images/home/information_section_bg.png);
  color: #fff; }
  .InformationSection__head {
    text-shadow: 0px 2px 4px #000;
    color: #fff; }
    .InformationSection__head + p {
      text-align: center;
      text-shadow: 0px 2px 3px #000000;
      margin-bottom: 50px; }
  .InformationSection__body {
    width: 95%;
    max-width: 820px;
    margin: auto;
    margin-bottom: 50px; }
    .InformationSection__body .Info__item {
      line-height: 1.5;
      padding-bottom: 5px;
      text-shadow: 0px 2px 7px #000000;
      margin-bottom: 5px; }
      .InformationSection__body .Info__item a {
        text-shadow: 0px 2px 7px #000000;
        color: #fff; }
    @media only screen and (min-width: 741px) {
      .InformationSection__body .Info__item {
        padding-right: 15px; } }
    .InformationSection__body .scroll_box {
      position: relative;
      margin-top: 40px; }
      .InformationSection__body .scroll_box.overflow {
        max-height: 145px;
        overflow-y: scroll; }
      @media only screen and (max-width: 740px) {
        .InformationSection__body .scroll_box {
          margin-top: 30px; }
          .InformationSection__body .scroll_box.overflow {
            overflow-y: unset;
            max-height: unset; } }
    .InformationSection__body .ps__thumb-y,
    .InformationSection__body .ps__rail-y:hover > .ps__thumb-y,
    .InformationSection__body .ps__rail-y:focus > .ps__thumb-y,
    .InformationSection__body .ps__rail-y.ps--clicking .ps__thumb-y {
      background-color: #000;
      width: 11px;
      right: 0 !important;
      opacity: 1 !important; }
    .InformationSection__body .ps--active-x > .ps__rail-x,
    .InformationSection__body .ps--active-y > .ps__rail-y {
      background-color: #dadada;
      opacity: 0.9 !important;
      width: 11px !important;
      border-radius: 6px; }
    .InformationSection__body .ps .ps__rail-x:hover,
    .InformationSection__body .ps .ps__rail-y:hover,
    .InformationSection__body .ps .ps__rail-x:focus,
    .InformationSection__body .ps .ps__rail-y:focus,
    .InformationSection__body .ps .ps__rail-x.ps--clicking,
    .InformationSection__body .ps .ps__rail-y.ps--clicking {
      background-color: #dadada;
      opacity: 0.9 !important;
      border-radius: 6px; }
  .InformationSection__foot .InfoBanner__item a.doubleBox {
    color: #000; }
    .InformationSection__foot .InfoBanner__item a.doubleBox::before {
      border: 1px solid #fff; }
    .InformationSection__foot .InfoBanner__item a.doubleBox::after {
      border: 1px solid #fff;
      background-color: rgba(255, 255, 255, 0.8); }
    .InformationSection__foot .InfoBanner__item a.doubleBox:hover {
      color: #fff; }
      .InformationSection__foot .InfoBanner__item a.doubleBox:hover::after {
        background-color: #000; }
  @media only screen and (max-width: 940px) {
    .InformationSection__body {
      width: 90%; }
    .InformationSection__foot .InfoBanner__item {
      margin-bottom: 30px; } }

.page {
  background-image: url(./images/common/body_bg.png);
  background-repeat: repeat-y;
  background-size: 100%; }
  .page .PageHeaderSection {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 85px 0 75px !important; }
    .page .PageHeaderSection__head {
      color: #fff;
      text-align: center;
      margin-bottom: 0 !important;
      text-shadow: 0 2px 4px #000; }
  .page .PageContentsMenu {
    margin-top: 50px; }
    .page .PageContentsMenu > div {
      margin-bottom: 30px; }
  .page .PageBodySection {
    padding-bottom: 120px !important; }
    .page .PageBodySection__head {
      text-align: center;
      font-weight: normal !important; }
      .page .PageBodySection__head + p {
        text-align: center; }
    .page .PageBodySection__body .EachPageBody + .EachPageBody {
      padding-top: 100px; }
    .page .PageBodySection__body .EachPageBody__head {
      font-weight: normal !important;
      max-width: 544px;
      width: 98%;
      margin: 0 auto 30px;
      text-align: center; }
    .page .PageBodySection__body .EachPageBody .border {
      border: 1px solid #000;
      padding: 5px; }

.seatpage .PageHeaderSection {
  background-image: url(./images/seat/seat_header_bg.png);
  background-position: center 82%; }

.seatpage .PageContentsMenu .doubleBox:hover {
  color: #000; }
  .seatpage .PageContentsMenu .doubleBox:hover::after {
    background: transparent; }

.seatpage .PageBodySection__body .EachPageBody#SeatMap .EachPageBody__body {
  text-align: center;
  margin: auto;
  max-width: 768px; }

.seatpage .PageBodySection__body .EachPageBody > .fx-row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

@media only screen and (min-width: 940px) {
  .seatpage .PageBodySection__body .EachPageBody__body > div {
    padding: 0 4px; }
    .seatpage .PageBodySection__body .EachPageBody__body > div:nth-child(1) {
      padding: 0 8px 0 0; }
    .seatpage .PageBodySection__body .EachPageBody__body > div:nth-child(3) {
      padding: 0 0 0 8px; } }

.facilitypage .PageHeaderSection {
  background-image: url(./images/facility/facility_header_bg.png);
  background-position: center 82%; }

.facilitypage .PageBodySection__body .EachPageBody__head {
  margin: 0 auto 5px;
  padding-bottom: 0; }
  .facilitypage .PageBodySection__body .EachPageBody__head + p {
    text-align: center;
    line-height: 1.2;
    font-size: 1.4rem;
    color: #636363; }

.facilitypage .PageBodySection__body .EachPageBody__body {
  padding-top: 5px; }
  .facilitypage .PageBodySection__body .EachPageBody__body .EachRoom + .EachRoom {
    padding-top: 45px; }
  .facilitypage .PageBodySection__body .EachPageBody__body .EachRoom__head {
    text-align: center;
    font-weight: normal;
    max-width: 520px;
    width: 98%;
    margin: auto; }
  .facilitypage .PageBodySection__body .EachPageBody__body .EachRoom__body {
    padding-top: 5px; }

.pricepage .PageHeaderSection {
  background-image: url(./images/price/price_header_bg.png);
  background-position: center 82%; }

.pricepage .PageBodySection__body .EachPageBody__head {
  margin: 0 auto 5px;
  padding-bottom: 0; }
  .pricepage .PageBodySection__body .EachPageBody__head + p {
    text-align: center;
    line-height: 1.2;
    font-size: 1.4rem;
    color: #636363; }

.pricepage .PageBodySection__body .EachPageBody__body .EachDetail dt {
  width: 98%;
  margin: auto;
  max-width: 650px;
  line-height: 1.8; }

.pricepage .PageBodySection__body .EachPageBody__body .EachDetail dd {
  padding-top: 36px; }

.pricepage .PageBodySection__body .EachPageBody__body .EachDetail dt + dt,
.pricepage .PageBodySection__body .EachPageBody__body .EachDetail dd + dt {
  padding-top: 55px; }

.pricepage .PageBodySection__body .EachPageBody#FloorMap {
  position: relative;
  margin-top: 40px;
  max-width: 740px;
  width: 98%;
  margin-left: auto;
  margin-right: auto; }
  .pricepage .PageBodySection__body .EachPageBody#FloorMap .LinkText__item {
    position: absolute;
    display: inline-block; }
    .pricepage .PageBodySection__body .EachPageBody#FloorMap .LinkText__item.washitsu {
      width: 10.3%; }
      .pricepage .PageBodySection__body .EachPageBody#FloorMap .LinkText__item.washitsu:nth-child(1) {
        top: 72.06166%;
        left: 1.73797%; }
      .pricepage .PageBodySection__body .EachPageBody#FloorMap .LinkText__item.washitsu:nth-child(2) {
        top: 55.87669%;
        left: 1.73797%; }
      .pricepage .PageBodySection__body .EachPageBody#FloorMap .LinkText__item.washitsu:nth-child(3) {
        top: 43.15992%;
        left: 1.73797%; }
      .pricepage .PageBodySection__body .EachPageBody#FloorMap .LinkText__item.washitsu:nth-child(4) {
        top: 7.51445%;
        left: 34.09091%; }
      .pricepage .PageBodySection__body .EachPageBody#FloorMap .LinkText__item.washitsu:nth-child(5) {
        top: 7.51445%;
        left: 47.72727%; }
    .pricepage .PageBodySection__body .EachPageBody#FloorMap .LinkText__item.kaigishitsu {
      width: 6.8%;
      top: 7.51445%;
      left: 61.36364%; }
    .pricepage .PageBodySection__body .EachPageBody#FloorMap .LinkText__item.nougaku_hall {
      width: 13.3%;
      top: 47.97688%;
      left: 47.03209%; }

.pricepage .PageBodySection__body .EachPageBody#Rooms > .fx-row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.pricepage .PageBodySection__body .EachPageBody#Rooms .EachRoom {
  margin-bottom: 60px; }
  @media only screen and (min-width: 940px) {
    .pricepage .PageBodySection__body .EachPageBody#Rooms .EachRoom:nth-child(2n + 1) {
      padding-right: 20px; }
    .pricepage .PageBodySection__body .EachPageBody#Rooms .EachRoom:nth-child(2n) {
      padding-left: 20px; } }
  .pricepage .PageBodySection__body .EachPageBody#Rooms .EachRoom__head {
    text-align: center;
    margin-bottom: 20px; }
  .pricepage .PageBodySection__body .EachPageBody#Rooms .EachRoom__body {
    width: 100%;
    overflow: hidden; }
    .pricepage .PageBodySection__body .EachPageBody#Rooms .EachRoom__body img {
      width: calc(100% + 8px);
      max-width: none;
      -webkit-transform: translateX(-4px);
              transform: translateX(-4px); }

.PriceTable {
  display: block;
  width: 850px;
  margin: auto; }
  @media only screen and (max-width: 940px) {
    .PriceTable {
      max-width: none; } }
  .PriceTable td {
    border-right: 1px solid #979797;
    border-bottom: 1px solid #979797;
    padding: 12px 40px;
    text-align: center; }
  .PriceTable .bg_color1,
  .PriceTable .bg_color2 {
    color: #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff; }
  .PriceTable .bg_color1 {
    background-color: #564f20; }
  .PriceTable .bg_color2 {
    background-color: #636363; }

.rentpage .PageHeaderSection {
  background-image: url(./images/rent/rent_header_bg.png);
  background-position: center 82%; }

.rentpage .PageBodySection__body .EachPageBody .doubleBoxContainer a {
  padding-right: 15px; }
  @media only screen and (min-width: 940px) {
    .rentpage .PageBodySection__body .EachPageBody .doubleBoxContainer a {
      max-width: 450px; } }

.performancepage .PageHeaderSection {
  background-image: url(./images/performance/performance_header_bg.png);
  background-position: center 82%; }

.performancepage .PageBodySection__head {
  margin-bottom: 5px !important; }

.performancepage .PageBodySection__body .EachPageBody {
  padding-top: 60px; }
  @media only screen and (min-width: 940px) {
    .performancepage .PageBodySection__body .EachPageBody .doubleBoxContainer a {
      max-width: 450px; } }
  .performancepage .PageBodySection__body .EachPageBody__head {
    color: #850909;
    margin-bottom: 5px; }
    .performancepage .PageBodySection__body .EachPageBody__head + p {
      text-align: center; }
  .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance {
    padding-top: 35px; }
    @media only screen and (min-width: 940px) {
      .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__sub {
        padding-right: 45px; } }
    @media only screen and (max-width: 940px) {
      .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__sub {
        text-align: center;
        padding-bottom: 35px; }
        .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__sub img {
          width: 50%; } }
    .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__head {
      font-size: 2rem;
      text-align: center; }
    .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body {
      padding-top: 30px; }
      .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px dotted #3E3E3E; }
        .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row:last-child {
          border-bottom: none; }
        .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row .greybox {
          font-size: 1.4rem;
          padding: 5px 0; }
          .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row .greybox + .fx-col-auto .fx-row + .fx-row {
            margin-top: 5px; }
        .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row .greybox + * {
          padding-left: 10px;
          padding-top: 5px; }
        .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row .message {
          margin-top: -5px;
          margin-bottom: 5px; }
        .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row .fx-row .fx-col-auto {
          line-height: 1.5;
          margin-top: -3px; }
        @media only screen and (max-width: 940px) {
          .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row .fx-row + .fx-row {
            margin-top: 10px; }
          .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row .fx-row [class*="fx-col"] {
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%;
            max-width: 100%;
            line-height: 1.5; }
          .performancepage .PageBodySection__body .EachPageBody__body .EachPerformance__body .PerformanceDetail > .fx-row .fx-row .fx-col-auto {
            line-height: 1.5;
            margin-top: 0px; } }
  .performancepage .PageBodySection__body .EachPageBody.KouenAnnai, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou {
    padding-top: 70px; }
    .performancepage .PageBodySection__body .EachPageBody.KouenAnnai .EachPerformance__head, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou .EachPerformance__head {
      font-size: 2.2rem; }
    .performancepage .PageBodySection__body .EachPageBody.KouenAnnai .EachPerformance__body > dl > dt, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou .EachPerformance__body > dl > dt {
      font-size: 1.9rem;
      padding-bottom: 5px;
      border-bottom: 1px dashed #000;
      margin-bottom: 15px; }
    .performancepage .PageBodySection__body .EachPageBody.KouenAnnai .EachPerformance__body > dl > dd, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou .EachPerformance__body > dl > dd {
      line-height: 1.5; }
      .performancepage .PageBodySection__body .EachPageBody.KouenAnnai .EachPerformance__body > dl > dd + dt, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou .EachPerformance__body > dl > dd + dt {
        padding-top: 65px; }
    .performancepage .PageBodySection__body .EachPageBody.KouenAnnai .EachPerformance__body > dl dd .tel, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou .EachPerformance__body > dl dd .tel {
      font-size: 1.9rem;
      line-height: 1;
      display: inline-block;
      border-bottom: 1px solid #000; }
    .performancepage .PageBodySection__body .EachPageBody.KouenAnnai .EachPerformance__body > dl dd .TelKounyu__item, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou .EachPerformance__body > dl dd .TelKounyu__item {
      padding-top: 30px; }
    .performancepage .PageBodySection__body .EachPageBody.KouenAnnai .EachPerformance__body > dl dd .TelKounyu .EachSetsumei__head, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou .EachPerformance__body > dl dd .TelKounyu .EachSetsumei__head {
      font-size: 1.7rem;
      margin-bottom: 5px; }
    .performancepage .PageBodySection__body .EachPageBody.KouenAnnai .EachPerformance__body > dl dd .TelKounyu .EachSetsumei__body, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou .EachPerformance__body > dl dd .TelKounyu .EachSetsumei__body {
      line-height: 1.5;
      padding-left: 3.4rem; }
    .performancepage .PageBodySection__body .EachPageBody.KouenAnnai .EachPerformance__body > dl dd .TelKounyu .EachSetsumei .furikomisentaku, .performancepage .PageBodySection__body .EachPageBody.KounyuHouhou .EachPerformance__body > dl dd .TelKounyu .EachSetsumei .furikomisentaku {
      border-bottom: 1px solid #000;
      display: inline-block;
      margin-bottom: 8px; }

.accesspage .PageHeaderSection {
  background-image: url(./images/common/common_header_bg.png);
  background-position: center 82%; }

.accesspage .PageBodySection__head {
  margin-bottom: 5px !important; }
  .accesspage .PageBodySection__head + p {
    margin-top: 25px; }

.accesspage .PageBodySection__body .EachPageBody {
  padding-top: 60px; }
  .accesspage .PageBodySection__body .EachPageBody__body p {
    text-align: center; }
  .accesspage .PageBodySection__body .EachPageBody__body img.map {
    display: block;
    max-width: none;
    width: 780px;
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (min-width: 940px) {
      .accesspage .PageBodySection__body .EachPageBody__body img.map {
        max-width: 780px;
        width: 100%; } }
  .accesspage .PageBodySection__body .EachPageBody__foot {
    padding-top: 50px;
    text-align: center; }
    .accesspage .PageBodySection__body .EachPageBody__foot .doubleBox {
      padding: 13px 0 16px;
      max-width: 285px;
      color: #000;
      margin-left: auto;
      margin-right: auto; }
      .accesspage .PageBodySection__body .EachPageBody__foot .doubleBox:hover {
        opacity: 0.8; }
      .accesspage .PageBodySection__body .EachPageBody__foot .doubleBox::after {
        background: transparent; }

.privacypolicypage .PageHeaderSection {
  background-image: url(./images/common/common_header_bg.png);
  background-position: center 82%; }

.privacypolicypage .PageBodySection__body .EachPageBody__body .PrivacyPlicyContents {
  max-width: 758px;
  margin: auto; }
  .privacypolicypage .PageBodySection__body .EachPageBody__body .PrivacyPlicyContents dt {
    font-size: 1.9rem;
    margin-bottom: 15px; }
  .privacypolicypage .PageBodySection__body .EachPageBody__body .PrivacyPlicyContents dd {
    line-height: 1.5; }
    .privacypolicypage .PageBodySection__body .EachPageBody__body .PrivacyPlicyContents dd + dt {
      padding-top: 70px; }

.sitemappage .PageHeaderSection {
  background-image: url(./images/common/common_header_bg.png);
  background-position: center 82%; }

.sitemappage .PageBodySection__body .EachPageBody .doubleBox {
  text-align: left;
  padding-left: 5%; }

.linkpage .PageHeaderSection {
  background-image: url(./images/link/link_header_bg.png);
  background-position: center 82%; }

.linkpage .PageBodySection__body .EachPageBody .Link__item a {
  display: inline-block;
  margin-bottom: 15px;
  padding: 0 5px;
  border-bottom: 1px solid #000;
  line-height: 1.5; }

.membershippage .PageHeaderSection {
  background-image: url(./images/membership/membership_header_bg.png);
  background-position: center 82%; }

.membershippage .PageBodySection {
  padding-top: 0 !important; }
  .membershippage .PageBodySection__head {
    margin-bottom: 5px !important; }
  .membershippage .PageBodySection__body .EachPageBody {
    padding-top: 60px; }
    .membershippage .PageBodySection__body .EachPageBody + .EachPageBody {
      padding-top: 80px; }
    @media only screen and (min-width: 940px) {
      .membershippage .PageBodySection__body .EachPageBody .doubleBoxContainer a {
        max-width: 450px; } }
    .membershippage .PageBodySection__body .EachPageBody__head {
      margin-bottom: 5px; }
      .membershippage .PageBodySection__body .EachPageBody__head + p {
        text-align: center; }

.item-img .sp-info {
  display: none; }

@media only screen and (max-width: 740px) {
  .item-img {
    overflow-x: scroll;
    position: relative; }
    .item-img > img .item-img > table,
    .item-img > div:nth-child(1) {
      min-width: 800px; }
    .item-img .sp-info {
      width: 100%;
      display: block;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 2.1rem;
      line-height: 1.5;
      font-weight: 700;
      text-align: center;
      padding: 22px;
      position: absolute;
      top: 0;
      left: 0;
      overflow: hidden; } }

.CenterLeft {
  text-align: center; }
  .CenterLeft > * {
    display: inline-block;
    text-align: left; }

.enji {
  color: #850909; }

.greybox {
  padding: 3px 0 4px;
  text-align: center;
  color: #fff;
  line-height: 1;
  background-color: #707070; }

.list {
  text-indent: -3rem;
  padding-left: 3rem; }

.dl_icon {
  display: inline-block;
  width: 95%;
  text-align: left; }
  .dl_icon::after {
    padding-left: 65px;
    background-position: 20px 13px;
    background-repeat: no-repeat;
    background-size: auto 20px; }
  .dl_icon.pdf_icon::after {
    background-image: url(./images/common/dl_pdf_icon.png); }
  .dl_icon.excel_icon::after {
    background-image: url(./images/common/dl_excel_icon.png); }



.dl_icon {
  display: inline-block;
  width: 95%;
  text-align: left; }
  .dl_icon::after {
    padding-left: 65px;
    background-position: 20px 13px;
    background-repeat: no-repeat;
    background-size: auto 20px; }
  .dl_icon.excel_icon::after {
    background-image: url(./images/common/dl_excel_icon.png); }
  .dl_icon.excel_icon::after {
    background-image: url(./images/common/dl_excel_icon.png); }





.doubleBoxContainer {
  margin-bottom: 30px; }
  @media only screen and (min-width: 940px) {
    .doubleBoxContainer {
      text-align: right; }
      .doubleBoxContainer a {
        max-width: 400px; }
      .doubleBoxContainer:nth-child(2n) {
        text-align: left; } }
  .doubleBoxContainer a {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 19px; }
    .doubleBoxContainer a.dl_icon {
      padding-left: 65px;
      background-position: 35px center;
      background-repeat: no-repeat;
      background-size: auto 20px; }
    .doubleBoxContainer a.doubleBox {
      color: #000; }
      .doubleBoxContainer a.doubleBox:hover {
        opacity: 0.8;
        color: #fff; }
        .doubleBoxContainer a.doubleBox:hover::after {
          background-color: #564f20; }
      .doubleBoxContainer a.doubleBox::before {
        content: "";
        border: 1px solid #564f20;
        display: block;
        position: absolute;
        width: 98%;
        height: 100%;
        top: -4px;
        left: 0;
        right: 0;
        margin: auto;
        z-index: -1; }
      .doubleBoxContainer a.doubleBox::after {
        content: "";
        display: block;
        position: absolute;
        top: 0px;
        left: calc(1% + 4px);
        width: 98%;
        height: 100%;
        border: 1px solid #564f20;
        background-color: transparent;
        z-index: -1; }

#MapContainer {
  position: relative;
  width: 100%; }
  #MapContainer::before {
    content: "";
    display: block;
    padding-top: 150%; }
    @media only screen and (min-width: 741px) {
      #MapContainer::before {
        padding-top: 35%;
        /* 高さと幅の比を16:9に固定。9/16*100=56.25 */ } }
  #MapContainer #iframeGoogleMap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

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