/* --------------------------------------
[reset]
--------------------------------------*/
body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-size: inherit;
  font-weight: normal;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: initial;
}

ul,
ol,
dl,
dt,
dd {
  padding: 0;
  margin: 0;
  list-style: none;
}

.flexBox {
  display: flex;
  flex-wrap: wrap;
}

.flexBox.center {
  justify-content: center;
}

.flexBox.space {
  justify-content: space-between;
}

.flexBox.midle {
  align-items: center;
}

.flexBox.top {
  align-content: flex-start;
}

.flexBox.bottom {
  justify-content: flex-end;
}

.flexBox.end {
  justify-content: flex-end;
}

.flexBox.start {
  justify-content: flex-start;
}
.text-center {
  text-align: center;
}