<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*
FOX CSS 3.0.0
by Ronan Levesque - CC BY 3.0 license

Includes Normalize by Nicolas Gallagher
More info =&gt; http://necolas.github.io/normalize.css/
*/
/*-------------------------*/
/* +RESETS                 */
/*-------------------------*/
*,
*:after,
*:before {
  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 {
  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] {
  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;
  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: flex;
  flex-wrap: wrap;
}
.fx-row + .fx-row {
  margin-top: 0;
}

.fx-row-start-xs {
  justify-content: flex-start;
}

.fx-row-center-xs {
  justify-content: center;
}

.fx-row-end-xs {
  justify-content: flex-end;
}

.fx-row-between-xs {
  justify-content: space-between;
}

.fx-row-around-xs {
  justify-content: space-around;
}

@media screen and (min-width: 490px) {
  .fx-row-start-ss {
    justify-content: flex-start;
  }
  .fx-row-center-ss {
    justify-content: center;
  }
  .fx-row-end-ss {
    justify-content: flex-end;
  }
  .fx-row-between-ss {
    justify-content: space-between;
  }
  .fx-row-around-ss {
    justify-content: space-around;
  }
}
@media screen and (min-width: 769px) {
  .fx-row-start-s {
    justify-content: flex-start;
  }
  .fx-row-center-s {
    justify-content: center;
  }
  .fx-row-end-s {
    justify-content: flex-end;
  }
  .fx-row-between-s {
    justify-content: space-between;
  }
  .fx-row-around-s {
    justify-content: space-around;
  }
}
@media screen and (min-width: 940px) {
  .fx-row-start-m {
    justify-content: flex-start;
  }
  .fx-row-center-m {
    justify-content: center;
  }
  .fx-row-end-m {
    justify-content: flex-end;
  }
  .fx-row-between-m {
    justify-content: space-between;
  }
  .fx-row-around-m {
    justify-content: space-around;
  }
}
@media screen and (min-width: 1024px) {
  .fx-row-start-l {
    justify-content: flex-start;
  }
  .fx-row-center-l {
    justify-content: center;
  }
  .fx-row-end-l {
    justify-content: flex-end;
  }
  .fx-row-between-l {
    justify-content: space-between;
  }
  .fx-row-around-l {
    justify-content: space-around;
  }
}
.flex-vertical-centering {
  align-items: center;
}

.fx-row-reverse-xs {
  flex-direction: row-reverse;
}

@media screen and (min-width: 490px) {
  .fx-row-reverse-ss {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 769px) {
  .fx-row-reverse-s {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 940px) {
  .fx-row-reverse-m {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .fx-row-reverse-l {
    flex-direction: row-reverse;
  }
}
[class*=fx-col] {
  flex-grow: 1;
  flex-basis: 100%;
  max-width: 100%;
  -ms-flex: 1 1 100%;
  -webkit-flex: 1 1 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 490px) {
  .fx-col-10-ss {
    flex-basis: 10%;
    max-width: 10%;
    -ms-flex: 1 1 10%;
    -webkit-flex: 1 1 10%;
  }
  .fx-col-15-ss {
    flex-basis: 15%;
    max-width: 15%;
    -ms-flex: 1 1 15%;
    -webkit-flex: 1 1 15%;
  }
  .fx-col-20-ss {
    flex-basis: 20%;
    max-width: 20%;
    -ms-flex: 1 1 20%;
    -webkit-flex: 1 1 20%;
  }
  .fx-col-22-ss {
    flex-basis: 22%;
    max-width: 22%;
    -ms-flex: 1 1 22%;
    -webkit-flex: 1 1 22%;
  }
  .fx-col-25-ss {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex: 1 1 25%;
    -webkit-flex: 1 1 25%;
  }
  .fx-col-30-ss {
    flex-basis: 30%;
    max-width: 30%;
    -ms-flex: 1 1 30%;
    -webkit-flex: 1 1 30%;
  }
  .fx-col-33-ss {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    -ms-flex: 1 1 33.3333%;
    -webkit-flex: 1 1 33.3333%;
  }
  .fx-col-35-ss {
    flex-basis: 35%;
    max-width: 35%;
    -ms-flex: 1 1 35%;
    -webkit-flex: 1 1 35%;
  }
  .fx-col-40-ss {
    flex-basis: 40%;
    max-width: 40%;
    -ms-flex: 1 1 40%;
    -webkit-flex: 1 1 40%;
  }
  .fx-col-45-ss {
    flex-basis: 45%;
    max-width: 45%;
    -ms-flex: 1 1 45%;
    -webkit-flex: 1 1 45%;
  }
  .fx-col-50-ss {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
  }
  .fx-col-55-ss {
    flex-basis: 55%;
    max-width: 55%;
    -ms-flex: 1 1 55%;
    -webkit-flex: 1 1 55%;
  }
  .fx-col-60-ss {
    flex-basis: 60%;
    max-width: 60%;
    -ms-flex: 1 1 60%;
    -webkit-flex: 1 1 60%;
  }
  .fx-col-65-ss {
    flex-basis: 65%;
    max-width: 65%;
    -ms-flex: 1 1 65%;
    -webkit-flex: 1 1 65%;
  }
  .fx-col-66-ss {
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -ms-flex: 1 1 66.6666%;
    -webkit-flex: 1 1 66.6666%;
  }
  .fx-col-70-ss {
    flex-basis: 70%;
    max-width: 70%;
    -ms-flex: 1 1 70%;
    -webkit-flex: 1 1 70%;
  }
  .fx-col-75-ss {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex: 1 1 75%;
    -webkit-flex: 1 1 75%;
  }
  .fx-col-78-ss {
    flex-basis: 78%;
    max-width: 78%;
    -ms-flex: 1 1 78%;
    -webkit-flex: 1 1 78%;
  }
  .fx-col-80-ss {
    flex-basis: 80%;
    max-width: 80%;
    -ms-flex: 1 1 80%;
    -webkit-flex: 1 1 80%;
  }
  .fx-col-85-ss {
    flex-basis: 85%;
    max-width: 85%;
    -ms-flex: 1 1 85%;
    -webkit-flex: 1 1 85%;
  }
  .fx-col-90-ss {
    flex-basis: 90%;
    max-width: 90%;
    -ms-flex: 1 1 90%;
    -webkit-flex: 1 1 90%;
  }
  .fx-col-95-ss {
    flex-basis: 95%;
    max-width: 95%;
    -ms-flex: 1 1 95%;
    -webkit-flex: 1 1 95%;
  }
  .fx-col-100-ss {
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
  }
}
@media screen and (min-width: 769px) {
  .fx-col-10-s {
    flex-basis: 10%;
    max-width: 10%;
    -ms-flex: 1 1 10%;
    -webkit-flex: 1 1 10%;
  }
  .fx-col-15-s {
    flex-basis: 15%;
    max-width: 15%;
    -ms-flex: 1 1 15%;
    -webkit-flex: 1 1 15%;
  }
  .fx-col-20-s {
    flex-basis: 20%;
    max-width: 20%;
    -ms-flex: 1 1 20%;
    -webkit-flex: 1 1 20%;
  }
  .fx-col-22-s {
    flex-basis: 22%;
    max-width: 22%;
    -ms-flex: 1 1 22%;
    -webkit-flex: 1 1 22%;
  }
  .fx-col-25-s {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex: 1 1 25%;
    -webkit-flex: 1 1 25%;
  }
  .fx-col-30-s {
    flex-basis: 30%;
    max-width: 30%;
    -ms-flex: 1 1 30%;
    -webkit-flex: 1 1 30%;
  }
  .fx-col-33-s {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    -ms-flex: 1 1 33.3333%;
    -webkit-flex: 1 1 33.3333%;
  }
  .fx-col-35-s {
    flex-basis: 35%;
    max-width: 35%;
    -ms-flex: 1 1 35%;
    -webkit-flex: 1 1 35%;
  }
  .fx-col-40-s {
    flex-basis: 40%;
    max-width: 40%;
    -ms-flex: 1 1 40%;
    -webkit-flex: 1 1 40%;
  }
  .fx-col-45-s {
    flex-basis: 45%;
    max-width: 45%;
    -ms-flex: 1 1 45%;
    -webkit-flex: 1 1 45%;
  }
  .fx-col-50-s {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
  }
  .fx-col-55-s {
    flex-basis: 55%;
    max-width: 55%;
    -ms-flex: 1 1 55%;
    -webkit-flex: 1 1 55%;
  }
  .fx-col-60-s {
    flex-basis: 60%;
    max-width: 60%;
    -ms-flex: 1 1 60%;
    -webkit-flex: 1 1 60%;
  }
  .fx-col-65-s {
    flex-basis: 65%;
    max-width: 65%;
    -ms-flex: 1 1 65%;
    -webkit-flex: 1 1 65%;
  }
  .fx-col-66-s {
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -ms-flex: 1 1 66.6666%;
    -webkit-flex: 1 1 66.6666%;
  }
  .fx-col-70-s {
    flex-basis: 70%;
    max-width: 70%;
    -ms-flex: 1 1 70%;
    -webkit-flex: 1 1 70%;
  }
  .fx-col-75-s {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex: 1 1 75%;
    -webkit-flex: 1 1 75%;
  }
  .fx-col-78-s {
    flex-basis: 78%;
    max-width: 78%;
    -ms-flex: 1 1 78%;
    -webkit-flex: 1 1 78%;
  }
  .fx-col-80-s {
    flex-basis: 80%;
    max-width: 80%;
    -ms-flex: 1 1 80%;
    -webkit-flex: 1 1 80%;
  }
  .fx-col-85-s {
    flex-basis: 85%;
    max-width: 85%;
    -ms-flex: 1 1 85%;
    -webkit-flex: 1 1 85%;
  }
  .fx-col-90-s {
    flex-basis: 90%;
    max-width: 90%;
    -ms-flex: 1 1 90%;
    -webkit-flex: 1 1 90%;
  }
  .fx-col-95-s {
    flex-basis: 95%;
    max-width: 95%;
    -ms-flex: 1 1 95%;
    -webkit-flex: 1 1 95%;
  }
  .fx-col-100-s {
    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 {
    flex-basis: 10%;
    max-width: 10%;
    -ms-flex: 1 1 10%;
    -webkit-flex: 1 1 10%;
  }
  .fx-col-15-m {
    flex-basis: 15%;
    max-width: 15%;
    -ms-flex: 1 1 15%;
    -webkit-flex: 1 1 15%;
  }
  .fx-col-20-m {
    flex-basis: 20%;
    max-width: 20%;
    -ms-flex: 1 1 20%;
    -webkit-flex: 1 1 20%;
  }
  .fx-col-22-m {
    flex-basis: 22%;
    max-width: 22%;
    -ms-flex: 1 1 22%;
    -webkit-flex: 1 1 22%;
  }
  .fx-col-25-m {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex: 1 1 25%;
    -webkit-flex: 1 1 25%;
  }
  .fx-col-30-m {
    flex-basis: 30%;
    max-width: 30%;
    -ms-flex: 1 1 30%;
    -webkit-flex: 1 1 30%;
  }
  .fx-col-33-m {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    -ms-flex: 1 1 33.3333%;
    -webkit-flex: 1 1 33.3333%;
  }
  .fx-col-35-m {
    flex-basis: 35%;
    max-width: 35%;
    -ms-flex: 1 1 35%;
    -webkit-flex: 1 1 35%;
  }
  .fx-col-40-m {
    flex-basis: 40%;
    max-width: 40%;
    -ms-flex: 1 1 40%;
    -webkit-flex: 1 1 40%;
  }
  .fx-col-45-m {
    flex-basis: 45%;
    max-width: 45%;
    -ms-flex: 1 1 45%;
    -webkit-flex: 1 1 45%;
  }
  .fx-col-50-m {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
  }
  .fx-col-55-m {
    flex-basis: 55%;
    max-width: 55%;
    -ms-flex: 1 1 55%;
    -webkit-flex: 1 1 55%;
  }
  .fx-col-60-m {
    flex-basis: 60%;
    max-width: 60%;
    -ms-flex: 1 1 60%;
    -webkit-flex: 1 1 60%;
  }
  .fx-col-65-m {
    flex-basis: 65%;
    max-width: 65%;
    -ms-flex: 1 1 65%;
    -webkit-flex: 1 1 65%;
  }
  .fx-col-66-m {
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -ms-flex: 1 1 66.6666%;
    -webkit-flex: 1 1 66.6666%;
  }
  .fx-col-70-m {
    flex-basis: 70%;
    max-width: 70%;
    -ms-flex: 1 1 70%;
    -webkit-flex: 1 1 70%;
  }
  .fx-col-75-m {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex: 1 1 75%;
    -webkit-flex: 1 1 75%;
  }
  .fx-col-78-m {
    flex-basis: 78%;
    max-width: 78%;
    -ms-flex: 1 1 78%;
    -webkit-flex: 1 1 78%;
  }
  .fx-col-80-m {
    flex-basis: 80%;
    max-width: 80%;
    -ms-flex: 1 1 80%;
    -webkit-flex: 1 1 80%;
  }
  .fx-col-85-m {
    flex-basis: 85%;
    max-width: 85%;
    -ms-flex: 1 1 85%;
    -webkit-flex: 1 1 85%;
  }
  .fx-col-90-m {
    flex-basis: 90%;
    max-width: 90%;
    -ms-flex: 1 1 90%;
    -webkit-flex: 1 1 90%;
  }
  .fx-col-95-m {
    flex-basis: 95%;
    max-width: 95%;
    -ms-flex: 1 1 95%;
    -webkit-flex: 1 1 95%;
  }
  .fx-col-100-m {
    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 {
    flex-basis: 10%;
    max-width: 10%;
    -ms-flex: 1 1 10%;
    -webkit-flex: 1 1 10%;
  }
  .fx-col-15-l {
    flex-basis: 15%;
    max-width: 15%;
    -ms-flex: 1 1 15%;
    -webkit-flex: 1 1 15%;
  }
  .fx-col-20-l {
    flex-basis: 20%;
    max-width: 20%;
    -ms-flex: 1 1 20%;
    -webkit-flex: 1 1 20%;
  }
  .fx-col-22-l {
    flex-basis: 22%;
    max-width: 22%;
    -ms-flex: 1 1 22%;
    -webkit-flex: 1 1 22%;
  }
  .fx-col-25-l {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex: 1 1 25%;
    -webkit-flex: 1 1 25%;
  }
  .fx-col-30-l {
    flex-basis: 30%;
    max-width: 30%;
    -ms-flex: 1 1 30%;
    -webkit-flex: 1 1 30%;
  }
  .fx-col-33-l {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    -ms-flex: 1 1 33.3333%;
    -webkit-flex: 1 1 33.3333%;
  }
  .fx-col-35-l {
    flex-basis: 35%;
    max-width: 35%;
    -ms-flex: 1 1 35%;
    -webkit-flex: 1 1 35%;
  }
  .fx-col-40-l {
    flex-basis: 40%;
    max-width: 40%;
    -ms-flex: 1 1 40%;
    -webkit-flex: 1 1 40%;
  }
  .fx-col-45-l {
    flex-basis: 45%;
    max-width: 45%;
    -ms-flex: 1 1 45%;
    -webkit-flex: 1 1 45%;
  }
  .fx-col-50-l {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
  }
  .fx-col-55-l {
    flex-basis: 55%;
    max-width: 55%;
    -ms-flex: 1 1 55%;
    -webkit-flex: 1 1 55%;
  }
  .fx-col-60-l {
    flex-basis: 60%;
    max-width: 60%;
    -ms-flex: 1 1 60%;
    -webkit-flex: 1 1 60%;
  }
  .fx-col-65-l {
    flex-basis: 65%;
    max-width: 65%;
    -ms-flex: 1 1 65%;
    -webkit-flex: 1 1 65%;
  }
  .fx-col-66-l {
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -ms-flex: 1 1 66.6666%;
    -webkit-flex: 1 1 66.6666%;
  }
  .fx-col-70-l {
    flex-basis: 70%;
    max-width: 70%;
    -ms-flex: 1 1 70%;
    -webkit-flex: 1 1 70%;
  }
  .fx-col-75-l {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex: 1 1 75%;
    -webkit-flex: 1 1 75%;
  }
  .fx-col-78-l {
    flex-basis: 78%;
    max-width: 78%;
    -ms-flex: 1 1 78%;
    -webkit-flex: 1 1 78%;
  }
  .fx-col-80-l {
    flex-basis: 80%;
    max-width: 80%;
    -ms-flex: 1 1 80%;
    -webkit-flex: 1 1 80%;
  }
  .fx-col-85-l {
    flex-basis: 85%;
    max-width: 85%;
    -ms-flex: 1 1 85%;
    -webkit-flex: 1 1 85%;
  }
  .fx-col-90-l {
    flex-basis: 90%;
    max-width: 90%;
    -ms-flex: 1 1 90%;
    -webkit-flex: 1 1 90%;
  }
  .fx-col-95-l {
    flex-basis: 95%;
    max-width: 95%;
    -ms-flex: 1 1 95%;
    -webkit-flex: 1 1 95%;
  }
  .fx-col-100-l {
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
  }
}
.fx-col-top-xs {
  align-self: flex-start;
}

.fx-col-center-xs {
  align-self: center;
}

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

@media screen and (min-width: 490px) {
  .fx-col-top-ss {
    align-self: flex-start;
  }
  .fx-col-center-ss {
    align-self: center;
  }
  .fx-col-bottom-ss {
    align-self: flex-end;
  }
}
@media screen and (min-width: 769px) {
  .fx-col-top-s {
    align-self: flex-start;
  }
  .fx-col-center-s {
    align-self: center;
  }
  .fx-col-bottom-s {
    align-self: flex-end;
  }
}
@media screen and (min-width: 940px) {
  .fx-col-top-m {
    align-self: flex-start;
  }
  .fx-col-center-m {
    align-self: center;
  }
  .fx-col-bottom-m {
    align-self: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .fx-col-top-l {
    align-self: flex-start;
  }
  .fx-col-center-l {
    align-self: center;
  }
  .fx-col-bottom-l {
    align-self: flex-end;
  }
}
.fx-col-fix-100 {
  flex-basis: 100px;
}
.fx-col-fix-100 + .fx-col-auto {
  width: calc(100% - 100px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-------------------------*/
/* +GRID IE9               */
/*-------------------------*/
.ie9 .fx-row {
  font-size: 0;
}
.ie9 [class*=fx-row-reverse] {
  direction: rtl;
}
.ie9 [class*=fx-row-reverse] &gt; * {
  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-22-xs {
  width: 22%;
}
.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-78-xs {
  width: 78%;
}
.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: 490px) {
  .ie9 .fx-col-10-ss {
    width: 10%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-15-ss {
    width: 15%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-20-ss {
    width: 20%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-22-ss {
    width: 22%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-25-ss {
    width: 25%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-30-ss {
    width: 30%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-33-ss {
    width: 33.3333%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-35-ss {
    width: 35%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-40-ss {
    width: 40%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-45-ss {
    width: 45%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-50-ss {
    width: 50%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-55-ss {
    width: 55%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-60-ss {
    width: 60%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-65-ss {
    width: 65%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-66-ss {
    width: 66.6666%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-70-ss {
    width: 70%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-75-ss {
    width: 75%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-78-ss {
    width: 78%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-80-ss {
    width: 80%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-85-ss {
    width: 85%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-90-ss {
    width: 90%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-95-ss {
    width: 95%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
  .ie9 .fx-col-100-ss {
    width: 100%;
  }
  .ie9 .fx-row-start-ss {
    text-align: left;
  }
  .ie9 .fx-row-center-ss, .ie9 .fx-row-between-ss, .ie9 .fx-row-around-ss {
    text-center: right;
  }
}
@media screen and (min-width: 769px) {
  .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-22-s {
    width: 22%;
  }
  .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-78-s {
    width: 78%;
  }
  .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-22-m {
    width: 22%;
  }
  .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-78-m {
    width: 78%;
  }
  .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-22-l {
    width: 22%;
  }
  .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-78-l {
    width: 78%;
  }
  .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%;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

a {
  text-decoration: none;
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
}

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

h2, h3, h4 {
  margin: 0;
}

/*:root, html, body {
    background-color: $color-base;
    color: $color-main-text;
    width: 100%;
}
* {
    box-sizing: border-box;
}



a {
    color: $color-main-text;
}
a:hover {
    text-decoration: none;
    color: $color-link;
}*/
.pc-only {
  display: initial;
}
@media only screen and (max-width: 940px) {
  .pc-only {
    display: none !important;
  }
}

@media only screen and (min-width: 770px) {
  .pc-tab-only {
    display: initial;
  }
}
@media only screen and (max-width: 769px) {
  .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: 770px) {
  .sp-only {
    display: none !important;
  }
}
@media only screen and (max-width: 769px) {
  .sp-only {
    display: initial !important;
  }
}

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

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

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

.fixed {
  position: fixed !important;
  top: 0;
}

.sticky {
  position: sticky;
}

body {
  position: relative;
  font-size: 19px;
  word-break: break-all;
}
@media only screen and (max-width: 769px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #000;
}

img:not([src$="822bfead9e9fff2a7234ac17534a159d.png"]) {
  width: auto;
  max-width: 100%;
}

p {
  line-height: 180%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

input[type=checkbox],
input[type=radio] {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
}

.alignnone {
  margin: 0rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  position: relative;
  overflow-x: hidden;
}
body:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

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

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

.Contents .container {
  width: 98%;
}
.Contents .Section {
  position: relative;
  z-index: 2;
}
.Contents .Section + .Section {
  padding: 180px 0 0;
}
.Contents .Section [class*=fx-col] {
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 0;
}
.Contents .Section h2 {
  margin-bottom: 30px;
  font-size: 43px;
  text-align: center;
  font-weight: bold;
}
.Contents .Section h3 {
  margin-bottom: 30px;
  text-align: center;
  font-weight: normal;
  font-size: 25px;
}
.Contents .Section h4, .Contents .Section h5 {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 23px;
}
@media only screen and (max-width: 769px) {
  .Contents .Section {
    padding: 45px 0;
  }
  .Contents .Section h2 {
    margin-bottom: 45px;
    font-size: 31px;
  }
  .Contents .Section h3 {
    margin-bottom: 22.5px;
    font-size: 24px;
  }
  .Contents .Section h4, .Contents .Section h5 {
    margin-bottom: 15px;
    font-size: 23px;
  }
}
.Contents a:hover {
  opacity: 0.8;
  filter: alpha(opacity=8); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 0.8; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0.8; /* Safari 1.x */
  transition: all 0.3s ease;
}

.kaiten {
  color: #00698c;
  font-size: 3em;
  /*    -moz-animation: r_spin 5.0s linear infinite;
      -ms-animation: r_spin 5.0s linear infinite;
      -o-animation: r_spin 5.0s linear infinite;*/
  animation: r_spin 5s linear infinite;
}
/*
@-moz-keyframes r_spin {
    0% {-moz-transform: rotate(0deg);}
    100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes r_spin {
    0% {-ms-transform: rotate(0deg);}
    100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes r_spin {
    0% {-o-transform: rotate(0deg);}
    100% {-o-transform: rotate(360deg);}
}
*/
@keyframes r_spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.js-animation {
  opacity: 0;
  filter: alpha(opacity=0); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 0; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0; /* Safari 1.x */
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.js-animation-group-item {
  opacity: 0;
  filter: alpha(opacity=0); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 0; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0; /* Safari 1.x */
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.fadeInDown {
  animation-fill-mode: both;
  animation-duration: 0.5s;
  animation-name: fadeInDown;
  visibility: visible !important;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); /* ie lt 8 */
    -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
    -moz-opacity: 0; /* FF lt 1.5, Netscape */
    -khtml-opacity: 0; /* Safari 1.x */
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=10); /* ie lt 8 */
    -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
    -moz-opacity: 1; /* FF lt 1.5, Netscape */
    -khtml-opacity: 1; /* Safari 1.x */
    transform: translateY(0);
  }
}
.SimpleFadeIn {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: SimplefadeIn;
  visibility: visible !important;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); /* ie lt 8 */
    -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
    -moz-opacity: 0; /* FF lt 1.5, Netscape */
    -khtml-opacity: 0; /* Safari 1.x */
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=10); /* ie lt 8 */
    -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
    -moz-opacity: 1; /* FF lt 1.5, Netscape */
    -khtml-opacity: 1; /* Safari 1.x */
  }
}
.blur {
  -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);
  transition: 0.3s ease-in-out;
}

.blink_on {
  animation: blinking 2s linear infinite;
}
/*@-moz-keyframes blinking {
    0% { @include opacity(0);}
    50% {@include opacity(1);}
    100% {@include opacity(0);}
}
@-ms-keyframes blinking {
    0% { @include opacity(0);}
    50% {@include opacity(1);}
    100% {@include opacity(0);}
}
@-o-keyframes blinking {
    0% { @include opacity(0);}
    50% {@include opacity(1);}
    100% {@include opacity(0);}
}*/
@keyframes blinking {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); /* ie lt 8 */
    -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
    -moz-opacity: 0; /* FF lt 1.5, Netscape */
    -khtml-opacity: 0; /* Safari 1.x */
  }
  50% {
    opacity: 1;
    filter: alpha(opacity=10); /* ie lt 8 */
    -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
    -moz-opacity: 1; /* FF lt 1.5, Netscape */
    -khtml-opacity: 1; /* Safari 1.x */
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); /* ie lt 8 */
    -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
    -moz-opacity: 0; /* FF lt 1.5, Netscape */
    -khtml-opacity: 0; /* Safari 1.x */
  }
}
@keyframes bg-slider {
  from {
    background-position: center center;
  }
  to {
    background-position: -400px center;
  }
  /* 1518pxとは使用した背景画像の長さ */
}
@keyframes bg-slider-sp {
  from {
    background-position: center center;
  }
  to {
    background-position: -600px center;
  }
  /* 1518pxとは使用した背景画像の長さ */
}
@keyframes bg-slider-angled {
  from {
    background-position: center center;
  }
  to {
    background-position: -400px -10%;
  }
  /* 1518pxとは使用した背景画像の長さ */
}
@keyframes bg-slider-angled-sp {
  from {
    background-position: center center;
  }
  to {
    background-position: -600px -10%;
  }
  /* 1518pxとは使用した背景画像の長さ */
}
.is-animation .u-animation:before {
  animation-name: obiStart, obiEnd;
  animation-duration: 0.6s, 0.6s;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
  animation-delay: 0s, 0.6s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.is-animation .u-animation__inner {
  animation-name: obiInner;
  animation-duration: 0s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.is-animation .u-animation--1:before {
  animation-delay: 0.1s, 0.7s;
}

.is-animation .u-animation--1 .u-animation__inner {
  animation-delay: 0.7s;
}

.is-animation .u-animation--2:before {
  animation-delay: 0.2s, 0.8s;
}

.is-animation .u-animation--2 .u-animation__inner {
  animation-delay: 0.8s;
}

.is-animation .u-animation--3:before {
  animation-delay: 0.3s, 0.9s;
}

.is-animation .u-animation--3 .u-animation__inner {
  animation-delay: 0.9s;
}

.is-animation .u-animation--4:before {
  animation-delay: 0.4s, 1s;
}

.is-animation .u-animation--4 .u-animation__inner {
  animation-delay: 1s;
}

.is-animation .u-animation--5:before {
  animation-delay: 0.5s, 1.1s;
}

.is-animation .u-animation--5 .u-animation__inner {
  animation-delay: 1.1s;
}

.is-animation .u-animation--6:before {
  animation-delay: 0.6s, 1.2s;
}

.is-animation .u-animation--6 .u-animation__inner {
  animation-delay: 1.2s;
}

.is-animation .u-animation--7:before {
  animation-delay: 0.7s, 1.3s;
}

.is-animation .u-animation--7 .u-animation__inner {
  animation-delay: 1.3s;
}

.is-animation .u-animation--8:before {
  animation-delay: 0.8s, 1.4s;
}

.is-animation .u-animation--8 .u-animation__inner {
  animation-delay: 1.4s;
}

.is-animation .u-animation--9:before {
  animation-delay: 0.9s, 1.5s;
}

.is-animation .u-animation--9 .u-animation__inner {
  animation-delay: 1.5s;
}

.is-animation .u-animation--10:before {
  animation-delay: 1s, 1.6s;
}

.is-animation .u-animation--10 .u-animation__inner {
  animation-delay: 1.6s;
}

.u-animation {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: transparent !important;
  padding: 0 !important;
}

.u-animation:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translateX(-101%);
  top: 0;
  left: 0;
  z-index: 1;
}

.u-animation--full {
  display: block !important;
}

@media (min-width: 1024px) {
  .u-animation--mdIb {
    display: inline-block !important;
  }
}
@media (min-width: 1024px) {
  .u-animation--mdfull {
    display: block !important;
  }
}
.u-animation__inner {
  opacity: 0;
  padding: 0 !important;
}

.js-customanimation .animation-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: transparent !important;
  padding: 0 !important;
}
@media only screen and (max-width: 769px) {
  .js-customanimation .animation-container {
    width: 80%;
  }
}
.js-customanimation .animation-container::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  transform: translateX(-101%);
  top: 0;
  left: 0;
  z-index: 1;
}
.js-customanimation .animation-container .animation--item {
  opacity: 0;
  padding: 0 !important;
}
.js-customanimation.is-animation .animation-container::before {
  animation-name: obiStart, obiEnd;
  animation-duration: 0.6s, 0.6s;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
  animation-delay: 0s, 0.6s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.js-customanimation.is-animation .animation-container .animation--item {
  animation-name: obiInner;
  animation-duration: 0s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
@keyframes obiInner {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes obiStart {
  0% {
    transform: translateX(-101%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes obiEnd {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes indexShow {
  0% {
    clip: rect(0 100vw 100vh 100vw);
  }
  5% {
    clip: rect(0 100vw 100vh 100vw);
  }
  100% {
    clip: rect(0 100vw 100vh 0);
  }
}
@keyframes indexSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-9vw);
  }
}
@keyframes indexSlide2 {
  0% {
    transform: translateX(0) translateY(-6vh);
  }
  100% {
    transform: translateX(-9vw) translateY(0vw);
  }
}
@keyframes indexSlide3 {
  0% {
    transform: translateX(0) translateY(6vh);
  }
  100% {
    transform: translateX(-9vw) translateY(0vw);
  }
}
.CssFadeIn__item {
  opacity: 0;
  filter: alpha(opacity=0); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 0; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0; /* Safari 1.x */
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(1) {
  animation: css-fadein 1.5s ease 0.3s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(2) {
  animation: css-fadein 1.5s ease 0.6s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(3) {
  animation: css-fadein 1.5s ease 0.9s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(4) {
  animation: css-fadein 1.5s ease 1.2s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(5) {
  animation: css-fadein 1.5s ease 1.5s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(6) {
  animation: css-fadein 1.5s ease 1.8s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(7) {
  animation: css-fadein 1.5s ease 2.1s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(8) {
  animation: css-fadein 1.5s ease 2.4s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(9) {
  animation: css-fadein 1.5s ease 2.7s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(10) {
  animation: css-fadein 1.5s ease 3s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(11) {
  animation: css-fadein 1.5s ease 3.3s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(12) {
  animation: css-fadein 1.5s ease 3.6s 1 forwards;
}
.CssFadeIn.is-animation .CssFadeIn__item:nth-child(13) {
  animation: css-fadein 1.5s ease 3.9s 1 forwards;
}

#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(1) {
  animation: css-fadein 0.8s ease 0s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(2) {
  animation: css-fadein 0.8s ease 0.1s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(3) {
  animation: css-fadein 0.8s ease 0.2s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(4) {
  animation: css-fadein 0.8s ease 0.3s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(5) {
  animation: css-fadein 0.8s ease 0.4s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(6) {
  animation: css-fadein 0.8s ease 0.5s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(7) {
  animation: css-fadein 0.8s ease 0.6s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(8) {
  animation: css-fadein 0.8s ease 0.7s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(9) {
  animation: css-fadein 0.8s ease 0.8s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(10) {
  animation: css-fadein 0.8s ease 0.9s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(11) {
  animation: css-fadein 0.8s ease 1s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(12) {
  animation: css-fadein 0.8s ease 1.1s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(13) {
  animation: css-fadein 0.8s ease 1.2s 1 forwards;
}
#OneCharFadeIn.CssFadeIn.is-animation .CssFadeIn__item:nth-child(14) {
  animation: css-fadein 0.8s ease 1.3s 1 forwards;
}

#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(1) {
  animation: css-fadein 0.8s ease 0s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(2) {
  animation: css-fadein 0.8s ease 0.1s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(3) {
  animation: css-fadein 0.8s ease 0.2s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(4) {
  animation: css-fadein 0.8s ease 0.3s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(5) {
  animation: css-fadein 0.8s ease 0.4s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(6) {
  animation: css-fadein 0.8s ease 0.5s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(7) {
  animation: css-fadein 0.8s ease 0.6s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(8) {
  animation: css-fadein 0.8s ease 0.7s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(9) {
  animation: css-fadein 0.8s ease 0.8s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(10) {
  animation: css-fadein 0.8s ease 0.9s 1 forwards;
}
#OneCharFadeIn2.CssFadeIn.is-animation .CssFadeIn__item:nth-child(11) {
  animation: css-fadein 0.8s ease 1s 1 forwards;
}

#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(1) {
  animation: css-fadein 0.8s ease 0s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(2) {
  animation: css-fadein 0.8s ease 0.1s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(3) {
  animation: css-fadein 0.8s ease 0.2s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(4) {
  animation: css-fadein 0.8s ease 0.3s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(5) {
  animation: css-fadein 0.8s ease 0.4s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(6) {
  animation: css-fadein 0.8s ease 0.5s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(7) {
  animation: css-fadein 0.8s ease 0.6s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(8) {
  animation: css-fadein 0.8s ease 0.7s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(9) {
  animation: css-fadein 0.8s ease 0.8s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(10) {
  animation: css-fadein 0.8s ease 0.9s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(11) {
  animation: css-fadein 0.8s ease 1s 1 forwards;
}
#OneCharFadeIn3.CssFadeIn.is-animation .CssFadeIn__item:nth-child(12) {
  animation: css-fadein 0.8s ease 1.1s 1 forwards;
}

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

#BlogSubSection .Section__body {
  width: 100%;
  margin-top: 0;
  overflow: hidden;
}
@media only screen and (max-width: 769px) {
  #BlogSubSection .Section__body {
    width: 100%;
    overflow: hidden;
  }
}
#BlogSubSection .bx-wrapper {
  box-shadow: none;
  border: none;
  background: transparent;
}
#BlogSubSection .bx-wrapper .bx-viewport {
  box-shadow: none;
  overflow: visible !important;
}
#BlogSubSection #ImageLayerContainer {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#BlogSubSection #ImageLayerContainer #ImageLayerWrapper {
  position: relative;
}
#BlogSubSection #ImageLayerContainer #js-ImageLayer .js-ImageLayer__item {
  position: relative;
}
#BlogSubSection #ImageLayerContainer #js-ImageLayer .js-ImageLayer__item.fadeout {
  opacity: 0;
}
#BlogSubSection #ImageLayerContainer #js-ImageLayer .js-ImageLayer__item span {
  display: block;
  opacity: 0.8;
  transition: all 0.5s;
  padding: 30% 0;
}
#BlogSubSection #ImageLayerContainer #js-ImageLayer .js-ImageLayer__item.active-slide {
  opacity: 1;
  z-index: 1000;
}
#BlogSubSection #ImageLayerContainer #js-ImageLayer.onload .js-ImageLayer__item span {
  transform: translateY(-50%);
}
@media only screen and (max-width: 769px) {
  #BlogSubSection #ImageLayerContainer #js-ImageLayer.onload .js-ImageLayer__item span {
    transform: translateY(-50%);
  }
}
#BlogSubSection #ImageLayerContainer #js-ImageLayer.onload .js-ImageLayer__item.active-slide span {
  transform: translateY(-50%);
  opacity: 1;
  filter: alpha(opacity=10); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 1; /* FF lt 1.5, Netscape */
  -khtml-opacity: 1; /* Safari 1.x */
}
#BlogSubSection #ImageLayerContainer #js-ImageLayer.onload .js-ImageLayer__item.active-slide span::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* width: 160%; */
  /* height: 160%; */
  border: 5px solid #8e1d22;
}
@media only screen and (max-width: 769px) {
  #BlogSubSection #ImageLayerContainer #js-ImageLayer.onload .js-ImageLayer__item.active-slide span {
    transform: translateY(-50%);
  }
}
#BlogSubSection #js-TextLayer {
  margin-top: 50px;
}
#BlogSubSection #js-TextLayer p {
  text-align: center;
  font-size: 22.5px;
}
#BlogSubSection .OverlayTransparent__item {
  display: block;
  width: 14vw;
  padding: 15% 0;
  background: #fff;
  position: absolute;
  z-index: 100;
  top: 30%;
}
#BlogSubSection .OverlayTransparent__item.left__item {
  left: 0;
}
#BlogSubSection .OverlayTransparent__item.right__item {
  right: 0;
}
#BlogSubSection #BlogControls {
  width: 125%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: -12.5%;
  right: 0;
  z-index: 1000;
  font-size: 0;
  position: relative;
}
@media only screen and (max-width: 769px) {
  #BlogSubSection #BlogControls {
    width: 100%;
    left: 0;
  }
}
#BlogSubSection #BlogControls li {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#BlogSubSection #BlogControls li#BlogLeft a, #BlogSubSection #BlogControls li#BlogRight a {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 88%;
  color: #8e1d22;
  text-indent: -1000em;
  overflow: hidden;
  width: 50px;
  height: 50px;
  background: #8e1d22;
  padding: 0 !important;
  overflow: hidden;
}
#BlogSubSection #BlogControls li#BlogLeft {
  transform: translateX(-50%) translateY(-7px);
  margin-top: -10%;
  left: 0;
}
@media only screen and (max-width: 939px) and (min-width: 770px) {
  #BlogSubSection #BlogControls li#BlogLeft {
    margin-top: -11%;
  }
}
@media only screen and (max-width: 769px) {
  #BlogSubSection #BlogControls li#BlogLeft {
    transform: translateX(-50%) translateY(-94%);
    margin-top: 0;
  }
}
#BlogSubSection #BlogControls li#BlogLeft a::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  transform: rotate(-135deg);
  display: inline-block;
  position: absolute;
  top: -4px;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
  border-color: #fbeeee;
  left: 20px;
  text-indent: -10000rem;
  overflow: hidden;
}
#BlogSubSection #BlogControls li#BlogRight {
  transform: translateX(50%) translateY(-7px);
  margin-top: -10%;
  right: 0;
}
@media only screen and (max-width: 939px) and (min-width: 770px) {
  #BlogSubSection #BlogControls li#BlogRight {
    margin-top: -11%;
  }
}
@media only screen and (max-width: 769px) {
  #BlogSubSection #BlogControls li#BlogRight {
    transform: translateX(50%) translateY(-94%);
    margin-top: 0;
  }
}
#BlogSubSection #BlogControls li#BlogRight a::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
  border-color: #fbeeee;
  right: 22px;
}
@media only screen and (max-width: 769px) {
  #BlogSubSection #BlogControls li#BlogLeft a, #BlogSubSection #BlogControls li#BlogRight a {
    background-size: 90%;
  }
}
@media only screen and (max-width: 769px) {
  #BlogSubSection {
    padding-top: 0;
    margin-top: 60px !important;
  }
  #BlogSubSection #js-TextLayer {
    margin-top: 33%;
  }
  #BlogSubSection #js-TextLayer p {
    font-size: 20px;
    width: 95%;
    margin: auto;
  }
}

#TopSliderContainer .bx-wrapper {
  box-shadow: none;
  border: none;
  background: transparent;
}
#TopSliderContainer .bx-wrapper .bx-viewport {
  box-shadow: none;
}

.Section__foot {
  text-align: center;
}

.check_archive {
  padding: 30px 142.5px 30px 60px;
  display: inline-block;
  background: rgb(35, 24, 21);
  color: #fff;
  background-image: url(./images/archive_arrow.png);
  background-repeat: no-repeat;
  transition: 0.3s;
  background-position: 195px 30px;
  background-size: 58px;
}
.check_archive:hover {
  background-position: 210px 30px;
}
@media only screen and (max-width: 769px) {
  .check_archive {
    display: block;
    padding: 25px 90px 25px 35px;
    width: 100%;
    background-position: right 18px bottom 27px;
  }
  .check_archive:hover {
    background-position: right 30px bottom 27px;
  }
}

#m-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 100vh;
  background-color: #f2f2f2;
  display: block;
}

#m-loader.is-end {
  visibility: hidden;
  animation-name: fade-out;
}

@keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 0.5;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    visibility: visible;
    opacity: 1;
  }
  50% {
    visibility: visible;
    opacity: 0.5;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
.box-pagenation {
  width: 76%;
  max-width: 980px;
  margin: auto;
}

.box-pagenation ul {
  display: flex;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}

.box-pagenation ul li + li {
  margin-left: 6px;
}

.box-pagenation a, .box-pagenation .current {
  width: 35px;
  height: 35px;
  display: block;
  border: 1px solid #000;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px;
  line-height: 1.4;
}

.box-pagenation a.small,
.box-pagenation .small {
  font-size: 0.8rem;
  line-height: 2;
}

.box-pagenation a {
  color: #000;
  background: #FFF;
}

.box-pagenation a:hover {
  color: rgba(0, 67, 118, 0.5);
}

.box-pagenation .current {
  color: #FFF;
  background: #000;
}

.box-pagenation .first, .box-pagenation .last {
  position: relative;
}

.box-pagenation .first:before, .box-pagenation .first:after, .box-pagenation .last:before, .box-pagenation .last:after {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
  border-color: #000;
}

.box-pagenation .first:hover:before, .box-pagenation .first:hover:after, .box-pagenation .last:hover:before, .box-pagenation .last:hover:after {
  border-color: rgba(0, 67, 118, 0.5);
}

.box-pagenation .prev, .box-pagenation .next {
  position: relative;
}

.box-pagenation .prev:before, .box-pagenation .next:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
  border-color: #000;
}

.box-pagenation .prev:hover:before, .box-pagenation .next:hover:before {
  border-color: rgba(0, 67, 118, 0.5);
}

.box-pagenation .first:before, .box-pagenation .first:after {
  transform: rotate(-135deg);
}

.box-pagenation .first:before {
  left: 13px;
}

.box-pagenation .first:after {
  left: 18px;
}

.box-pagenation .prev:before {
  transform: rotate(-135deg);
  left: 15px;
}

.box-pagenation .last:before {
  right: 13px;
}

.box-pagenation .last:after {
  right: 18px;
}

.box-pagenation .next:before {
  right: 15px;
}

@media screen and (max-width: 768.9px) {
  .box-pagenation#sanyo {
    width: 100%;
  }
  .box-pagenation a, .box-pagenation .current {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    line-height: 1;
    padding: 7px 5px 0px 4px;
  }
  .box-pagenation ul li + li {
    margin-left: 10px;
  }
  .box-pagenation .next:before {
    right: 8px;
  }
  .box-pagenation .next:before {
    right: 11px;
  }
  .box-pagenation .prev:before {
    transform: rotate(-135deg);
    left: 12px;
  }
  .box-pagenation .last:before {
    right: 7px;
  }
  .box-pagenation .last:after {
    right: 15px;
  }
  .box-pagenation .first:before {
    left: 8px;
  }
  .box-pagenation .first:before {
    left: 7px;
  }
  .box-pagenation .first:after {
    left: 15px;
  }
  .box-pagenation li.number {
    line-height: 1.7;
  }
  .box-pagenation li.number:nth-of-type(5) ~ li.number {
    display: none;
  }
  .box-pagenation li.number.current.digits_3, .box-pagenation li.number.digits_3 a {
    width: auto;
  }
}
.TopicCard {
  position: relative;
  box-shadow: 2px 2px 4px #dcdcdc;
  padding: 15px;
  height: 100%;
}
.TopicCard__sub a {
  display: block;
  padding: 50% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.TopicCard__main {
  padding-left: 15px !important;
}
.TopicCard__main p {
  margin-bottom: 5px;
}
.TopicCard__main .TopicCard--text {
  font-size: 14px;
  display: block;
}
.TopicCard__main .TopicCard--date {
  font-size: 14px;
  vertical-align: middle;
}
.TopicCard__main .TopicCard--title {
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin: 3px 0 0;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.topiccategory {
  border-radius: 3px;
  display: inline-block;
  border-radius: 2px;
  min-width: 40%;
  text-align: center;
  color: #000 !important;
  background: #fff !important;
  font-size: 13px;
  padding: 2px 10px;
  border-radius: 12px;
  border: 1px solid #000;
  margin-right: 10px;
  vertical-align: middle;
}
.topiccategory.category--event {
  background-color: #e61b5b;
}
.topiccategory.category--product {
  background-color: #ba6201;
}

@media only screen and (max-width: 769px) {
  .topiccategory {
    display: inline-block;
    border-radius: 12px;
    min-width: 45%;
    text-align: center;
    color: #fff;
    font-size: 11px;
    padding: 2px 10px 1px;
  }
  .topiccategory.category--event {
    background-color: #e61b5b;
  }
  .topiccategory.category--product {
    background-color: #ba6201;
  }
}
.EachSideContent .TopicCard__main .TopicCard--date {
  margin-bottom: 0;
}
.EachSideContent .TopicCard__main .TopicCard--title {
  height: 16px;
}
.EachSideContent .TopicCard__main .TopicCard--text {
  margin-bottom: 0;
}
.EachSideContent .topiccategory {
  margin-bottom: 2px;
}
@media only screen and (max-width: 769px) {
  .EachSideContent .TopicCard__main .TopicCard--date {
    font-size: 15px;
  }
  .EachSideContent .TopicCard__main .TopicCard--text {
    font-size: 12px;
  }
}

.EachSideContent .TopicCard__sub {
  background-size: cover;
}

.Header {
  position: fixed;
  text-align: right;
  top: 0;
  z-index: 100;
  background: #fff;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.Header &gt; div {
  display: inline-block;
  vertical-align: middle;
}
.Header--logo {
  text-align: left;
}
.Header--logo a {
  width: calc(50% - 30px);
  text-align: left;
}
.Header--logo img {
  max-width: 275px;
  width: 100%;
  padding-left: 15px;
}
.Header .HeaderMenu {
  font-size: 0;
}
.Header .HeaderMenu__item {
  display: inline-block;
}
.Header .HeaderMenu__item a {
  display: inline-block;
  padding: 0 10px;
  font-size: 15px;
  padding: 12px 20px 12px;
  font-weight: bold;
  font-style: italic;
}
.Header .HeaderMenu__item.eng a {
  font-size: 18px;
}
.Header--subinfo .HeaderSubinfo {
  text-align: right;
  font-size: 0;
}
.Header--subinfo .HeaderSubinfo__item {
  display: inline-block;
  vertical-align: middle;
  width: 95px;
}
.Header--subinfo .HeaderSubinfo__item#HeaderMenuContainer {
  width: auto;
}
.Header--subinfo .HeaderSubinfo__item#HeaderInfo {
  padding-right: 30px;
  width: 50%;
}
.Header--subinfo .HeaderSubinfo__item#HeaderInfo a {
  display: block;
  padding-bottom: 10px;
}
@media only screen and (max-width: 940px) {
  .Header {
    text-align: left;
  }
  .Header--logo {
    width: 100%;
    position: relative;
    z-index: 100;
    background: #fff;
    padding-top: 4px;
    padding: 8px 0;
  }
  .Header--logo img {
    max-width: 200px;
    width: 50%;
  }
  .Header--logo a {
    left: 15px;
  }
  .Header .MenuContainer {
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 1px #ddd;
  }
  .Header .HeaderMenu {
    font-size: 0;
  }
  .Header .HeaderMenu__item {
    display: block;
  }
  .Header .HeaderMenu__item:nth-child(1) a {
    margin-top: 30px;
  }
  .Header .HeaderMenu__item a {
    display: block;
    padding: 15px 0;
  }
  .Header--subinfo {
    max-width: 536px;
  }
  .Header--subinfo .HeaderSubinfo {
    text-align: right;
    font-size: 0;
  }
  .Header--subinfo .HeaderSubinfo__item {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
  }
  .Header--subinfo .HeaderSubinfo__item#HeaderInfo {
    display: none;
  }
}

@media only screen and (max-width: 1165px) and (min-width: 941px) {
  #Contents {
    padding-top: 66px !important;
  }
  .Header--logo img {
    width: 240px;
  }
  .Header--subinfo .HeaderMenu__item a {
    padding: 12px 10px 12px;
    font-size: 15px !important;
  }
  .Header--subinfo .HeaderSubinfo__item {
    width: 70px;
  }
}
#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

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

@media only screen and (max-width: 940px) {
  #navibtn {
    display: block;
    position: absolute;
    right: 10px;
    z-index: 1000;
    top: 50%;
    transform: translateY(-50%);
  }
  #navibtn::before {
    display: block;
    position: absolute;
    content: "";
    transform: translateY(-50%);
    top: calc(50% + 1px);
    right: 30px;
    z-index: 1000;
    width: 55px;
    color: #000;
    font-size: 1rem;
    font-weight: normal;
  }
  #navibtn span {
    display: block;
    width: 25px;
    height: 25px;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span::after {
    position: absolute;
    left: 0px;
    content: "";
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease-out;
  }
  #navibtn span span::after {
    background-color: #000;
  }
  /*上の棒*/
  #navibtn span span::before {
    top: 2px;
  }
  #menu-navibtn:checked + .Header label#navibtn span span::before {
    top: 9px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom: 1px;
  }
  #menu-navibtn:checked + .Header label#navibtn &gt; span::after {
    bottom: 14px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top: 12px;
  }
  #menu-navibtn:checked + .Header label#navibtn span span::after {
    display: none;
  }
  .MenuContainer {
    position: absolute;
    display: block !important;
    z-index: 50;
    transition: 0.2s;
    background: #fff;
    transform: translateY(-140%);
    width: 100%;
    overflow: hidden;
  }
  .MenuContainer .Menu {
    display: block;
    margin-bottom: 30px;
  }
  .MenuContainer .Menu .Menu__item {
    display: block;
    border-bottom: none;
    padding-top: 5px;
  }
  .MenuContainer .Menu .Menu__item a {
    transition: 0.5s;
    padding: 15px 0 15px 10px;
    width: calc(100% - 60px);
    margin: auto;
    border-bottom: 1px solid #8e1d22;
    font-size: 15px;
  }
  .MenuContainer .Menu .Menu__item a::before, .MenuContainer .Menu .Menu__item a::after {
    border-left: none !important;
    border-right: none !important;
  }
  .MenuContainer .Menu .Menu__item:hover {
    background: #8e1d22;
  }
  .MenuContainer .Menu .Menu__item:hover a {
    color: #fff;
  }
  .MenuContainer .Menu .Menu__item:last-child {
    margin-bottom: 20px;
  }
  .MenuContainer .ExtraMenu {
    text-align: center;
    width: 100%;
    display: block !important;
  }
  .MenuContainer .ExtraMenu__item {
    padding: 0 2%;
    display: inline-block;
    width: 58%;
  }
  .MenuContainer .ExtraMenu__item:nth-child(2) {
    width: 39%;
  }
  .MenuContainer .ExtraMenu__item a {
    display: inline-block;
    border-bottom: 1px solid #8e1d22;
    padding: 5px;
    font-size: 1.8rem;
  }
  .MenuContainer .CloseButton {
    display: block !important;
    width: 100%;
  }
  .MenuContainer .CloseButton a {
    display: block;
    margin: 25px auto;
    width: 97.5%;
    border: 1px solid #8e1d22;
    border-radius: 5px;
    text-align: center;
    padding: 15px 0;
    color: #8e1d22;
  }
  #menu-navibtn + .Header .Header__head {
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.5);
  }
  #menu-navibtn:checked + .Header .MenuContainer {
    transform: translateY(0%);
    top: 15px;
  }
}
@media only screen and (max-width: 769px) {
  #SideContents {
    margin-top: 90px;
  }
}

@media only screen and (min-width: 770px) {
  .EachSideContent {
    padding: 0 30px;
  }
}
.EachSideContent .TopicCardContainer {
  margin-bottom: 45px;
}
.EachSideContent .TopicCardContainer .TopicCard-category {
  font-size: 12px;
  padding: 0px 8px;
}
.EachSideContent .TopicCardContainer .TopicCard--date, .EachSideContent .TopicCardContainer .TopicCard--text {
  font-size: 13px;
}

.CatalogSection {
  background-color: white;
  padding-top: 60px !important;
  margin-top: 60px !important;
  padding-bottom: 60px !important;
}
.CatalogSection .container {
  max-width: 900px;
}
@media only screen and (max-width: 940px) {
  .CatalogSection .Section__head {
    margin-bottom: 30px !important;
  }
}
.CatalogSection .Section__body {
  padding-top: 30px;
  margin-top: 0 !important;
  text-align: center;
}
.CatalogSection .Section__body a {
  display: inline-block;
  box-shadow: 0 0 3px #d2d2d2;
}
@media only screen and (max-width: 940px) {
  .CatalogSection .Section__body {
    padding-top: 0 !important;
  }
}

#CatalogSection__head {
  font-size: 34px;
}

.AboutUsSection {
  background-color: rgb(35, 24, 21);
  margin-top: 0 !important;
  padding-top: 60px !important;
  padding-bottom: 45px !important;
  color: #fff;
}
.AboutUsSection .Section__body {
  margin-top: 0 !important;
}
.AboutUsSection #ShopPhotoBg {
  background-position: center;
  background-size: cover;
  padding: 30% 0;
}
.AboutUsSection .SubSection__inner {
  padding: 30px;
}
.AboutUsSection .SubSection__head {
  color: #fff;
  font-style: italic;
  text-align: left !important;
  font-size: 34px !important;
  margin-bottom: 30px !important;
}
.AboutUsSection .SubSection__body {
  position: relative;
}
@media only screen and (min-width: 940px) {
  .AboutUsSection .SubSection__foot {
    margin-top: 15px;
  }
}
.AboutUsSection .SubSection .SubSection__foot {
  padding-left: 30px;
  text-align: center;
  margin-top: 10px;
}
@media only screen and (min-width: 940px) {
  .AboutUsSection .SubSection .SubSection__foot {
    min-height: 80px;
    position: relative;
  }
  .AboutUsSection .SubSection .SubSection__foot &gt; * {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.AboutUsSection .SubSection .SubSection__foot a {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 5px 15px 6px;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 19px;
  font-size: 16px;
}
.AboutUsSection .SubSection#BlogSection .SubSection__foot a {
  margin-top: 30px;
}
.AboutUsSection .SubSection#InstaSubSection .SubSection__head a {
  color: #fff;
}
.AboutUsSection .SubSection#InstaSubSection .EachInsta {
  background: #fff;
  padding: 50% 0;
  border: 1px solid #8e1d22;
}
.AboutUsSection .SubSection .SubSection__foot p &gt; * {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 10px;
}
.AboutUsSection .SubSection .SubSection__foot p {
  text-align: center;
  font-stretch: normal;
  line-height: 1.4;
}
.AboutUsSection .SubSection .SubSection__foot p span {
  display: inline-block;
  text-align: left;
}
.AboutUsSection .SubSection.ShopInfo .SubSection__foot {
  position: relative;
}
@media only screen and (min-width: 940px) {
  .AboutUsSection .SubSection.ShopInfo .SubSection__foot::before {
    content: "";
    height: 100%;
    border-left: 1px solid grey;
    display: block;
    width: 1px;
    position: absolute;
    left: -30px;
  }
}
@media only screen and (max-width: 769px) {
  .AboutUsSection .SubSection__inner {
    padding: 30px 0;
  }
  .AboutUsSection .SubSection__foot {
    padding-left: 0 !important;
  }
  .AboutUsSection .SubSection__foot &gt; p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left !important;
  }
  .AboutUsSection .SubSection__foot &gt; p .open_time {
    margin-right: 0px;
    margin-left: 0;
  }
  .AboutUsSection .SubSection__foot &gt; p a {
    margin-left: 0px !important;
    margin-right: 0 !important;
    font-size: 12px !important;
    padding: 5px 10px 6px !important;
  }
  .AboutUsSection .SubSection#AboutUsSubSection {
    position: relative;
    margin-bottom: 45px;
  }
  .AboutUsSection .SubSection#AboutUsSubSection .SubSection__foot {
    padding-left: 0;
  }
  .AboutUsSection #ShopInfo.SubSection .SubSection__foot p .open_time {
    margin-right: 0px;
    margin-left: 0;
  }
  .AboutUsSection #ShopInfo.SubSection .SubSection__foot p a {
    margin-left: 0px !important;
  }
}

.FooterBannerContainer {
  align-items: center;
  margin-top: 30px;
}
@media only screen and (min-width: 940px) {
  .FooterBannerContainer {
    position: absolute;
    bottom: 0;
  }
}
.FooterBannerContainer .EachFooterBanner {
  padding: 0 10px;
}

.Footer {
  padding-bottom: 0;
  padding-top: 30px;
  background-color: #fff;
}
.Footer__head {
  text-align: center;
  margin-bottom: 15px;
}
.Footer__body {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.Footer__foot {
  text-align: center;
  background-color: #adadad;
}
.Footer__foot .FooterMenu__item {
  display: inline-block;
}
.Footer__foot .FooterMenu__item a {
  display: inline-block;
  margin: 7px;
  color: #fff;
  padding: 5px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 769px) {
  .Footer__foot .FooterMenu__item a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 940px) {
  .Footer__head img {
    max-width: 220px !important;
  }
}

.copyright {
  text-align: center;
  padding: 10px 0 10px;
  margin-bottom: 0;
  font-size: 14px;
}
@media only screen and (max-width: 769px) {
  .copyright {
    padding-bottom: 16.4vw;
  }
}

#js-ImageLayer {
  opacity: 0;
}

#BlogModalContent {
  height: 0;
  overflow: hidden;
}

#ShopMap iframe {
  width: 100%;
  height: 100%;
}

#FooterMenuScroll {
  transition: opacity 0.4s cubic-bezier(0.34, 0, 0.78, 1);
  opacity: 0;
  filter: alpha(opacity=0);
  /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)";
  /* ie 8 */
  -moz-opacity: 0;
  /* FF lt 1.5, Netscape */
  -khtml-opacity: 0;
  /* Safari 1.x */
  position: fixed;
  bottom: 0;
  width: 100%;
  transform: translateY(-100);
  font-size: 0;
  z-index: 10000;
}

