.container {
  width: 100%;
  max-width: 935px;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 519px) {
  .container {
    padding-left: 35px;
    padding-right: 35px;
  }
}

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

.w-full {
  width: 100%;
}

.w-80 {
  width: 80%;
}

@media screen and (max-width: 1289px) {
  .tablet-w-full {
    width: 100%;
  }
}

.h-full {
  height: 100%;
}

@media screen and (max-width: 1289px) {
  .tablet-h-auto {
    height: auto;
  }
}

.bg-white {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.border-white {
  border-color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.text-black {
  color: #000000;
}

.border-black {
  border-color: #000000;
}

.bg-dark {
  background-color: #080808;
}

.text-dark {
  color: #080808;
}

.border-dark {
  border-color: #080808;
}

.bg-red {
  background-color: #de3c3c;
}

.text-red {
  color: #de3c3c;
}

.border-red {
  border-color: #de3c3c;
}

.bg-strong-red {
  background-color: #cb0000;
}

.text-strong-red {
  color: #cb0000;
}

.border-strong-red {
  border-color: #cb0000;
}

.bg-cyan {
  background-color: #5cbec6;
}

.text-cyan {
  color: #5cbec6;
}

.border-cyan {
  border-color: #5cbec6;
}

.bg-light-gray {
  background-color: #f2f2f2;
}

.text-light-gray {
  color: #f2f2f2;
}

.border-light-gray {
  border-color: #f2f2f2;
}

.bg-transparent {
  background-color: transparent;
}

.text-transparent {
  color: transparent;
}

.border-transparent {
  border-color: transparent;
}

.flex {
  display: flex;
}

.items-flex-start {
  align-items: flex-start;
}

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

.items-flex-end {
  align-items: flex-end;
}

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

.justify-center {
  justify-content: center;
}

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

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

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

.direction-row {
  flex-direction: row;
}

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

.direction-column-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.inline-flex {
  display: inline-flex;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

.none {
  display: none;
}

.contents {
  display: contents;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-static {
  position: static;
}

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

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

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

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-700 {
  font-weight: 700;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

@media screen and (max-width: 1289px) {
  .tablet-flex {
    display: flex;
  }
  .tablet-items-flex-start {
    align-items: flex-start;
  }
  .tablet-items-center {
    align-items: center;
  }
  .tablet-items-flex-end {
    align-items: flex-end;
  }
  .tablet-justify-flex-start {
    justify-content: flex-start;
  }
  .tablet-justify-center {
    justify-content: center;
  }
  .tablet-justify-flex-end {
    justify-content: flex-end;
  }
  .tablet-justify-space-between {
    justify-content: space-between;
  }
  .tablet-direction-column {
    flex-direction: column;
  }
  .tablet-direction-row {
    flex-direction: row;
  }
  .tablet-direction-row-reverse {
    flex-direction: row-reverse;
  }
  .tablet-direction-column-reverse {
    flex-direction: column-reverse;
  }
  .tablet-flex-wrap {
    flex-wrap: wrap;
  }
  .tablet-flex-nowrap {
    flex-wrap: nowrap;
  }
  .tablet-inline-flex {
    display: inline-flex;
  }
  .tablet-inline-block {
    display: inline-block;
  }
  .tablet-block {
    display: block;
  }
  .tablet-grid {
    display: grid;
  }
  .tablet-none {
    display: none;
  }
  .tablet-contents {
    display: contents;
  }
  .tablet-position-relative {
    position: relative;
  }
  .tablet-position-absolute {
    position: absolute;
  }
  .tablet-position-fixed {
    position: fixed;
  }
  .tablet-position-static {
    position: static;
  }
  .tablet-text-start {
    text-align: start;
  }
  .tablet-text-center {
    text-align: center;
  }
  .tablet-text-end {
    text-align: end;
  }
  .tablet-font-400 {
    font-weight: 400;
  }
  .tablet-font-500 {
    font-weight: 500;
  }
  .tablet-font-700 {
    font-weight: 700;
  }
  .tablet-m-0 {
    margin: 0;
  }
  .tablet-mt-0 {
    margin-top: 0;
  }
  .tablet-mr-0 {
    margin-right: 0;
  }
  .tablet-mb-0 {
    margin-bottom: 0;
  }
  .tablet-ml-0 {
    margin-left: 0;
  }
  .tablet-p-0 {
    padding: 0;
  }
  .tablet-pt-0 {
    padding-top: 0;
  }
  .tablet-pr-0 {
    padding-right: 0;
  }
  .tablet-pb-0 {
    padding-bottom: 0;
  }
  .tablet-pl-0 {
    padding-left: 0;
  }
  .tablet-bg-white {
    background-color: #ffffff;
  }
  .tablet-text-white {
    color: #ffffff;
  }
  .tablet-border-white {
    border-color: #ffffff;
  }
  .tablet-bg-black {
    background-color: #000000;
  }
  .tablet-text-black {
    color: #000000;
  }
  .tablet-border-black {
    border-color: #000000;
  }
  .tablet-bg-dark {
    background-color: #080808;
  }
  .tablet-text-dark {
    color: #080808;
  }
  .tablet-border-dark {
    border-color: #080808;
  }
  .tablet-bg-red {
    background-color: #de3c3c;
  }
  .tablet-text-red {
    color: #de3c3c;
  }
  .tablet-border-red {
    border-color: #de3c3c;
  }
  .tablet-bg-strong-red {
    background-color: #cb0000;
  }
  .tablet-text-strong-red {
    color: #cb0000;
  }
  .tablet-border-strong-red {
    border-color: #cb0000;
  }
  .tablet-bg-cyan {
    background-color: #5cbec6;
  }
  .tablet-text-cyan {
    color: #5cbec6;
  }
  .tablet-border-cyan {
    border-color: #5cbec6;
  }
  .tablet-bg-light-gray {
    background-color: #f2f2f2;
  }
  .tablet-text-light-gray {
    color: #f2f2f2;
  }
  .tablet-border-light-gray {
    border-color: #f2f2f2;
  }
  .tablet-bg-transparent {
    background-color: transparent;
  }
  .tablet-text-transparent {
    color: transparent;
  }
  .tablet-border-transparent {
    border-color: transparent;
  }
}
@media screen and (max-width: 769px) {
  .sp-flex {
    display: flex;
  }
  .sp-items-flex-start {
    align-items: flex-start;
  }
  .sp-items-center {
    align-items: center;
  }
  .sp-items-flex-end {
    align-items: flex-end;
  }
  .sp-justify-flex-start {
    justify-content: flex-start;
  }
  .sp-justify-center {
    justify-content: center;
  }
  .sp-justify-flex-end {
    justify-content: flex-end;
  }
  .sp-justify-space-between {
    justify-content: space-between;
  }
  .sp-direction-column {
    flex-direction: column;
  }
  .sp-direction-row {
    flex-direction: row;
  }
  .sp-direction-row-reverse {
    flex-direction: row-reverse;
  }
  .sp-direction-column-reverse {
    flex-direction: column-reverse;
  }
  .sp-flex-wrap {
    flex-wrap: wrap;
  }
  .sp-flex-nowrap {
    flex-wrap: nowrap;
  }
  .sp-inline-flex {
    display: inline-flex;
  }
  .sp-inline-block {
    display: inline-block;
  }
  .sp-block {
    display: block;
  }
  .sp-grid {
    display: grid;
  }
  .sp-none {
    display: none;
  }
  .sp-contents {
    display: contents;
  }
  .sp-position-relative {
    position: relative;
  }
  .sp-position-absolute {
    position: absolute;
  }
  .sp-position-fixed {
    position: fixed;
  }
  .sp-position-static {
    position: static;
  }
  .sp-text-start {
    text-align: start;
  }
  .sp-text-center {
    text-align: center;
  }
  .sp-text-end {
    text-align: end;
  }
  .sp-font-400 {
    font-weight: 400;
  }
  .sp-font-500 {
    font-weight: 500;
  }
  .sp-font-700 {
    font-weight: 700;
  }
  .sp-m-0 {
    margin: 0;
  }
  .sp-mt-0 {
    margin-top: 0;
  }
  .sp-mr-0 {
    margin-right: 0;
  }
  .sp-mb-0 {
    margin-bottom: 0;
  }
  .sp-ml-0 {
    margin-left: 0;
  }
  .sp-p-0 {
    padding: 0;
  }
  .sp-pt-0 {
    padding-top: 0;
  }
  .sp-pr-0 {
    padding-right: 0;
  }
  .sp-pb-0 {
    padding-bottom: 0;
  }
  .sp-pl-0 {
    padding-left: 0;
  }
  .sp-bg-white {
    background-color: #ffffff;
  }
  .sp-text-white {
    color: #ffffff;
  }
  .sp-border-white {
    border-color: #ffffff;
  }
  .sp-bg-black {
    background-color: #000000;
  }
  .sp-text-black {
    color: #000000;
  }
  .sp-border-black {
    border-color: #000000;
  }
  .sp-bg-dark {
    background-color: #080808;
  }
  .sp-text-dark {
    color: #080808;
  }
  .sp-border-dark {
    border-color: #080808;
  }
  .sp-bg-red {
    background-color: #de3c3c;
  }
  .sp-text-red {
    color: #de3c3c;
  }
  .sp-border-red {
    border-color: #de3c3c;
  }
  .sp-bg-strong-red {
    background-color: #cb0000;
  }
  .sp-text-strong-red {
    color: #cb0000;
  }
  .sp-border-strong-red {
    border-color: #cb0000;
  }
  .sp-bg-cyan {
    background-color: #5cbec6;
  }
  .sp-text-cyan {
    color: #5cbec6;
  }
  .sp-border-cyan {
    border-color: #5cbec6;
  }
  .sp-bg-light-gray {
    background-color: #f2f2f2;
  }
  .sp-text-light-gray {
    color: #f2f2f2;
  }
  .sp-border-light-gray {
    border-color: #f2f2f2;
  }
  .sp-bg-transparent {
    background-color: transparent;
  }
  .sp-text-transparent {
    color: transparent;
  }
  .sp-border-transparent {
    border-color: transparent;
  }
}
@media screen and (max-width: 319px) {
  .small-flex {
    display: flex;
  }
  .small-items-flex-start {
    align-items: flex-start;
  }
  .small-items-center {
    align-items: center;
  }
  .small-items-flex-end {
    align-items: flex-end;
  }
  .small-justify-flex-start {
    justify-content: flex-start;
  }
  .small-justify-center {
    justify-content: center;
  }
  .small-justify-flex-end {
    justify-content: flex-end;
  }
  .small-justify-space-between {
    justify-content: space-between;
  }
  .small-direction-column {
    flex-direction: column;
  }
  .small-direction-row {
    flex-direction: row;
  }
  .small-direction-row-reverse {
    flex-direction: row-reverse;
  }
  .small-direction-column-reverse {
    flex-direction: column-reverse;
  }
  .small-flex-wrap {
    flex-wrap: wrap;
  }
  .small-flex-nowrap {
    flex-wrap: nowrap;
  }
  .small-inline-flex {
    display: inline-flex;
  }
  .small-inline-block {
    display: inline-block;
  }
  .small-block {
    display: block;
  }
  .small-grid {
    display: grid;
  }
  .small-none {
    display: none;
  }
  .small-contents {
    display: contents;
  }
  .small-position-relative {
    position: relative;
  }
  .small-position-absolute {
    position: absolute;
  }
  .small-position-fixed {
    position: fixed;
  }
  .small-position-static {
    position: static;
  }
  .small-text-start {
    text-align: start;
  }
  .small-text-center {
    text-align: center;
  }
  .small-text-end {
    text-align: end;
  }
  .small-font-400 {
    font-weight: 400;
  }
  .small-font-500 {
    font-weight: 500;
  }
  .small-font-700 {
    font-weight: 700;
  }
  .small-m-0 {
    margin: 0;
  }
  .small-mt-0 {
    margin-top: 0;
  }
  .small-mr-0 {
    margin-right: 0;
  }
  .small-mb-0 {
    margin-bottom: 0;
  }
  .small-ml-0 {
    margin-left: 0;
  }
  .small-p-0 {
    padding: 0;
  }
  .small-pt-0 {
    padding-top: 0;
  }
  .small-pr-0 {
    padding-right: 0;
  }
  .small-pb-0 {
    padding-bottom: 0;
  }
  .small-pl-0 {
    padding-left: 0;
  }
  .small-bg-white {
    background-color: #ffffff;
  }
  .small-text-white {
    color: #ffffff;
  }
  .small-border-white {
    border-color: #ffffff;
  }
  .small-bg-black {
    background-color: #000000;
  }
  .small-text-black {
    color: #000000;
  }
  .small-border-black {
    border-color: #000000;
  }
  .small-bg-dark {
    background-color: #080808;
  }
  .small-text-dark {
    color: #080808;
  }
  .small-border-dark {
    border-color: #080808;
  }
  .small-bg-red {
    background-color: #de3c3c;
  }
  .small-text-red {
    color: #de3c3c;
  }
  .small-border-red {
    border-color: #de3c3c;
  }
  .small-bg-strong-red {
    background-color: #cb0000;
  }
  .small-text-strong-red {
    color: #cb0000;
  }
  .small-border-strong-red {
    border-color: #cb0000;
  }
  .small-bg-cyan {
    background-color: #5cbec6;
  }
  .small-text-cyan {
    color: #5cbec6;
  }
  .small-border-cyan {
    border-color: #5cbec6;
  }
  .small-bg-light-gray {
    background-color: #f2f2f2;
  }
  .small-text-light-gray {
    color: #f2f2f2;
  }
  .small-border-light-gray {
    border-color: #f2f2f2;
  }
  .small-bg-transparent {
    background-color: transparent;
  }
  .small-text-transparent {
    color: transparent;
  }
  .small-border-transparent {
    border-color: transparent;
  }
}/*# sourceMappingURL=globals.css.map */