*, *:after, *:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-wrap: break-word;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
}
html {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    font-family: "Helvetica Neue", 'Open Sans', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
body {
  color: #1f1f1f;
  min-width: 16.666667em;
  line-height: 1.65em;
}

.flexbox {
    display: -webkit-flex;
    display: flex;
    flex-wrap: -webkit-wrap;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.section-divider {
  position: absolute;
  background-color: #ddd;
  height: 1px;
  width: 25%;
  max-width: 120px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
}
a {
  color: inherit;
  text-decoration: none;
  transition: 100ms color cubic-bezier(.4, 0, .2, 1);
}
ul {
  list-style: none;
}
input, textarea, button, a, select {
  color: inherit;
  outline: 0;
  border: 0;
}
input, textarea, button {
  color: inherit;
  padding: .5em 1em;
  line-height: 1.65em;
  font-family: inherit;
  font-size: inherit;
}




.center {
  display: block;
  text-align: center;
}
.accent {
  color: #4cabff;
}

/* BANNER */
.banner {
  padding: 0;
  padding-top: 90px;
}

/* MEASUREMENTS */
.flexbox {
  display: -webkit-flex;
  display: flex;
    flex-wrap: -webkit-wrap;
    flex-wrap: wrap;
}
.flexitem {
  -webkit-flex: 1;
  flex: 1;
}
.no-flex {
  -webkit-flex: none;
  flex: none;
}

/* WEBKIT FIXES */
a, button, input, textarea {
  -webkit-appearance: none;
}