#FooterMenuScroll.now {
  opacity: 1;
  filter: alpha(opacity=10);
  /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)";
  /* ie 8 */
  -moz-opacity: 1;
  /* FF lt 1.5, Netscape */
  -khtml-opacity: 1;
  /* Safari 1.x */
  position: fixed;
  transform: translateY(0);
}

#FooterMenuScroll .FooterMenuScroll__item {
  font-size: 0;
}

#FooterMenuScroll .FooterMenuScroll__item {
  width: 50%;
  display: inline-block;
  text-align: center;
}

#FooterMenuScroll .FooterMenuScroll__item img {
  width: 100%;
}

.FooterNav {
  justify-content: center;
}
.FooterNav__item a {
  display: inline-block;
  padding: 10px 15px;
}

.sbi_header_text.sbi_no_bio h3 {
  color: #fff;
}

/* CSS Document */
#BlogModal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.2;
  opacity: 0;
  z-index: 1000;
}
#BlogModal #BlogModalInner {
  border-radius: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-height: 80vh;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10000;
  width: 60vw;
  background: #fff;
  padding: 30px;
  overflow-y: scroll;
}
@media only screen and (max-width: 769px) {
  #BlogModal #BlogModalInner {
    width: 80%;
    padding: 15px;
  }
}
@media only screen and (max-width: 769px) {
  #BlogModal #BlogModalInner .ModalArticle__head {
    font-size: 20px;
    line-height: 1.3;
  }
}
#BlogModal #BlogModalInner .ModalArticle__sub {
  padding: 30px 0;
}
#BlogModal #BlogModalInner .ModalArticle__sub &gt; div {
  text-align: right;
  padding-right: 15px;
}
#BlogModal #BlogModalInner .ModalArticle__sub &gt; div:last-child {
  text-align: left;
  padding-right: 0;
  padding-left: 15px;
}
#BlogModal #BlogModalInner .ModalArticle__sub &gt; div.single {
  text-align: center !important;
}
#BlogModal #BlogModalInner .ModalArticle__sub &gt; div span {
  display: inline-block;
  padding: 15%;
  width: 30%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 150px;
  min-height: 150px;
}
@media only screen and (max-width: 769px) {
  #BlogModal #BlogModalInner .ModalArticle__sub {
    padding: 15px 0;
  }
  #BlogModal #BlogModalInner .ModalArticle__sub &gt; div {
    padding-right: 5px;
  }
  #BlogModal #BlogModalInner .ModalArticle__sub &gt; div:last-child {
    padding-left: 5px;
  }
  #BlogModal #BlogModalInner .ModalArticle__sub &gt; div span {
    padding: 50% !important;
    width: 100% !important;
  }
}
#BlogModal #BlogModalInner .ModalArticle__body img.alignright,
#BlogModal #BlogModalInner .ModalArticle__body img.alignnone,
#BlogModal #BlogModalInner .ModalArticle__body img.alignleft,
#BlogModal #BlogModalInner .ModalArticle__body img.aligncenter {
  float: none;
  padding: 0rem 0px 7px;
  vertical-align: bottom;
}
#BlogModal #BlogModalInner .ModalArticle__body a {
  color: #8e1d22;
  text-decoration: underline;
}
@media only screen and (max-width: 769px) {
  #BlogModal #BlogModalInner .ModalArticle__body p {
    font-size: 16px;
    line-height: 1.3;
  }
  #BlogModal #BlogModalInner .ModalArticle__body p,
  #BlogModal #BlogModalInner .ModalArticle__body img {
    float: none !important;
  }
}
#BlogModal #BlogModalInner .ModalArticle__body p.this_link {
  text-align: center;
  margin: 30px 0;
}
#BlogModal #BlogModalInner .ModalArticle__body p.this_link a {
  color: #fff;
  background-color: #8e1d22;
  padding: 10px 30px;
}
#BlogModal #BlogModalInner .ModalArticle__foot {
  padding: 30px 0;
}
#BlogModal #BlogModalInner .ModalArticle__foot .prev_link {
  text-align: right;
}
#BlogModal #BlogModalInner .ModalArticle__foot &gt; div img {
  padding: 0 10px;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 15px;
  word-wrap: break-word;
}
p {
  font-size: 15px;
  line-height: 150%;
}
@media only screen and (max-width: 769px) {
  p {
    font-size: 13px;
  }
}

