@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 18px;
  height: 15px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 18px;
    height: 3px;
    background-color: #ffff00;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -6px; }
  .hamburger-inner::after {
    bottom: -6px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 36px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 6px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -6px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 36px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 6px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -6px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 36px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 6px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -6px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 36px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 6px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -6px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-3.6px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-3.6px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(3.6px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(3.6px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-3.6px, -4.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-3.6px, 4.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(3.6px, -4.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(3.6px, 4.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -12px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -12px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -6px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 6px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 12px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -12px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 6px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 12px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -12px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 6px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -36px;
      top: -36px;
      transform: translate3d(36px, 36px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -36px;
      top: -36px;
      transform: translate3d(-36px, 36px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 6px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -36px;
      top: 36px;
      transform: translate3d(36px, -36px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -36px;
      top: 36px;
      transform: translate3d(-36px, -36px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider .hamburger-inner::before {
    top: 6px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 12px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-2.57143px, -3px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -12px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 6px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 12px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(2.57143px, -3px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -12px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 6px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 12px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 6px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 6px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -12px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format("opentype"); }

@font-face {
  font-family: 'Bebas';
  src: url("../libs/fonts/BEBAS.ttf") format("truetype"); }

html {
  font-size: 62.5%;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; }

body {
  min-width: 1124px; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box;
  color: #171b33; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  color: inherit;
  text-decoration: none; }

b {
  font-weight: bold; }

.sp {
  display: none !important; }

.inner {
  max-width: 1000px;
  margin: 0 auto; }

.row {
  *zoom: 1; }
  .row:after {
    content: "";
    display: table;
    clear: both; }

.red {
  color: #ff5a00; }

.hoverOpacity, .button {
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s; }
  .hoverOpacity:hover, .button:hover {
    opacity: 0.7; }

.button {
  background-color: #003cbe;
  border: 2px solid #0a3287;
  color: #ffff00;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 10px 0px;
  margin: 0 auto;
  width: 160px; }

section {
  text-align: center; }

.left {
  float: left; }

.right {
  float: right; }

.wrapper {
  margin: 0 auto; }

.clearfix {
  clear: both; }

.blue {
  background-color: #eff8ff; }

.yellow {
  background-color: #ffff00 !important;
  color: #0a3287; }

h2 {
  color: #ff7800;
  font-size: 30px;
  font-size: 3rem;
  font-family: Bebas;
  line-height: 0.7; }
  h2 span {
    color: #0a3287;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 700; }

/* = Selected Text
----------------------------------------------- */
::selection {
  background: #cccde5;
  /* Safari */ }

::-moz-selection {
  background: #cccde5;
  /* Firefox */ }

#footer {
  background: #ff7800;
  height: auto;
  text-align: center;
  padding: 60px 0px 20px 0px; }
  #footer #contact_ph {
    display: none; }
  #footer .logo {
    margin: 0 auto;
    width: 146px; }
  #footer nav {
    text-align: center;
    padding: 10px 0px;
    margin-top: 18px; }
    #footer nav ul li {
      cursor: pointer;
      color: #ffff00;
      display: inline-block;
      font-family: Bebas;
      font-size: 16px;
      font-size: 1.6rem;
      margin: 0px 20px;
      line-height: 1em;
      letter-spacing: 0px;
      text-align: center; }
      #footer nav ul li span {
        color: #ffff00;
        font-size: 11px;
        font-size: 1.1rem; }
  #footer .adress {
    color: #ffff00;
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 40px; }
  #footer p {
    color: #ffff00;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.3em; }
  #footer .tel {
    margin-bottom: 50px; }
    #footer .tel p {
      color: #ffff00;
      font-size: 13px;
      font-size: 1.3rem;
      margin-top: 30px; }
    #footer .tel img {
      margin-top: 6px;
      width: 234px; }
  #footer small {
    color: white;
    font-size: 11px;
    font-size: 1.1rem; }

header {
  width: 100%;
  margin-bottom: -70px;
  position: sticky;
  top: 0;
  z-index: 99; }
  header .upper {
    background-color: #ff7800;
    height: 65px;
    padding: 0px 76px 8px 76px;
    width: 100%;
    z-index: 99; }
    header .upper .wrapper {
      width: 1040px; }
      header .upper .wrapper .logo {
        display: inline-block;
        float: left;
        margin-top: 5px;
        width: 507px; }
        header .upper .wrapper .logo img {
          width: 91px; }
        header .upper .wrapper .logo .ttl {
          color: white;
          float: right;
          font-size: 12px;
          font-size: 1.2rem;
          margin-top: 19px; }
      header .upper .wrapper .right {
        padding-top: 21px; }
      header .upper .wrapper .tel {
        display: inline-block;
        width: 234px; }
      header .upper .wrapper .insta {
        float: right;
        margin-left: 20px;
        width: 30px; }
  header nav {
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 9px 0px;
    top: 65px;
    width: 100%;
    z-index: 99; }
    header nav ul {
      margin: 0 auto;
      width: 1040px; }
    header nav ul li {
      font-family: Bebas;
      color: #ffff00;
      cursor: pointer;
      display: inline-block;
      font-size: 16px;
      font-size: 1.6rem;
      margin: 0px 18px;
      line-height: 1em;
      letter-spacing: 0px;
      text-align: center; }
      header nav ul li span {
        color: #ffff00;
        font-size: 11px;
        font-size: 1.1rem; }

body.top #main_image img {
  width: 100%; }

body.top main #about {
  background-image: url("../images/top/force_about_bg.jpg");
  background-size: cover;
  background-position: 0% 0%;
  padding: 30px 0px;
  height: 1072px;
  position: relative; }
  body.top main #about #about_link {
    position: relative;
    top: -130px; }
  body.top main #about .logo {
    margin-bottom: 20px;
    width: 183px; }
  body.top main #about h1 {
    color: #0a3287;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 20px; }
  body.top main #about p {
    color: #0a3287;
    font-weight: 700;
    line-height: 1.6em;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 35px; }
  body.top main #about img {
    margin: 0 auto;
    margin-bottom: 28px;
    margin-top: 5px;
    width: 600px; }
  body.top main #about .detail h3 {
    color: #ff5a00;
    font-weight: 700;
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 10px; }
  body.top main #about .detail b, body.top main #about .detail strike {
    color: #0a3287; }
  body.top main #about .detail .subt {
    color: #0a3287;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal; }
  body.top main #about .tel {
    color: #0a3287; }
    body.top main #about .tel p {
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.6em;
      margin-bottom: 0px; }
    body.top main #about .tel img {
      width: 300px; }

