/* === Standard grid classes === */
.container {
  width: auto;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.double-col {
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px;
}

.flex-tab {
  display: flex;
  flex-direction: column;
}

.flex-tab__row {
  flex-basis: 100%;
}

[class*=col-] {
  box-sizing: border-box;
  padding: 0px 12px;
  margin: 0px 0px;
}

.equalize-cols [class*=col-]:first-child {
  padding-left: 0px;
}
.equalize-cols [class*=col-]:last-child {
  padding-right: 0px;
}

.col-0 {
  flex-basis: 0%;
}

.col-1 {
  flex-basis: 8.3333333333%;
}

.col-2 {
  flex-basis: 16.6666666667%;
}

.col-3 {
  flex-basis: 25%;
}

.col-4 {
  flex-basis: 33.3333333333%;
}

.col-5 {
  flex-basis: 41.6666666667%;
}

.col-6 {
  flex-basis: 50%;
}

.col-7 {
  flex-basis: 58.3333333333%;
}

.col-8 {
  flex-basis: 66.6666666667%;
}

.col-9 {
  flex-basis: 75%;
}

.col-10 {
  flex-basis: 83.3333333333%;
}

.col-11 {
  flex-basis: 91.6666666667%;
}

.col-12 {
  flex-basis: 100%;
}

/* === Responsive Grid Classes === */
@media only screen and (min-width: 576px) {
  .container {
    width: 546px;
  }

  [class*=col-] {
    padding: 0px 12px;
    margin: 0px 0px;
  }

  .equalize-cols-sm [class*=col-]:first-child {
    padding-left: 0px;
  }
  .equalize-cols-sm [class*=col-]:last-child {
    padding-right: 0px;
  }

  .col-sm-1 {
    flex-basis: 8.3333333333%;
  }

  .col-sm-2 {
    flex-basis: 16.6666666667%;
  }

  .col-sm-3 {
    flex-basis: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.3333333333%;
  }

  .col-sm-5 {
    flex-basis: 41.6666666667%;
  }

  .col-sm-6 {
    flex-basis: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.3333333333%;
  }

  .col-sm-8 {
    flex-basis: 66.6666666667%;
  }

  .col-sm-9 {
    flex-basis: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.3333333333%;
  }

  .col-sm-11 {
    flex-basis: 91.6666666667%;
  }

  .col-sm-12 {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    width: 728px;
  }

  [class*=col-] {
    padding: 0px 12px;
    margin: 0px 0px;
  }

  .equalize-cols-md [class*=col-]:first-child {
    padding-left: 0px;
  }
  .equalize-cols-md [class*=col-]:last-child {
    padding-right: 0px;
  }

  .col-md-1 {
    flex-basis: 8.3333333333%;
  }

  .col-md-2 {
    flex-basis: 16.6666666667%;
  }

  .col-md-3 {
    flex-basis: 25%;
  }

  .col-md-4 {
    flex-basis: 33.3333333333%;
  }

  .col-md-5 {
    flex-basis: 41.6666666667%;
  }

  .col-md-6 {
    flex-basis: 50%;
  }

  .col-md-7 {
    flex-basis: 58.3333333333%;
  }

  .col-md-8 {
    flex-basis: 66.6666666667%;
  }

  .col-md-9 {
    flex-basis: 75%;
  }

  .col-md-10 {
    flex-basis: 83.3333333333%;
  }

  .col-md-11 {
    flex-basis: 91.6666666667%;
  }

  .col-md-12 {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    width: 942px;
  }

  [class*=col-] {
    padding: 0px 12px;
    margin: 0px 0px;
  }

  .equalize-cols-lg [class*=col-]:first-child {
    padding-left: 0px;
  }
  .equalize-cols-lg [class*=col-]:last-child {
    padding-right: 0px;
  }

  .col-lg-1 {
    flex-basis: 8.3333333333%;
  }

  .col-lg-2 {
    flex-basis: 16.6666666667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.3333333333%;
  }

  .col-lg-5 {
    flex-basis: 41.6666666667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.3333333333%;
  }

  .col-lg-8 {
    flex-basis: 66.6666666667%;
  }

  .col-lg-9 {
    flex-basis: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.3333333333%;
  }

  .col-lg-11 {
    flex-basis: 91.6666666667%;
  }

  .col-lg-12 {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 1040px;
  }

  [class*=col-] {
    padding: 0px 12px;
    margin: 0px 0px;
  }

  .equalize-cols-xl [class*=col-]:first-child {
    padding-left: 0px;
  }
  .equalize-cols-xl [class*=col-]:last-child {
    padding-right: 0px;
  }

  .col-xl-1 {
    flex-basis: 8.3333333333%;
  }

  .col-xl-2 {
    flex-basis: 16.6666666667%;
  }

  .col-xl-3 {
    flex-basis: 25%;
  }

  .col-xl-4 {
    flex-basis: 33.3333333333%;
  }

  .col-xl-5 {
    flex-basis: 41.6666666667%;
  }

  .col-xl-6 {
    flex-basis: 50%;
  }

  .col-xl-7 {
    flex-basis: 58.3333333333%;
  }

  .col-xl-8 {
    flex-basis: 66.6666666667%;
  }

  .col-xl-9 {
    flex-basis: 75%;
  }

  .col-xl-10 {
    flex-basis: 83.3333333333%;
  }

  .col-xl-11 {
    flex-basis: 91.6666666667%;
  }

  .col-xl-12 {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    width: 1200px;
  }

  [class*=col-] {
    padding: 0px 12px;
    margin: 0px 0px;
  }

  .equalize-cols-xxl [class*=col-]:first-child {
    padding-left: 0px;
  }
  .equalize-cols-xxl [class*=col-]:last-child {
    padding-right: 0px;
  }

  .col-xxl-1 {
    flex-basis: 8.3333333333%;
  }

  .col-xxl-2 {
    flex-basis: 16.6666666667%;
  }

  .col-xxl-3 {
    flex-basis: 25%;
  }

  .col-xxl-4 {
    flex-basis: 33.3333333333%;
  }

  .col-xxl-5 {
    flex-basis: 41.6666666667%;
  }

  .col-xxl-6 {
    flex-basis: 50%;
  }

  .col-xxl-7 {
    flex-basis: 58.3333333333%;
  }

  .col-xxl-8 {
    flex-basis: 66.6666666667%;
  }

  .col-xxl-9 {
    flex-basis: 75%;
  }

  .col-xxl-10 {
    flex-basis: 83.3333333333%;
  }

  .col-xxl-11 {
    flex-basis: 91.6666666667%;
  }

  .col-xxl-12 {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .container-right {
    width: calc(942px + calc(calc(100vw - 942px) / 2));
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .container-right {
    width: calc(1040px + calc(calc(100vw - 1040px) / 2));
    margin-right: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .container-right {
    width: calc(1200px + calc(calc(100vw - 1200px) / 2));
    margin-right: 0;
  }
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/fujifilm/assets/fonts/Roboto-Light.ttf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/fujifilm/assets/fonts/Roboto-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/fujifilm/assets/fonts/Roboto-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/fujifilm/assets/fonts/Roboto-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/fujifilm/assets/fonts/Roboto-Black.ttf");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("/wp-content/themes/fujifilm/assets/fonts/Oswald-VariableFont_wght.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Oswald Bold";
  src: url("/wp-content/themes/fujifilm/assets/fonts/Oswald-Bold.ttf");
  font-display: swap;
}
a,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald Bold", sans-serif;
  font-weight: 500;
  word-break: break-word;
}

strong, b {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

h1, h2, h4, .uppercase {
  text-transform: uppercase;
}

h1 {
  font-size: 46px;
  line-height: 55px;
}

h2 {
  font-size: 30px;
  line-height: 1.2;
}

h3 {
  font-size: 19px;
}

h4 {
  font-size: 20pt;
}

a {
  color: #009470;
  text-decoration: none;
}
a:hover {
  color: #000;
}

p {
  line-height: 26px;
  font-weight: 300;
}

li {
  font-weight: 300;
}

html, body {
  margin: 0 !important;
  width: 100%;
  font-family: Roboto, sans-serif;
}

input, textarea, input[type=submit] {
  border-radius: 0;
  inset: 0;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
}

a.tag-cloud-link {
  font-size: 16px;
}

#breadcrumbs {
  padding-top: 10px;
  color: #9D9D9D;
}
#breadcrumbs a {
  color: #9D9D9D;
}
#breadcrumbs * {
  font-size: 14px;
}

.show-on-mobile {
  display: none;
}

.image-caption {
  font-style: italic;
  font-size: 14px;
  margin: 8px 0 32px 0;
}

body.top-bar {
  margin-top: 32px;
  height: calc(100vh - 32px);
  overflow-y: auto;
}

ul:not([class]), ol:not([class]), li:not([class]) {
  line-height: 26px !important;
}

#app {
  padding-top: 170px;
}