#Contents {
  padding-top: 90px;
}
@media only screen and (max-width: 939px) and (min-width: 770px) {
  #Contents {
    padding-top: 85px;
  }
}
@media only screen and (max-width: 769px) {
  #Contents {
    padding-top: 56px;
  }
}

.Contents #ReformBlogSection__head,
.Contents #TopicSection__head,
.Contents #CatalogSection__head {
  font-style: italic;
}

#home .Section h2 {
  font-size: 58px;
  font-style: italic;
}
#home .Section h2.BestSelection__head {
  transform: rotate(-15deg);
  padding-bottom: 95px;
}
#home .Section:first-child {
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 769px) {
  #home .Section:first-child {
    padding-top: 0;
  }
}
@media only screen and (max-width: 769px) {
  #home .Section h2 {
    font-size: 45px;
  }
  #home .Section:first-child {
    padding-top: 0;
  }
}

@media only screen and (min-width: 770px) {
  .Contents .Section.ReformBlogSection {
    padding-top: 90px !important;
  }
  .Contents .Section.ReformBlogSection h2 {
    font-size: 58px;
  }
}
.Contents .Section + .Section {
  padding-top: 45px;
  margin-top: 30px;
}
.Contents .Section:first-child {
  padding-top: 120px;
}
.Contents .Section:last-child {
  padding-bottom: 45px;
}
.Contents .Section h2 {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 0px;
  font-weight: normal;
  font-size: 30px;
  font-style: italic;
  /*&amp;.italic {
      font-size: $font-h2;
  }*/
}
.Contents .Section h3 {
  font-size: 22.5px;
}
@media only screen and (max-width: 769px) {
  .Contents .Section.CatalogSection {
    padding-top: 25px !important;
  }
  .Contents .Section h2 {
    margin: auto;
    text-align: center;
    font-size: 34px;
    max-width: 90%;
    overflow: hidden;
    line-height: 1.4;
  }
  .Contents .Section #ReformBlogSection__head {
    margin-bottom: 0;
  }
  .Contents .Section h3 {
    font-size: 19.5px;
  }
}
.Contents a:hover {
  opacity: 0.8;
  filter: alpha(opacity=8); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 0.8; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0.8; /* Safari 1.x */
}