body.top main #system {
  position: relative; }
  body.top main #system #system_link {
    position: relative;
    top: -110px; }
  body.top main #system .wrapper {
    padding: 62px 0px 60px 0px;
    width: 596px; }
  body.top main #system ul li {
    background: #ffff00;
    border: 2px solid #0a3287;
    border-radius: 140px;
    color: #0a3287;
    font-size: 48px;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px;
    margin-top: 45px;
    padding-top: 40px;
    height: 200px;
    width: 200px; }
    body.top main #system ul li:first-child {
      margin-left: 80px; }
    body.top main #system ul li:last-child {
      margin-right: 80px;
      line-height: 1.1em; }
    body.top main #system ul li span {
      color: #0a3287;
      font-size: 30px;
      font-size: 3rem; }
  body.top main #system .rounded {
    background-color: #ffff00;
    border: 2px solid #0a3287;
    border-radius: 20px;
    color: #0a3287;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 8px 0px; }
    body.top main #system .rounded .dog {
      color: #0a3287;
      font-size: 30px;
      font-size: 3rem; }
    body.top main #system .rounded .red {
      color: #ff5a00; }
    body.top main #system .rounded p {
      color: #0a3287;
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: normal;
      text-align: center; }
    body.top main #system .rounded h3 {
      color: #0a3287;
      line-height: 2em; }
  body.top main #system .subt {
    color: #0a3287;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.5em;
    margin-top: 5px;
    text-align: right; }
  body.top main #system table {
    border: 2px solid #0a3287;
    border-bottom: none;
    color: #0a3287;
    margin: 20px 0px;
    width: 100%; }
    body.top main #system table .subt {
      color: #0a3287;
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: normal;
      margin-top: 9px;
      text-align: center !important; }
    body.top main #system table .special {
      color: #0a3287;
      font-size: 30px;
      font-size: 3rem;
      margin-top: 10px; }
    body.top main #system table .gray {
      background: #dcdcdc; }
    body.top main #system table tr th {
      border: 2px solid #0a3287;
      color: #0a3287;
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 1.3em;
      padding: 16px 0px;
      text-align: center; }
  body.top main #system .title {
    background-color: #ff7800;
    border: 2px solid #0a3287;
    border-bottom: none;
    color: white;
    padding: 8px 0px;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center; }
  body.top main #system .mail {
    color: #0a3287;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 35px; }
    body.top main #system .mail .button {
      margin-top: 10px;
      margin-bottom: 7px; }
    body.top main #system .mail .subt {
      text-align: center; }