#footer {
  margin-top: 50px;
}

.flex-start {
  justify-content: flex-start;
}

.flex-apart {
  justify-content: space-between;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 64px;
}

.pb-4 {
  padding-bottom: 64px;
}

.nw-option {
  white-space: nowrap;
}

.fw-content * {
  width: 100%;
}

.bs-bb {
  box-sizing: border-box;
}

.fw-text-section ul li {
  margin-top: 12px;
  line-height: 22px;
}

.article-post .text-content > p {
  display: block;
}

@media only screen and (max-width: 576px) {
  .hide-on-mobile {
    display: none;
  }
}
.footer-col-5 {
  display: none;
}

@media only screen and (max-width: 991px) {
  .hide-on-tablet {
    display: none;
  }

  .show-on-mobile {
    display: block;
  }

  .footer-col-1 {
    order: 1;
  }

  .footer-col-2 {
    order: 3;
    margin-top: 36px;
  }

  .footer-col-3 {
    order: 4;
    margin-top: 36px;
  }

  .footer-col-4 {
    order: 2;
  }

  .footer-col-5 {
    order: 5;
    display: block;
  }
}
.fw-text-section .col-12 > p:not([class]), .fw-text-section .col-12 > ul:not([class]) {
  display: inline-block;
  word-break: break-word;
  overflow: hidden;
}

/*# sourceMappingURL=main.css.map */