.home .Contents .Section .Section__body {
  margin-top: 60px;
  margin-bottom: 30px;
}
.home .Contents .Section:first-child {
  padding-top: 0;
}
@media only screen and (max-width: 769px) {
  .BestSelection .Section__main,
  .BestSelection .Section__sub,
  .AboutUsSection .Section__body {
    width: 95%;
    margin: auto;
  }
}

#workarchive .Section__head {
  /*padding: $size-space * 6 0;
  @include mq-sp {
      padding: $size-space * 2  0 0;
  }*/
}

@media only screen and (max-width: 769px) {
  #Contents .Section:nth-child(1) {
    padding-top: 15px;
  }
  #Contents .Section:nth-child(1) .Section__head {
    padding: 30px 0 45px;
  }
  #Contents #home .Section:nth-child(1) {
    padding-top: 0px;
  }
}
@media only screen and (max-width: 940px) {
  #ReformBlogSection {
    padding-top: 90px;
  }
  #ReformBlogSection .Section__body {
    margin-top: 30px !important;
  }
}
#Article h2.Section__head {
  padding-top: 90px;
}

.TopViewSection .TopView {
  position: relative;
  text-align: right;
}
.TopViewSection .TopView__main {
  display: inline-block;
  width: 86%;
  /*background-image: url(./images/top_view.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 25% 0;*/
}
.TopViewSection .TopView__sub {
  position: absolute;
  text-align: left;
  top: 75%;
  transform: translateY(-50%);
  padding: 20px 20px 20px 40px;
  width: 30%;
  min-width: 525px;
  line-height: 1.3;
  z-index: 100;
}
@media only screen and (max-width: 769px) {
  .TopViewSection .TopView__main {
    display: inline-block;
    width: 100%;
    /* #TopSlide {
        height: 100%;
    }*/
  }
  .TopViewSection .TopView__main .HomeFirstSectionContainer {
    padding-bottom: 0;
    margin-bottom: 0px;
    height: 100%;
    /* #TopSlideContainer {
        height: 100%;
    }*/
  }
  .TopViewSection .TopView__main .HomeFirstSectionContainer #TopSlider {
    height: 100%;
  }
  .TopViewSection .TopView__main .HomeFirstSectionContainer #TopSliderContainer {
    height: 100%;
  }
  .TopViewSection .TopView__main .HomeFirstSectionContainer .bx-wrapper,
  .TopViewSection .TopView__main .HomeFirstSectionContainer .bx-viewport,
  .TopViewSection .TopView__main .HomeFirstSectionContainer #js-TopBxSlider,
  .TopViewSection .TopView__main .HomeFirstSectionContainer #js-TopBxSlider li {
    height: 100%;
  }
  .TopViewSection .TopView__main .HomeFirstSectionContainer #js-TopBxSlider li img {
    height: 130% !important;
    width: auto !important;
  }
  .TopViewSection .TopView__sub {
    width: 86%;
    min-width: unset;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    top: unset;
    bottom: 0;
    transform: translateY(35%);
  }
}