body.top main #lesson {
  background-image: url("../images/top/force_lesson.jpg");
  background-size: cover;
  background-position: 0% 0%;
  height: auto;
  padding: 60px 0px;
  position: relative; }
  body.top main #lesson #lesson_link {
    position: relative;
    top: -150px; }
  body.top main #lesson h2 {
    color: #ffff00; }
  body.top main #lesson table {
    background: white;
    border: 2px solid #0a3287;
    margin: 0 auto;
    margin-top: 25px;
    width: 1038px; }
    body.top main #lesson table .title {
      background-color: #003cbe;
      border: 2px solid #0a3287;
      border-bottom: none;
      color: white;
      padding: 11px 0px;
      font-weight: 700;
      font-size: 18px;
      font-size: 1.8rem;
      text-align: center; }
    body.top main #lesson table tr th {
      border: 2px solid #0a3287;
      color: #0a3287;
      font-weight: 700;
      line-height: 1.5em;
      padding: 7px 0px;
      text-align: center; }
    body.top main #lesson img {
      width: 1038px;
      margin: 60px auto 0;}
    body.top main #lesson img .sp{
      display: none; }

body.top main #instructor {
  background: #f5f5f5;
  margin: 0 auto;
  height: auto;
  padding: 60px 0px;
  position: relative; }
  body.top main #instructor #instructor_link {
    position: relative;
    top: -177px; }
  body.top main #instructor #ins {
    background: #ff7800;
    margin: 0 auto;
    margin-top: 31px;
    padding: 15px 0px 25px 15px;
    height: auto;
    width: 1038px; }
    body.top main #instructor #ins .left {
      padding-top: 15px;
      margin-left: 10px;
      width: 687px; }
    body.top main #instructor #ins h3 {
      color: #ffff00;
      font-size: 24px;
      font-size: 2.4rem;
      font-family: Bebas;
      margin-bottom: 6px;
      text-align: left; }
    body.top main #instructor #ins img {
      float: left;
      width: 303px; }
    body.top main #instructor #ins p {
      margin-bottom: 10px; }
    body.top main #instructor #ins ul li, body.top main #instructor #ins p {
      color: white;
      font-size: 12px;
      font-size: 1.2rem;
      text-align: left;
      line-height: 1.5em; }

body.top main #access {
  height: auto;
  padding: 60px 0px;
  position: relative; }
  body.top main #access #access_link {
    position: relative;
    top: -170px; }
  body.top main #access .wrapper {
    width: 1040px; }
  body.top main #access .left {
    margin-left: 20px; }
  body.top main #access .right {
    margin-right: 20px; }
  body.top main #access .smalls .left, body.top main #access .smalls .right {
    width: 45%; }
  body.top main #access .map {
    border: 2px solid #0a3287;
    margin-top: 60px; }
    body.top main #access .map h3 {
      background: #0a3287;
      color: #ffff00;
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 700;
      padding: 15px 0px; }
  body.top main #access .map_big {
    background: #f5f5f5;
    margin-top: 50px;
    padding: 20px;
    width: 1040px; }
    body.top main #access .map_big .left {
      margin-left: 0px;
      position: relative; }
      body.top main #access .map_big .left #map {
        border: 2px solid #0a3287;
        height: 496px;
        width: 496px; }
      body.top main #access .map_big .left::after {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        content: "クリックでMAPを表示";
        font-size: 36px;
        font-size: 3.6rem;
        font-weight: 700;
        position: absolute;
        padding: 220px 0px 0px 0px;
        pointer-events: none;
        top: 0px;
        left: 0px;
        height: 274px;
        width: 494px;
        opacity: 0; }
      body.top main #access .map_big .left:hover::after {
        opacity: 1; }
    body.top main #access .map_big .right {
      margin-left: 30px;
      margin-right: 0px;
      text-align: left;
      width: 470px; }
      body.top main #access .map_big .right .smalls {
        color: #0a3287;
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1em; }
      body.top main #access .map_big .right .buttons {
        width: 300px; }
      body.top main #access .map_big .right h3 {
        color: #0a3287;
        font-size: 20px;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.5em; }
      body.top main #access .map_big .right p {
        color: #0a3287;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: normal;
        line-height: 1.3em;
        margin: 0px;
        margin-bottom: 8px; }
      body.top main #access .map_big .right a {
        color: #0a3287;
        font-size: 14px;
        font-size: 1.4rem; }
      body.top main #access .map_big .right .logo {
        margin: 30px 0px 15px 0px;
        width: 150px; }
      body.top main #access .map_big .right .tel {
        margin: 40px 0px 20px 0px; }
        body.top main #access .map_big .right .tel p {
          color: #0a3287;
          font-size: 13px;
          font-size: 1.3rem;
          font-weight: 700; }
        body.top main #access .map_big .right .tel img {
          width: 300px; }
      body.top main #access .map_big .right .button {
        background: #f5f5f5;
        color: #0a3287;
        float: left;
        padding: 12px;
        margin-bottom: 10px;
        width: 280px; }
  body.top main #access p {
    color: #0a3287;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 10px;
    margin-left: 5px;
    line-height: 1.5em;
    text-align: left; }