/*CSS*/
@media only screen and (max-width: 992px) {
  #TopSliderContainer .TopSlider__item img {
    width: auto !important;
    height: 150% !important;
    margin-top: -20%;
    margin-left: -50%;
  }
}
.TopSliderContainer .TopSlider__item.animate.type1 img {
  animation: animation-move01 9s infinite linear;
}

#TopSlider #TopSliderContainer {
  opacity: 0;
  filter: alpha(opacity=0); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 0; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0; /* Safari 1.x */
}
#TopSlider #TopSliderContainer ul li {
  position: relative;
  overflow: hidden;
}
#TopSlider #TopSliderContainer ul li img {
  margin-top: -10%;
  width: 130%;
  max-width: none;
}
#TopSlider #TopSliderContainer ul li.now img {
  animation: animation-move02 5s infinite linear;
  animation-iteration-count: 1;
}
#TopSlider #TopSliderContainer ul li.type02.now img {
  animation: animation-move01 5s infinite linear;
  animation-iteration-count: 1;
}

@keyframes animation-move01 {
  from {
    transform: translate3d(-2.5%, 2.5%, 0);
  }
  to {
    transform: translate3d(0%, 0%, 0);
  }
}
@keyframes animation-move02 {
  from {
    transform: translate3d(-2.5%, -2.5%, 0);
  }
  to {
    transform: translate3d(0%, 0%, 0);
  }
}
#TopSlide {
  overflow: hidden;
}
#TopSlide #TopSlideContainer {
  opacity: 0;
  filter: alpha(opacity=0); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 0; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0; /* Safari 1.x */
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  /*@include mq-sp {
  	&amp; ul {
  		width: 100%;
  		float: none;s
  		height: 50%;
  	}
  }*/
}
#TopSlide #TopSlideContainer.show {
  opacity: 1;
  filter: alpha(opacity=10); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 1; /* FF lt 1.5, Netscape */
  -khtml-opacity: 1; /* Safari 1.x */
  transition: opacity 1.2s cubic-bezier(0.34, 0, 0.78, 1);
}
#TopSlide #TopSlideContainer ul {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
  height: 100%;
}
#TopSlide #TopSlideContainer ul li.type2 {
  opacity: 1;
  filter: alpha(opacity=10); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 1; /* FF lt 1.5, Netscape */
  -khtml-opacity: 1; /* Safari 1.x */
  position: absolute;
}
#TopSlide #TopSlideContainer ul li.type2::before {
  content: "";
  display: block;
  position: absolute;
  width: 120%;
  left: 0;
  bottom: -10%;
  height: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: transform;
}
#TopSlide #TopSlideContainer ul li {
  opacity: 1;
  filter: alpha(opacity=10); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 1; /* FF lt 1.5, Netscape */
  -khtml-opacity: 1; /* Safari 1.x */
  position: absolute;
}
#TopSlide #TopSlideContainer ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 120%;
  left: 0;
  bottom: -5%;
  height: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: transform;
}
#TopSlide #TopSlideContainer ul li:nth-child(1)::before {
  background-image: url(./images/top_view_01.jpg);
  background-size: cover;
  background-position: left 0 bottom 0;
  background-repeat: no-repeat;
}
#TopSlide #TopSlideContainer ul li:nth-child(2)::before {
  background-image: url(./images/top_view_02.jpg);
  background-size: cover;
  background-position: left 0 bottom 0;
  background-repeat: no-repeat;
}
#TopSlide #TopSlideContainer ul li:nth-child(3)::before {
  background-image: url(./images/top_view_03.jpg);
  background-size: cover;
  background-position: left 0 bottom 0;
  background-repeat: no-repeat;
}
#TopSlide #TopSlideContainer ul li:nth-child(4)::before {
  background-image: url(./images/top_view_04.jpg);
  background-size: cover;
  background-position: left 0 bottom 0;
  background-repeat: no-repeat;
}
#TopSlide #TopSlideContainer ul li:nth-child(5)::before {
  background-image: url(./images/top_view_05.jpg);
  background-size: cover;
  background-position: left 0 bottom 0;
  background-repeat: no-repeat;
}
#TopSlide #TopSlideContainer ul li {
  z-index: -1;
  width: 100%;
  height: 100%;
}
#TopSlide #TopSlideContainer ul li.next {
  opacity: 1;
  filter: alpha(opacity=10); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 1; /* FF lt 1.5, Netscape */
  -khtml-opacity: 1; /* Safari 1.x */
  z-index: 99;
}
#TopSlide #TopSlideContainer ul li.now {
  opacity: 1;
  filter: alpha(opacity=10); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 1; /* FF lt 1.5, Netscape */
  -khtml-opacity: 1; /* Safari 1.x */
  z-index: 100;
  animation: indexShow 2s cubic-bezier(0.77, 0, 0.175, 1) alternate;
  animation-fill-mode: forwards;
}
#TopSlide #TopSlideContainer ul li.next {
  opacity: 1;
  filter: alpha(opacity=10); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 1; /* FF lt 1.5, Netscape */
  -khtml-opacity: 1; /* Safari 1.x */
}
#TopSlide #TopSlideContainer ul li.show::before {
  animation: indexSlide 10s linear alternate;
}
#TopSlide #TopSlideContainer ul li.type2.show::before {
  animation: indexSlide2 10s linear alternate;
}
#TopSlide #TopSlideContainer ul li.type3.show::before {
  animation: indexSlide3 10s linear alternate;
}
@media only screen and (max-width: 769px) {
  #TopSlide #TopSlideContainer {
    height: 60vh;
  }
  #TopSlide #TopSlideContainer ul li {
    width: 120%;
    height: 120%;
  }
  #TopSlide #TopSlideContainer ul li::before {
    width: 100%;
    height: 100%;
    left: -5%;
    bottom: 6%;
  }
}

.TopicSection__head {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.TopicSection__body &gt; div {
  padding: 30px !important;
}
@media only screen and (max-width: 769px) {
  .TopicSection {
    margin-top: 30px !important;
  }
  .TopicSection__body &gt; div {
    padding: 30px 7px !important;
  }
}

.ModelRoomSection {
  position: relative;
  margin-top: 100px;
}
.ModelRoomSection .container {
  max-width: 980px;
}
.ModelRoomSection .Section__foot {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  transform: translateY(50%);
  z-index: 100;
}
.ModelRoomSection .bg {
  position: absolute;
  background: #f2f2f2;
  height: 62%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 769px) {
  .ModelRoomSection .ModelRoomSection__head {
    width: 90% !important;
    margin: 0 auto 45px !important;
  }
  .ModelRoomSection .Section__body {
    padding-bottom: 10px;
  }
  .ModelRoomSection .Section__foot {
    position: relative;
    transform: translateY(0);
  }
  .ModelRoomSection .bg {
    height: 68%;
  }
}

.BestSelection {
  padding-top: 225px !important;
  padding-bottom: 45px !important;
  background-color: #f2f2f2;
  background-image: url(./images/reform_bg_header.png);
  background-repeat: no-repeat;
  background-position: 5% 7%;
  margin-top: 100px !important;
}
.BestSelection .container {
  max-width: 1200px;
}
.BestSelection .Section__foot {
  padding: 45px 0 0;
}
.BestSelection__head {
  text-align: left !important;
  padding-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 65px;
}
.BestSelection .Section__body {
  position: relative;
}
.BestSelection .Section__main h3 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left !important;
  padding-top: 65px;
  margin-bottom: 40px;
  font-weight: bold;
}
@media only screen and (min-width: 940px) {
  .BestSelection .Section__main {
    position: absolute;
    right: 10%;
    top: 67px;
    transform: translateY(-100%);
  }
}
.BestSelection p.BestSelectionHeadSubText {
  max-width: 700px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.BestSelection .Section__sub {
  padding-top: 90px;
}
@media only screen and (min-width: 940px) {
  .BestSelection .Section__sub {
    padding-top: 145px;
  }
}
.BestSelection .BestSelectionImage .SelectionComment {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.BestSelection .BestSelectionImage .SelectionComment .js-customanimation .animation-container {
  border-radius: 16px;
}
.BestSelection .BestSelectionImage .SelectionComment a {
  display: block;
  background: rgb(35, 24, 21);
  color: #fff;
  padding: 4px 15px 8px;
  border: 0px solid #000;
  text-align: center;
  border-radius: 16px;
  font-size: 16px;
  overflow: hidden;
}
.BestSelection .BestSelectionImage .SelectionTitle {
  position: absolute;
  top: 15px;
  left: 15px;
}
.BestSelection .BestSelectionImage .SelectionTitle p {
  background: rgb(35, 24, 21);
  color: #fff;
  padding: 10px 30px;
  box-shadow: 2px 2px 2px grey;
  font-size: 15px;
}
.BestSelection .BestSelectionImage .BestSelectionSQ {
  position: relative;
  height: 100%;
  background-image: url(./images/sample/best_selection_01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 10px;
}
.BestSelection .BestSelectionImage .REC {
  position: relative;
  padding: 25% 0;
  background-image: url(./images/sample/best_selection_02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: 5px;
}
.BestSelection .BestSelectionImage .REC:last-child {
  margin-top: 15px;
  background-image: url(./images/sample/best_selection_03.png);
}
.BestSelection .BestSelectionImage .REC:first-child {
  margin-bottom: 15px;
}
@media only screen and (min-width: 770px) {
  .BestSelection .BestSelectionImage .REC .SelectionTitle p {
    padding: 5px 15px;
    box-shadow: 2px 2px 2px grey;
    font-size: 15px;
  }
  .BestSelection .BestSelectionImage .REC .SelectionTitle .SelectionComment a {
    padding: 5px 15px;
  }
}
@media only screen and (max-width: 769px) {
  .BestSelection .BestSelectionImage .SelectionTitle .js-customanimation .animation-container {
    width: 100%;
  }
}
@media only screen and (max-width: 769px) {
  .BestSelection {
    padding-top: 175px !important;
    background-size: 64%;
    background-position: left 12.5% top 5%;
  }
  .BestSelection .Section__body {
    margin-top: 30px;
  }
  .BestSelection .Section__main h3 {
    padding-top: 0;
    margin-top: 34px !important;
    margin-bottom: 30px;
  }
  .BestSelection .Section__sub {
    padding-top: 80px;
  }
  .BestSelection .BestSelectionImage .SelectionComment .animation-container {
    width: 100%;
  }
  .BestSelection .BestSelectionImage .SelectionComment a {
    padding: 6px 15px;
    font-size: 13px;
  }
  .BestSelection .BestSelectionImage .SQContainer {
    margin-bottom: 15px;
  }
  .BestSelection .BestSelectionImage .BestSelectionSQ {
    padding: 50% 0;
    margin-right: 0;
  }
  .BestSelection .BestSelectionImage .REC {
    padding: 40% 0;
    margin-left: 0;
  }
}

.ModelBannerSection__main {
  padding-bottom: 50px !important;
}

.InosLink {
  margin-top: 30px;
}
.InosLink a.check_archive {
  padding: 30px 117.5px 30px 60px;
  background-color: #000080;
}

.Section__sub {
  text-align: center;
}
.Section__sub span {
  color: #c0001f;
  display: block;
  text-align: center;
}

@media only screen and (min-width: 770px) {
  .Section__body {
    margin-top: 120px;
  }
}
.FormSection {
  padding-top: 30px;
}

.ContactFormTable {
  width: 770px;
  margin: auto;
}
.ContactFormTable .red {
  color: #fff;
  margin: 0 5px;
  position: absolute;
  left: 0;
  display: inline-block;
  background: #c0001f;
  font-size: 12px;
  padding: 3px 7px;
}
.ContactFormTable th,
.ContactFormTable td {
  position: relative;
  padding: 10px;
  font-size: 15px;
  line-height: 1.5;
  font-size: 15px;
  vertical-align: middle;
}
.ContactFormTable th {
  padding-right: 20px;
  text-align: right;
  font-weight: normal;
  width: 35%;
  letter-spacing: 2px;
}
.ContactFormTable td {
  padding-left: 5px;
  width: 65%;
}
.ContactFormTable td input,
.ContactFormTable td textarea {
  border: 2px solid #e6e7e7;
  padding: 9px 7px 5px;
}
.ContactFormTable td input[type=text],
.ContactFormTable td textarea,
.ContactFormTable td input[type=email] {
  width: 100%;
}
.ContactFormTable td span.wpcf7-form-control-wrap.postal {
  display: inline-block;
  width: 250px;
}
.ContactFormTable td #js-autofill {
  display: none;
}
.ContactFormTable tr {
  padding: 10px 0;
  border-bottom: 1px dashed #b5b5b6;
}
.ContactFormTable tr:nth-child(1) {
  border-top: 1px dashed #b5b5b6;
}
.ContactFormTable tr.category_row .wpcf7-list-item {
  width: 30%;
}
.ContactFormTable tr.category_row .wpcf7-list-item.last {
  width: auto;
}
.ContactFormTable tr.reply_method_row span.wpcf7-list-item:nth-child(3n+1) {
  width: 30%;
}
.ContactFormTable tr.reply_method_row span.wpcf7-list-item:nth-child(3n+2) {
  width: 45%;
}
.ContactFormTable tr.reply_method_row th,
.ContactFormTable tr.reply_method_row td {
  vertical-align: top;
}
.ContactFormTable tr.visit_row .wpcf7-list-item {
  width: 30%;
}
.ContactFormTable tr.message_row {
  border-bottom: none;
}
.ContactFormTable tr.privacy_policy_row, .ContactFormTable tr.button_row {
  text-align: center;
  border-bottom: none;
}
.ContactFormTable tr.privacy_policy_row th,
.ContactFormTable tr.privacy_policy_row td, .ContactFormTable tr.button_row th,
.ContactFormTable tr.button_row td {
  padding-top: 30px;
}
.ContactFormTable tr input[type=submit],
.ContactFormTable tr input[type=button] {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 30px;
  padding-right: 30px;
  width: 152px;
  font-size: 16px;
  color: #fff;
  background: #7bbfe8;
  letter-spacing: 2px;
  margin: 0 10px;
}
.ContactFormTable tr.checkbox_customize input[type=hidden] + span.wpcf7-list-item-label::before {
  opacity: 1;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none !important;
}

input.wpcf7-not-valid {
  box-shadow: 0 0 2px red;
}

.wpcf7-not-valid input[type=checkbox] + span {
  color: red;
}

input.wpcf7c-conf,
textarea.wpcf7c-conf {
  background: #fff !important;
  color: #00a3d0 !important;
  border: none !important;
}

@media only screen and (max-width: 769px) {
  .ContactFormTable {
    width: 100%;
  }
  .ContactFormTable tbody {
    display: block;
    width: 100%;
  }
  .ContactFormTable .red {
    top: 8px;
  }
  .ContactFormTable tr {
    display: block;
  }
  .ContactFormTable tr.required_row th {
    text-align: left;
    padding: 9px 7px 7px 61px !important;
  }
  .ContactFormTable tr th {
    text-align: left;
    padding: 9px 7px 7px 9px !important;
  }
  .ContactFormTable th,
  .ContactFormTable td {
    display: block;
    padding: 0;
    width: 100%;
    text-align: left;
    padding: 0;
  }
  .ContactFormTable td {
    margin-bottom: 10px;
  }
  .ContactFormTable td span.wpcf7-form-control-wrap.postal {
    width: 100%;
  }
  .ContactFormTable td #js-autofill {
    display: none;
  }
  .ContactFormTable tr.email_confirm_row br {
    display: none;
  }
  .ContactFormTable tr.checkbox_customize th {
    margin-bottom: 7px;
  }
  .ContactFormTable tr.checkbox_customize .wpcf7-list-item {
    width: 100% !important;
    display: block;
    padding: 4px 0 4px 20px;
    margin-left: 0 !important;
  }
  .ContactFormTable tr.category_row .wpcf7-list-item {
    width: 25%;
  }
  .ContactFormTable tr.category_row .wpcf7-list-item.last {
    width: auto;
  }
  .ContactFormTable tr.reply_method_row th,
  .ContactFormTable tr.reply_method_row td {
    vertical-align: top;
  }
  .ContactFormTable tr.privacy_policy_row td, .ContactFormTable tr.button_row td {
    text-align: center;
  }
  .ContactFormTable tr input[type=submit],
  .ContactFormTable tr input[type=button] {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
    padding-right: 30px;
    width: 40%;
    font-size: 16px;
    color: #fff;
    background: #7bbfe8;
    letter-spacing: 2px;
    margin: 0 10px;
  }
}
div.wpcf7 .ajax-loader {
  display: none !important;
}

#workarchive .WorkCard {
  padding: 10px;
}
#workarchive .WorkCard__sub {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#workarchive .WorkCard__sub .u-animation__inner span {
  padding: 33% 0;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#workarchive .WorkCard__sub img {
  width: 100%;
}
#workarchive .WorkCard__head {
  padding-top: 10px;
  color: #000;
  font-size: 20px;
  text-align: center;
}

#SingleWork {
  /*.bx-wrapper {
        margin: auto;
        box-shadow: none;
        background: transparent;
        border: none;
        .bx-viewport {


        }
    }
    .SanyoWorkGallery__item {
        position: relative;
        img {
            display: block;
            margin: auto;
            max-height: 400px;
            @include mq-sp {
                &amp;.vertical {
                    width: 50vw;
                }
            }
        }
    }

    #SanyoWorkGalleryThumb {
        margin-top: $size-space * 4;
        text-align: center;
        .SanyoWorkGalleryThumb__item {
            display: inline-block;
            width: 100px;
            margin: 5px;
            a {
                display: block;
                padding: 50% 0;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;

            }
        }
    }*/
}
@media only screen and (max-width: 769px) {
  #SingleWork .WorkSection__head {
    font-size: 30px;
  }
  #SingleWork .WorkSection__body {
    padding: 0 15px !important;
  }
}
#SingleWork .EachWorkSection + .EachWorkSection {
  padding-top: 60px;
}
@media only screen and (max-width: 769px) {
  #SingleWork .EachWorkSection + .EachWorkSection {
    padding-top: 30px;
  }
}
#SingleWork .EachWorkSection:last-child {
  padding-bottom: 60px;
}
#SingleWork .EachWorkSection .Comment__head {
  text-align: left;
  font-weight: bold !important;
}
#SingleWork .EachWorkSection .eachMadori__head {
  text-align: left;
  font-weight: bold !important;
}
@media only screen and (min-width: 770px) {
  #SingleWork .EachWorkSection .eachMadori__head {
    font-size: 30px !important;
  }
}
#SingleWork .WorkGallery {
  padding: 25% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#SingleWork .Comment &gt; div,
#SingleWork .Zumen &gt; div {
  padding: 15px;
}
#SingleWork .Comment &gt; div p,
#SingleWork .Zumen &gt; div p {
  font-size: 14px;
}
#SingleWork .WorkAlbum {
  text-align: center;
}
#SingleWork .WorkAlbum .EachAlbum {
  display: inline-block;
}
#SingleWork .WorkAlbum .EachAlbum + .EachAlbum {
  padding-top: 45px;
}
#SingleWork .WorkAlbum .EachAlbum__caption {
  text-align: left;
}

.catalogue-request_page .FormContainer {
  background: #fff;
}
.catalogue-request_page .Section__head {
  color: #000;
}
.catalogue-request_page .Section__body label {
  color: #000;
}
.catalogue-request_page input.wpcf7c-conf,
.catalogue-request_page textarea.wpcf7c-conf {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #fff !important;
}

#reserve .container {
  max-width: 1024px;
}

.FormContainer {
  background: #f2f2f2;
  color: #000;
  padding: 60px;
  margin: auto;
  max-width: 800px;
}
.FormContainer .Section__head + p {
  text-align: center;
}
.FormContainer .Section__body {
  width: 80%;
  margin: auto;
}
.FormContainer .EachFormContainer {
  margin-bottom: 22.5px;
}
.FormContainer .EachFormContainer label {
  display: block;
  margin-bottom: 5px;
}
.FormContainer .EachFormContainer.InputMax input[type=text],
.FormContainer .EachFormContainer.InputMax textarea,
.FormContainer .EachFormContainer.InputMax input[type=email],
.FormContainer .EachFormContainer.InputMax input[type=tel] {
  width: 100%;
  border: 2px solid #e6e7e7;
  color: #000;
  padding: 3px;
}
.FormContainer .EachFormContainer .EachForm#DateTime {
  background: #fff;
  border: 2px solid #e6e7e7;
  padding: 5px 15px;
  color: #000;
  text-align: center;
}
.FormContainer .EachFormContainer .EachForm#DateTime input, .FormContainer .EachFormContainer .EachForm#DateTime span {
  display: inline-block;
  vertical-align: middle;
}
.FormContainer .EachFormContainer .EachForm#DateTime input {
  background: #e6e7e7;
  border: 2px solid #e6e7e7;
}
.FormContainer .EachFormContainer .EachForm#DateTime span {
  padding: 0 10px 0 5px;
}
.FormContainer .EachFormContainer .EachForm#DateTime span[role=alert] {
  display: none !important;
}
.FormContainer .EachFormContainer .EachForm.Button input[type=submit],
.FormContainer .EachFormContainer .EachForm.Button input[type=button] {
  display: inline-block;
  padding: 10px 15px;
  background: #8e1d22;
  color: #fff;
}
.FormContainer .EachFormContainer .EachForm.Button input[type=submit]#re_edit,
.FormContainer .EachFormContainer .EachForm.Button input[type=button]#re_edit {
  margin-right: 15px;
}
.FormContainer .EachFormContainer .EachForm.Checkbox label {
  display: inline;
}
.FormContainer .EachFormContainer .EachForm.Checkbox label a {
  color: #8e1d22;
  text-decoration: underline;
}

@media only screen and (max-width: 769px) {
  .FormContainer {
    padding: 45px 5px;
  }
  .FormContainer .Section__body {
    width: 100%;
    margin: auto;
    padding: 0;
  }
  .FormContainer .EachFormContainer .EachForm.Button {
    text-align: center;
    margin: 0 15px;
  }
  .FormContainer .EachFormContainer .EachForm#DateTime span {
    padding: 0 5px 0 5px;
    margin: 2px 0;
  }
}
#your-post {
  max-width: 200px;
}