body.top main #team_event {
  background-image: url("../images/top/force_team_bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
  height: auto;
  padding: 60px 0px 30px 0px;
  position: relative; }
  body.top main #team_event #team_event_link {
    position: relative;
    top: -175px; }
  body.top main #team_event .wrapper {
    width: 1030px; }
  body.top main #team_event h2 {
    color: #ffff00;
    font-size: 30px;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5em; }
  body.top main #team_event p {
    color: #ffff00;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5em; }
  body.top main #team_event .right, body.top main #team_event .left {
    background-color: #ff5a00;
    border: 2px solid #ffff00;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5em;
    padding: 30px 20px;
    margin-top: 55px;
    text-align: left;
    height: 220px;
    width: 510px; }
    body.top main #team_event .right h3, body.top main #team_event .left h3 {
      color: #ffff00;
      font-size: 24px;
      font-size: 2.4rem;
      font-family: Bebas;
      margin-bottom: 7px;
      text-align: left; }
    body.top main #team_event .bosyuu {
      color: #ffff00;
      font-size: 24px;
      font-size: 2.4rem;
      margin-top: 40px; }
    body.top main #team_event .bosyuu_s {
      color: #ffff00;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.6em; }
    body.top main #team_event .tel {
      margin-bottom: 50px; }
    body.top main #team_event .tel p {
      color: #ffff00;
      font-size: 13px;
      font-size: 1.3rem;
      margin-top: 30px; }
    body.top main #team_event .tel img {
      margin-top: 6px;
      width: 234px; }


body.top main #sns {
  background-image: url("../images/top/force_sns_bg.jpg");
  background-size: 150%;
  background-position: bottom;
  background-repeat: repeat repeat;
  padding: 40px 0px 60px 0px;
  position: relative; }
  body.top main #sns #sns_link {
    position: relative;
    top: -155px; }
  body.top main #sns p {
    color: #ffff00;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5em; }
  body.top main #sns h3 {
    color: #ffff00;
    font-size: 30px;
    font-size: 3rem;
    font-family: Bebas;
    line-height: 1.5em;
    margin-bottom: 5px; }
  body.top main #sns .qr {
    display: block;
    width: 100px;
    margin: 0 auto;
    margin-bottom: 5px;
    margin-top: 10px; }
  body.top main #sns a {
    color: #ffff00;
    font-size: 12px;
    font-size: 1.2rem; }
  body.top main #sns .images {
    margin: 0 auto;
    margin-top: 25px;
    max-width: 1060px; }
    body.top main #sns .images li {
      display: inline-block;
      margin: 3px 1px;
      width: 260px; }

body.top main #contact {
  background: #0a3287;
  height: 520px;
  padding-top: 60px;
  position: relative; }
  body.top main #contact #contact_link {
    position: relative;
    top: -120px; }
  body.top main #contact img {
    margin-top: 20px;
    width: 150px; }
  body.top main #contact .wrapper {
    background: url("../images/top/force_link_bg.jpg");
    border: 1px solid white;
    padding-top: 10px;
    height: 400px;
    width: 1040px; }
    body.top main #contact .wrapper p {
      color: #ffff00;
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.5em; }
    body.top main #contact .wrapper .button {
      background-color: #ffff00;
      border: 1px solid #0a3287;
      color: #0a3287;
      margin-top: 160px;
      padding: 15px 10px;
      width: 280px; }

/*# sourceMappingURL=style.css.map */