.genericResTable {
  width: 100%;
  border-collapse: collapse;
}
.genericResTable .fx-row &gt; div {
  margin-top: 0 !important;
  padding: 1.5rem 2rem;
  vertical-align: middle;
}
.genericResTable .fx-row &gt; div.colhead * {
  color: #3a1900;
}
.genericResTable .fx-row:nth-child(even) {
  background: rgba(131, 163, 172, 0.2);
}
.genericResTable .fx-row:nth-child(odd) {
  background: rgba(131, 163, 172, 0.4);
}
.genericResTable .subText {
  color: #545454;
  padding-left: 0.5rem;
}
.genericResTable input[type=text],
.genericResTable textarea,
.genericResTable input[type=email],
.genericResTable input[type=tel] {
  padding: 5px;
  border: 1px solid rgb(169, 169, 169);
}
.genericResTable #your-soudan label {
  display: block;
  margin-bottom: 2rem;
}
.genericResTable #your-address02,
.genericResTable #your-address03 {
  margin-top: 2rem;
}
.genericResTable input#your-post01,
.genericResTable input#your-post02 {
  width: 10%;
  margin: 0 1rem;
}
.genericResTable input#submit {
  display: block;
  text-align: center;
  width: 20%;
  min-width: 400px;
  min-width: 200px;
  background: #2d474e !important;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
}
.genericResTable input#submit:hover {
  opacity: 0.8;
  filter: alpha(opacity=8); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 0.8; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0.8; /* Safari 1.x */
}
.genericResTable #submitRow {
  background: none;
}
.genericResTable :not(#Article__main) &gt; img,
.genericResTable :not(#Article__main) &gt; * &gt; * &gt; img {
  width: auto;
  height: auto;
}
.genericResTable .wpcf7-validates-as-required.wpcf7-not-valid {
  border: 1px solid #c90003;
}
.genericResTable span.wpcf7-not-valid-tip {
  display: none;
}
.genericResTable .red {
  color: #c90003;
}
.genericResTable div.wpcf7-validation-errors {
  display: none !important;
}
@media only screen and (max-width: 769px) {
  .genericResTable .fx-row &gt; div.colhead {
    padding-bottom: 0;
  }
  .genericResTable .fx-row &gt; div #your-address02 {
    margin-top: 1rem;
  }
  .genericResTable .fx-row &gt; div #your-address03 {
    margin-top: 0;
  }
}

.checkbox_customize label {
  position: relative;
}
.checkbox_customize input[type=checkbox],
.checkbox_customize input[type=radio] {
  display: none; /* checkboxを非表示にする */
}
.checkbox_customize .wpcf7-list-item-label {
  padding-left: 4px;
}
.checkbox_customize .wpcf7-list-item-label::before {
  width: 8px;
  height: 12px;
  border-right: 2px solid #0171bd;
  border-bottom: 2px solid #0171bd;
  transform: rotate(45deg) translateY(-50%);
  display: inline-block;
  position: absolute;
  top: calc(50% - 5px);
  left: -17px;
  z-index: 1000;
  opacity: 0;
}
.checkbox_customize .wpcf7-list-item-label::after {
  content: "";
  width: 15px;
  background: #fff;
  display: inline-block;
  height: 16px;
  /* margin-left: -5px; */
  /* margin-right: 5px; */
  position: absolute;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  line-height: 1;
  left: -16px;
  cursor: pointer;
  box-shadow: 0 0 1px grey;
}
.checkbox_customize input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}
.checkbox_customize input[type=radio]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}

/* STEP */
ul#top_box {
  display: block;
  min-width: 290px;
  margin-bottom: 50px;
  padding: 0 0 1px;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #8e1d22;
  overflow: hidden;
}
ul#top_box li {
  float: left;
  width: 34%;
  margin: 1px;
  text-align: center;
  transform: skew(-40deg);
  letter-spacing: 0;
}
ul#top_box li:nth-child(1) {
  margin-left: -3%;
}
ul#top_box li:nth-child(3) {
  margin-right: -3%;
  width: 37%;
}
ul#top_box li &gt; span {
  transform: skew(40deg);
  margin: 16px 0;
}
ul#top_box li span {
  display: inline-block;
  height: 19px;
  line-height: 20px;
  font-size: 15px;
}
ul#top_box li span.css3 {
  zoom: 1;
  position: relative;
  margin-right: 10px;
  padding: 3px 8px 1px;
  border-radius: 15px !important;
  font-size: 14px;
  height: 23px;
  letter-spacing: 2px;
}
ul#top_box li br {
  display: none;
}
ul#top_box.step4 li {
  width: 25.6%;
}
ul#top_box.step4 li:nth-child(3) {
  margin-right: 1px;
}
ul#top_box.step4 li:nth-child(4) {
  margin-right: -3%;
}
@media only screen and (max-width: 939px) and (min-width: 770px) {
  ul#top_box li:nth-child(2) {
    border-right: solid 1px #ffffff;
    border-left: solid 1px #ffffff;
  }
  ul#top_box.step4 li:nth-child(3) {
    border-right: solid 1px #ffffff;
  }
}
@media only screen and (max-width: 769px) {
  ul#top_box {
    margin: 0 auto 45px;
    text-align: center;
  }
  ul#top_box li:nth-child(1),
  ul#top_box li {
    width: 33% !important;
    padding: 9px 0 6px;
    margin-right: 0;
    text-align: center;
    line-height: normal;
    transform: skew(0deg);
    box-sizing: border-box;
  }
  ul#top_box.step4 li:nth-child(1), ul#top_box.step4 li {
    width: 25%;
    margin: 0;
  }
  ul#top_box li:nth-child(1) {
    margin-left: 0;
  }
  ul#top_box li:nth-child(3) {
    margin-right: 0;
  }
  ul#top_box.step4 li:nth-child(3), ul#top_box.step4 li:nth-child(4) {
    margin-right: 0;
  }
  ul#top_box li span {
    margin: 0;
    transform: skew(0deg);
  }
  ul#top_box li span.css3 {
    margin: 0;
    border-radius: 10px !important;
    height: 27px;
  }
  ul#top_box li span.pc_txt {
    display: none;
  }
  ul#top_box li span.sp_txt {
    display: block;
    padding-top: 0px;
    text-align: center;
  }
  ul#top_box li br {
    display: block;
  }
}

@media screen and (max-width: 569px) {
  ul#top_box li:first-child,
  ul#top_box li {
    width: 33.1%;
  }
}
ul#top_box li {
  background-color: #eff0f0;
}

#form_box .btn input,
ul#top_box li.on span.css3,
.custom-wpcf7c-confirmed ul#top_box li:nth-child(2) span.css3 {
  background-color: #fff;
} /* .dbg */
ul#top_box li.on,
ul#top_box li span.css3,
.custom-wpcf7c-confirmed ul#top_box li:nth-child(2) {
  background-color: #8e1d22;
} /* .bg */
ul#top_box li {
  color: #000000;
}

ul#top_box li.on,
ul#top_box li span.css3,
.custom-wpcf7c-confirmed ul#top_box li:nth-child(2) {
  color: #ffffff;
} /* .wbc */
ul#top_box li.on span.css3,
.custom-wpcf7c-confirmed ul#top_box li:nth-child(2) span.css3 {
  color: #8e1d22;
} /* .tbc */
#form_box .btn input {
  border-color: #f29725;
  color: #f29725;
} /* .lbl */
/* CSS Document */
#topics .Section__sub {
  margin: 120px auto 0;
}
#topics .Section__sub h3 {
  margin-top: 60px;
  margin-bottom: 0;
}
#topics .Section__sub .Category {
  justify-content: center;
}
#topics .Section__sub .Category__item {
  padding: 2px;
}
#topics .Section__sub .Category__item a {
  display: block;
  padding: 10px 30px;
  text-align: center;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 20px;
  margin: 0 5px;
}
#topics .Section__main .TopicSection__body {
  margin-top: 45px;
}
#topics .Section__main .TopicSection__body img.alignright,
#topics .Section__main .TopicSection__body img.alignnone,
#topics .Section__main .TopicSection__body img.alignleft,
#topics .Section__main .TopicSection__body img.aligncenter {
  float: none;
  padding: 0rem 1rem 1rem;
}
#topics .Section__main .TopicSection__body &gt; div {
  padding: 15px !important;
  margin-bottom: 30px;
}
@media only screen and (max-width: 769px) {
  #topics .Section__sub {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  #topics .Section__sub .Category__item {
    flex-grow: 1;
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
  }
  #topics .Section__sub .Category__item a {
    font-size: 12px;
  }
}

#SingleTopicCheck {
  margin: 45px 0 0;
}

#topics .TopicsSection.BlogSection {
  background: #f2f2f2;
}
#topics .TopicsSection.BlogSection .Section__main .TopicSection__body .Article {
  background: #fff;
  padding: 10px 0px 10px 0;
  margin-bottom: 60px;
  padding-bottom: 50px;
}
#topics .TopicsSection.BlogSection .Section__main .TopicSection__body .Article__date {
  margin-bottom: 4px;
  font-size: 15px;
}
#topics .TopicsSection.BlogSection .Section__main .TopicSection__body .Article__head {
  text-align: left;
  border-bottom: 1px solid grey;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
#topics .TopicsSection.BlogSection .Section__sub {
  margin: 0;
}
#topics .TopicsSection.BlogSection .Section__sub .EachSideContent {
  margin-top: 45px;
}
#topics .TopicsSection.BlogSection .Section__sub .EachSideContent__head {
  text-align: left;
  font-size: 22.5px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
#topics .TopicsSection.BlogSection .Section__sub .EachSideContent__body .BlogArchive__list {
  text-align: left;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
#topics .TopicsSection.BlogSection .Section__sub .EachSideContent__body .BlogArchive__list a {
  padding-left: 10px;
  display: inline-block;
}
@media only screen and (min-width: 940px) {
  #Article #MainContents {
    width: calc(100% - 400px);
    display: inline-block;
    vertical-align: top;
  }
  #Article #SideContents {
    width: 395px;
    /* flex: unset; */
    display: inline-block;
    vertical-align: top;
  }
}
#Article .Category__item a {
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 5px;
}
#Article .Article {
  width: 95%;
  margin: 0 0 45px auto;
}
#Article .Article__head {
  text-align: left;
  margin-top: 22.5px;
  font-weight: bold;
  font-size: 25px;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  margin-bottom: 0;
}
#Article .Article__date {
  font-style: normal;
  font-weight: bold;
  color: #8e1d22;
  margin-top: 10px;
}
#Article .Article__main {
  padding-top: 60px;
}
#Article .Article__main img.alignright,
#Article .Article__main img.alignnone,
#Article .Article__main img.alignleft,
#Article .Article__main img.aligncenter {
  float: none;
  padding: 0rem 0px 7px;
  vertical-align: bottom;
}
#Article .Article__main a {
  color: #0000ff;
  text-decoration: underline;
}
@media only screen and (max-width: 769px) {
  #Article .Article {
    width: 95%;
    margin: 0 auto 45px;
  }
}

#aboutuspage h2,
#privacypage h2 {
  transform: none;
  margin-bottom: 90px;
}
#aboutuspage .container,
#privacypage .container {
  max-width: 800px;
}
#aboutuspage .Section__body .baseSection,
#privacypage .Section__body .baseSection {
  padding-bottom: 10px;
}
#aboutuspage .Section__body .baseSection h2,
#aboutuspage .Section__body .baseSection h3,
#privacypage .Section__body .baseSection h2,
#privacypage .Section__body .baseSection h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 30px;
  font-weight: bold;
}
#aboutuspage .Section__body .baseSection p,
#privacypage .Section__body .baseSection p {
  margin-bottom: 15px;
}
#aboutuspage .Section__body .baseSection li,
#privacypage .Section__body .baseSection li {
  line-height: 1.5;
  padding-bottom: 5px;
  margin-bottom: 5px;
  list-style: disc;
}
#aboutuspage .Section__body .extra_aboutus,
#privacypage .Section__body .extra_aboutus {
  margin-top: 45px;
  font-size: 15px;
  line-height: 2.5;
}
@media only screen and (max-width: 940px) {
  #aboutuspage .Section__body .extra_aboutus,
  #privacypage .Section__body .extra_aboutus {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 769px) {
  #aboutuspage,
  #privacypage {
    background: none !important;
  }
  #aboutuspage .MainSection,
  #privacypage .MainSection {
    padding-left: 0px;
  }
  #aboutuspage h2,
  #privacypage h2 {
    transform: none;
  }
  #aboutuspage .container,
  #privacypage .container {
    max-width: 800px;
  }
}

#aboutuspage #aboutus h2 {
  text-align: left;
}
#aboutuspage #aboutus dl {
  padding-left: 5px;
  background: url(./images/sanyo/images/page/aboutus/bg-aboutus-dl.jpg) top right no-repeat;
}
#aboutuspage #aboutus dl dt {
  clear: both;
  float: left;
  width: 11em;
}
#aboutuspage #aboutus dl dt:after {
  content: "：";
}
#aboutuspage #aboutus dl dd {
  margin: 0 0 15px 11em;
  padding-left: 10px;
  border-left: 2px solid #cfcfcf;
}
@media only screen and (max-width: 769px) {
  #aboutuspage #aboutus dl dt {
    display: block;
    width: 110px;
  }
  #aboutuspage #aboutus dl dd {
    display: block;
    margin-top: 6px;
    border-left: none;
    border-bottom: 1px dotted black;
    padding: 0 0 9px 110px;
    margin-left: 0;
  }
}
#aboutuspage #aboutus #accessFrame {
  margin-bottom: 15px;
  width: 100%;
  height: 50vw;
  overflow: hidden;
}
#aboutuspage #aboutus #accessFrame iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 769px) {
  #aboutuspage #aboutus h2 {
    text-align: left;
  }
  #aboutuspage #aboutus dl {
    padding-left: 30px;
    padding-right: 30px;
    background: none;
  }
  #aboutuspage #aboutus #accessFrame {
    height: 70vw;
  }
  #aboutuspage #aboutus #accessFrame iframe {
    padding: 0 30px;
  }
}

#privacypage .Section__body .baseSection {
  padding-bottom: 10px;
}
#privacypage .Section__body .baseSection h2,
#privacypage .Section__body .baseSection h3 {
  padding: 5px 0 5px 10px;
  border-left: 5px solid #8e1d22;
}
#privacypage #privacy h2 {
  text-align: left;
}
/* CSS Document */
#Event .container {
  width: 95%;
}
#Event .Section:nth-child(1) {
  padding-top: 0;
}
#Event .Section__sub {
  background-image: url(./images/baum_haus_section_head_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: left;
}
#Event .Section__sub .EachSection:nth-child(1) {
  padding: 30vh 0 15vh;
}
#Event .Section__sub .EachSection:nth-child(1) .EachSection__head {
  line-height: 3;
}
#Event .Section__sub .EachSection:nth-child(1) .EachSection__body {
  padding-top: 5vh;
}
#Event .Section__sub .EachSection:nth-child(1) .EachSection__foot {
  padding-top: 8vh;
}
@media only screen and (max-width: 769px) {
  #Event .Section__sub .EachSection:nth-child(1) {
    padding: 15vh 0 15vh;
  }
  #Event .Section__sub .EachSection:nth-child(1) .EachSection__head {
    line-height: 3;
  }
  #Event .Section__sub .EachSection:nth-child(1) .EachSection__body {
    padding-top: 4vh;
  }
  #Event .Section__sub .EachSection:nth-child(1) .EachSection__foot {
    padding-top: 8vh;
  }
}
@keyframes example {
  100% {
    opacity: 1;
  }
}
#Event #BaumHausSubTitle {
  color: #8e1d22;
  font-size: 43px;
  line-height: 1.2;
}
@media only screen and (max-width: 939px) and (min-width: 770px) {
  #Event #BaumHausSubTitle {
    font-size: 40px;
  }
}
@media only screen and (max-width: 769px) {
  #Event #BaumHausSubTitle {
    font-size: 20px;
  }
}
#Event .EachSection {
  padding-top: 90px;
}
#Event .EachSection.js-customanimation .animationchild {
  opacity: 0;
  filter: alpha(opacity=0); /* ie lt 8 */
  -ms-filter: "alpha(opacity=$op * 10)"; /* ie 8 */
  -moz-opacity: 0; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0; /* Safari 1.x */
}
#Event .EachSection.js-customanimation.is-animation .animationchild:nth-child(1) {
  animation: example 1.5s ease 0.5s 1 forwards;
}
#Event .EachSection.js-customanimation.is-animation .animationchild:nth-child(2) {
  animation: example 1.5s ease 1s 1 forwards;
}
#Event .EachSection.js-customanimation.is-animation .animationchild:nth-child(3) {
  animation: example 1.5s ease 1.5s 1 forwards;
}
#Event .EachSection + .EachSectcion {
  padding-top: 90px;
}
#Event .EachSection .EachSection__body {
  padding-top: 60px;
}
#Event .Section__foot .EachSection__head {
  color: #000;
  text-align: left;
  font-weight: bold;
  padding-bottom: 0;
  margin-bottom: 15px;
}
#Event .Section__foot .EachSection__sub {
  text-align: left;
}
#Event .Section__foot .EachSection.FormContainer {
  text-align: left;
}
#Event .Section__foot .EachSection.FormContainer .EachForm.Checkbox label {
  display: inline;
}
#Event .Section__foot .EachSection.FormContainer .EachForm.Checkbox label a {
  color: #96B5FF;
  text-decoration: underline;
}

#thankyou-event-confirmpage h2.Section__head {
  font-size: 30px;
}
#thankyou-event-confirmpage .Section__body {
  margin: auto;
  text-align: center;
}
#thankyou-event-confirmpage .Section__body p {
  display: inline-block;
  text-align: left;
  font-size: 15px;
  line-height: 150%;
}

@media only screen and (min-width: 770px) {
  #requestpage .Section__body {
    margin-top: 120px;
  }
  #requestpage form {
    display: block;
    max-width: 800px;
    margin: auto;
  }
}
#requestpage .wpcf7-list-item-label a {
  color: #8e1d22;
  text-decoration: underline;
}

#thankyou-requestpage h2.Section__head {
  font-size: 30px;
}
#thankyou-requestpage .Section__body {
  margin: auto;
  text-align: center;
}
#thankyou-requestpage .Section__body p {
  display: inline-block;
  text-align: left;
  font-size: 15px;
  line-height: 150%;
}

#woodenshedsarchive .Section.WoodenShedsSection {
  padding-top: 0;
}
#woodenshedsarchive .Section.WoodenShedsSection .Section__sub {
  background-image: url(./images/mokusei_header.jpg);
  background-position: center;
  background-size: cover;
  padding: 26% 0;
  position: relative;
}
#woodenshedsarchive .Section.WoodenShedsSection .Section__head {
  text-shadow: 0 0 10px #000;
  color: #fff;
  font-size: 25px !important;
}
#woodenshedssignle .WoodenSheds__head {
  font-size: 5rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#woodenshedssignle .WoodenSheds__head--japan {
  font-size: 2rem;
  padding-right: 30px;
}
#woodenshedssignle .WoodenSheds__explain p {
  font-size: 1.5rem;
  line-height: 1.8;
  padding-right: 30px;
}
#woodenshedssignle .WoodenSheds__explain--extra p {
  font-size: 1.1rem;
  line-height: 1.8;
  padding-right: 30px;
}
#woodenshedssignle .EachContent {
  padding: 65px 0;
}
#woodenshedssignle .EachContent:nth-child(2) {
  background-color: #f7f7f7;
}
#woodenshedssignle .EachContent .ShedThumbnailContainer {
  width: 90%;
  margin: auto;
}
#woodenshedssignle .EachContent .ShedThumbnailContainer .ShedThumbnail {
  padding: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 10px;
}
#woodenshedssignle .EachContent #imageGallery + p {
  margin-top: 15px;
}
#woodenshedssignle .EachContent .ShedInfoContainer {
  width: 90%;
  margin: auto;
}
@media only screen and (min-width: 940px) {
  #woodenshedssignle #imageGallery {
    padding-left: 60px;
  }
  #woodenshedssignle #imageGallery + p {
    margin-top: 15px;
    padding-left: 60px;
  }
}
@media only screen and (max-width: 940px) {
  #woodenshedssignle .WoodenSheds__head {
    font-size: 2.8rem;
    width: 100%;
    max-width: none;
    padding-right: 0;
  }
  #woodenshedssignle .WoodenSheds__head--japan {
    font-size: 1.5rem;
    padding-right: 0;
  }
  #woodenshedssignle .WoodenSheds__explain p {
    font-size: 1.2rem;
    padding-right: 0;
  }
  #woodenshedssignle .WoodenSheds__explain--extra p {
    padding-right: 0;
    font-size: 1rem;
  }
  #woodenshedssignle .ShedInfoContainer {
    width: 90%;
    margin: auto;
    margin-top: 50px !important;
  }
}

.ShedInfoTable th,
.ShedInfoTable td {
  font-weight: normal;
  padding: 10px;
  vertical-align: top;
  line-height: 1.5;
}
.ShedInfoTable .font-bold td {
  font-weight: bold;
  font-size: 1.4rem;
}
.ShedInfoTable .font-bold th,
.ShedInfoTable .font-bold td {
  vertical-align: middle;
}
.ShedInfoTable th {
  letter-spacing: 5px;
  padding-right: 10px;
  min-width: 100px;
}
.ShedInfoTable td .ColorList__item {
  width: 37px;
  height: 21px;
}

.GoToFormContainer {
  text-align: center;
}
.GoToFormContainer .GoToForm {
  display: inline-block;
  font-size: 1.2rem;
  max-width: 400px;
  color: #fff;
  background-color: #000;
  width: 70%;
  margin: auto;
  padding: 22px 0;
}

.LineUpContainer {
  margin-top: 220px;
}
.LineUpContainer h3 span {
  font-size: 3rem;
  border-bottom: 3px solid;
  line-height: 1;
  padding-bottom: 14px;
  font-style: italic;
}
.LineUpContainer h3 + .fx-row {
  margin-top: 165px;
}
.LineUpContainer .EachShedsContainer {
  margin-bottom: 80px;
}
.LineUpContainer .EachShedsContainer .EachSheds {
  width: 89%;
  margin: auto;
}
.LineUpContainer .EachShedsContainer .EachSheds__sub {
  padding: 34.75% 0;
  margin-bottom: 17px;
  background-size: cover;
  background-repeat: no-repeat;
}
.LineUpContainer .EachShedsContainer .EachSheds__title {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0 0 4px;
}
.LineUpContainer .EachShedsContainer .EachSheds__title--japan {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.ColorList {
  font-size: 0;
}
.ColorList__item {
  display: inline-block;
  width: 25px;
  height: 16px;
  margin-right: 2px;
}

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

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

#PropSlide li {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#PropSlide li.vertical {
  background-size: contain;
}
#PropSlide li img.vertical {
  height: 100%;
  width: auto;
}

#bxPager {
  margin-top: 15px;
  justify-content: flex-start;
}
#bxPager &gt; a {
  flex-basis: 60px;
  max-width: 60px;
}
#bxPager &gt; a img {
  width: 56px;
  padding: 2px;
}

.ModelBannerSection,
.GardenWoodenShedSection {
  margin-top: 80px;
  position: relative;
}
.ModelBannerSection .Section__body,
.GardenWoodenShedSection .Section__body {
  padding: 100px 0;
  max-width: 80%;
  margin: 45px auto 0 !important;
}
.ModelBannerSection .Section__head,
.GardenWoodenShedSection .Section__head {
  position: absolute;
  left: -25%;
  top: 0;
  transform: rotate(-15deg) translateX(50%) translateY(-50%);
  font-weight: bold !important;
}
.ModelBannerSection__sub,
.GardenWoodenShedSection__sub {
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-image: url(./images/baum_haus_sample01.jpg);
  width: 80%;
  height: 100%;
  right: 0;
  top: 0px;
  z-index: 1;
}
.ModelBannerSection__subcontainer,
.GardenWoodenShedSection__subcontainer {
  position: relative;
}
.ModelBannerSection__main,
.GardenWoodenShedSection__main {
  margin-top: 0px;
  position: relative;
  z-index: 10;
  background: #fff;
  max-width: 520px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 80px 60px;
}
.ModelBannerSection__main h4,
.GardenWoodenShedSection__main h4 {
  font-weight: bold !important;
  font-size: 25px !important;
}
.ModelBannerSection__main p,
.GardenWoodenShedSection__main p {
  font-size: 20px;
}
@media only screen and (max-width: 940px) {
  .ModelBannerSection .Section__head,
  .GardenWoodenShedSection .Section__head {
    font-size: 40px !important;
    font-weight: normal !important;
  }
  .ModelBannerSection .Section__body,
  .GardenWoodenShedSection .Section__body {
    max-width: 100%;
    padding: 0 !important;
  }
  .ModelBannerSection .Section__head,
  .GardenWoodenShedSection .Section__head {
    left: 40px !important;
    transform: rotate(-15deg) translateX(0%) translateY(-120%);
  }
  .ModelBannerSection__sub,
  .GardenWoodenShedSection__sub {
    position: relative !important;
    height: 400px;
    width: 100%;
  }
  .ModelBannerSection__main,
  .GardenWoodenShedSection__main {
    max-width: 500px;
    padding: 40px 20px;
    top: -60px;
    margin: 0 auto;
    margin-bottom: -60px;
  }
  .ModelBannerSection__main p,
  .GardenWoodenShedSection__main p {
    font-size: 13px;
  }
}

.GardenWoodenShedSection .Section__head {
  left: -60%;
  top: 10%;
}
.GardenWoodenShedSection__sub {
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-image: url(./images/GardenWoodenShedSection_bg2.png);
  left: 0;
}
.GardenWoodenShedSection__main {
  margin-right: 0;
  margin-left: auto;
}

.delighter {
  transition: all 1s ease-out;
  transform: translateY(100px);
  opacity: 0;
}

/* スタート時のスタイル */
.delighter.started {
  transform: none;
  opacity: 1;
}

/* エンド時のスタイル */
.wpcf7-list-item {
  position: relative;
}

.recruitment .delighter.SagyoList li {
  opacity: 0;
  transform: translatey(400%);
  transition: all 0.7s ease-out;
}
.recruitment .delighter.SagyoList.started li {
  opacity: 1;
  transform: none;
}
.recruitment .delighter.SagyoList.started li:nth-child(1) {
  transition: all 0.7s ease-out 0.1s;
}
.recruitment .delighter.SagyoList.started li:nth-child(2) {
  transition: all 0.7s ease-out 0.3s;
}
.recruitment .delighter.SagyoList.started li:nth-child(3) {
  transition: all 0.7s ease-out 0.5s;
}
.recruitment .delighter.SagyoList.started li:nth-child(4) {
  transition: all 0.7s ease-out 0.7s;
}
.recruitment .delighter.SagyoList.started li:nth-child(5) {
  transition: all 0.7s ease-out 0.9s;
}
.recruitment .delighter.SagyoList.started li:nth-child(6) {
  transition: all 0.7s ease-out 1.1s;
}
.recruitment .delighter.SagyoList.started li:nth-child(7) {
  transition: all 0.7s ease-out 1.3s;
}

@media only screen and (max-width: 940px) {
  .text-center {
    text-align: center;
  }
}
.delighter .Eachqanda {
  opacity: 0;
  transform: translatey(50%);
  transition: all 0.7s ease-out;
}
.delighter.started .Eachqanda {
  opacity: 1;
  transform: none;
}
.delighter.started .Eachqanda:nth-child(1) {
  transition: all 0.7s ease-out 0.1s;
}
.delighter.started .Eachqanda:nth-child(2) {
  transition: all 0.7s ease-out 0.3s;
}
.delighter.started .Eachqanda:nth-child(3) {
  transition: all 0.7s ease-out 0.5s;
}
.delighter.started .Eachqanda:nth-child(4) {
  transition: all 0.7s ease-out 0.7s;
}
.delighter.started .Eachqanda:nth-child(5) {
  transition: all 0.7s ease-out 0.9s;
}
.delighter.started .Eachqanda:nth-child(6) {
  transition: all 0.7s ease-out 1.1s;
}
.delighter.started .Eachqanda:nth-child(7) {
  transition: all 0.7s ease-out 1.3s;
}
.delighter.VisionImageContainer img {
  opacity: 0;
  transform: translatey(50%);
  transition: all 2s ease-out;
}
.delighter.VisionImageContainer.started img {
  opacity: 1;
  transform: none;
}
.delighter.VisionImageContainer.started img:nth-child(1) {
  transition: all 2s ease-out 0.1s;
}
.delighter.VisionImageContainer.started img:nth-child(2) {
  transition: all 2.5s ease-out 0.3s;
}

.SectionBgColor {
  background-color: #fff0e9;
}
.SectionBgColor h2.Section__head {
  margin-bottom: 0 !important;
  transform: translateY(-60px) rotate(-15deg);
}

p.new_mark {
  position: absolute;
  display: inline-block;
  background: #d7122e;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 3.5;
  font-style: normal;
  font-family: sans-serif;
  top: 0;
  right: 0;
  transform: translateY(-40%) translateX(40%);
  text-align: center;
}
@media only screen and (max-width: 769px) {
  p.new_mark {
    width: 35px;
    height: 35px;
    line-height: 3.3;
    right: 13px;
  }
}

.bottomNav {
  display: none !important;
}

.allinone_carousel.powerful .elementTitle p {
  color: #000;
  font-size: 29px;
}
.allinone_carousel.powerful .bannerControls {
  margin-top: 0 !important;
  bottom: 0 !important;
}
.allinone_carousel.powerful .bannerControls .leftNav,
.allinone_carousel.powerful .bannerControls .rightNav {
  display: block !important;
  bottom: -45px !important;
}
.allinone_carousel.powerful .bannerControls .leftNav {
  left: 35%;
}
.allinone_carousel.powerful .bannerControls .rightNav {
  right: 35%;
}

@media only screen and (max-width: 769px) {
  .sp-block {
    display: block;
  }
}

.sbi_feedtheme_header_text {
	color:#fff;
}</pre></body></html>