/**
 * Foundation
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}
@media (max-width: 599.9px) {
  html {
    font-size: 3.84vw;
  }
}

body {
  margin: 0;
  background-color: #ffffff;
  color: #4d4d4d;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.33rem;
}

h4 {
  font-size: 1.17rem;
}

h5 {
  font-weight: bold;
  font-size: 1rem;
}

h6 {
  font-weight: bold;
  font-size: 0.875rem;
}

p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

li {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

strong {
  font-weight: bold;
}

small {
  font-size: 0.875rem;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

blockquote {
  margin: 0 0 0.75em;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: hsl(0deg, 85%, 92.5%);
  font-style: italic;
  font-size: 1rem;
}
blockquote p {
  margin-bottom: 0.375rem;
}

a, a:active {
  color: #4d4d4d;
  text-decoration: none;
}
a:hover, a:focus {
  color: hsl(0deg, 85%, 70%);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  display: block;
  margin: 0 auto 0.75rem;
}

figcaption {
  font-size: 0.875rem;
  line-height: 2.025;
  letter-spacing: 0.04rem;
  text-align: center;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
}

button, input, select, textarea {
  font: inherit;
}

/**
 * Layout
 */
.main__container, .header__container, .--flexItem_12, .--flexItem_11, .--flexItem_10, .--flexItem_9, .--flexItem_8, .--flexItem_7, .--flexItem_6, .--flexItem_5, .--flexItem_4, .--flexItem_3, .--flexItem_2 {
  position: relative;
  flex: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.--flexItem_12, .--flexItem_11, .--flexItem_10, .--flexItem_9, .--flexItem_8, .--flexItem_7, .--flexItem_6, .--flexItem_5, .--flexItem_4, .--flexItem_3, .--flexItem_2 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.main__container, .header__container {
  padding-left: clamp(0.75rem, 2%, 20px);
  padding-right: clamp(0.75rem, 2%, 20px);
}

/**
 * Layout - Header
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  width: 100%;
  height: 6rem;
  padding: 0.375rem;
  border-bottom: 2px solid #4d4d4d;
  background: rgb(255, 255, 255);
}
.header::after {
  content: "";
  position: fixed;
  top: 6rem;
  left: 0;
  z-index: 990;
  width: 100%;
  height: 1.5rem;
  background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.header__container {
  max-width: 1000px;
}

/**
 * Layout - G Nav
 */
.gNav {
  position: relative;
  flex: 0 0 14.5rem;
  letter-spacing: 0.02em;
}
@media (max-width: 999px) {
  .gNav {
    display: none;
  }
}
.gNav__inner {
  position: fixed;
  width: 12rem;
}
.gNav__primaryMenu {
  list-style: none;
  padding-left: 0;
}
.gNav__menuItem {
  margin-bottom: 0.375rem;
}

/**
 * Layout - Main
 */
.page__title, .gNav__title {
  border-bottom: 1px dotted #4d4d4d;
  letter-spacing: 0.2em;
}

.main {
  padding-top: 6rem;
}
.main__container {
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
}

/**
 * Layout - Footer
 */
.footer {
  padding: 3rem 0;
  text-align: center;
}

/**
 * Component - Button
 */
.btn {
  display: block;
  width: 12rem;
  margin: auto;
  padding: 0.75rem;
  border: none;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  word-break: break-word;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.btn:hover {
  opacity: 0.85;
}
.btn.--darkest {
  background-color: #262626;
  color: #ffffff;
}
.btn.--darker {
  background-color: #4d4d4d;
  color: #ffffff;
}
.btn.--dark {
  background-color: #808080;
  color: #ffffff;
}
.btn.--light {
  background-color: #b3b3b3;
  color: #4d4d4d;
}
.btn.--lighter {
  background-color: #d9d9d9;
  color: #4d4d4d;
}
.btn.--lightest {
  background-color: #ffffff;
  color: #4d4d4d;
}
.btn.--primaryDark {
  background-color: hsl(0deg, 85%, 70%);
  color: #4d4d4d;
}
.btn.--primary {
  background-color: hsl(0deg, 85%, 85%);
  color: #4d4d4d;
}
.btn.--primaryLight {
  background-color: hsl(0deg, 85%, 92.5%);
  color: #4d4d4d;
}
.btn.--secondary {
  background-color: hsl(210deg, 85%, 85%);
  color: #4d4d4d;
}

/**
 * Component - Cover
 */
.coverAnimation {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  margin: 0;
  opacity: 0.5;
}

#canvas {
  width: 100%;
  height: 100%;
}

/**
 * Component - Drawer Menu
 */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1110;
  display: block;
  width: calc(1.5rem + 48px);
  height: calc(1.5rem + 48px);
  padding: 0;
  border: 0;
  background-color: transparent;
  text-align: center;
  outline: 0;
  cursor: pointer;
}
@media (min-width: 900px) {
  .drawer {
    display: none;
  }
}
.drawer__navicon.icon, .drawer__close.icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 48px;
  height: 48px;
  transition: 0.25s all ease-in-out;
}
.drawer__navicon {
  opacity: 0;
  transform: rotate(-45deg);
}
.drawer:not(.--active) .drawer__navicon {
  opacity: 1;
  transform: rotate(0);
}

.drawer__close {
  opacity: 1;
  transform: rotate(0);
}
.drawer:not(.--active) .drawer__close {
  opacity: 0;
  transform: rotate(45deg);
}

.drawer.--dark .drawer__close {
  color: #ffffff;
}

.drawerMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: clamp(18rem, 40%, 24rem);
  height: 100%;
  margin: auto;
  background-color: #b3b3b3;
  text-align: center;
  transition: width ease-in-out 0.25s;
}
.drawerMenu:not(.--show) {
  width: 0;
}
.drawerMenu__inner {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
  margin-bottom: 0;
  padding-left: 20%;
  text-align: left;
  opacity: 1;
}
.drawerMenu__inner:not(.--show) {
  opacity: 0;
}
.drawerMenu__inner.--collapse {
  display: none;
}
.drawerMenu__primaryMenu, .drawerMenu__socialMenu {
  list-style: none;
  flex: 1 1 100%;
  padding-left: 0;
}
.drawerMenu__socialMenu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.drawerMenu__item {
  width: 100%;
  margin-bottom: 0;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  text-transform: capitalize;
}
.drawerMenu__item.--siteBrand {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.drawerMenu__item.--siteBrand img {
  width: auto;
  height: 48px;
}
.drawerMenu__item.--social {
  width: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.drawerMenu__item.--social img {
  width: 100%;
  height: auto;
}
.drawerMenu__item a {
  display: block;
  text-decoration: none;
}
.drawerMenu.--dark {
  background-color: hsl(0deg, 85%, 85%);
}
.drawerMenu.--dark .drawerMenu__item a {
  color: #ffffff;
  fill: #ffffff;
}
.drawerMenu.--dark .drawerMenu__item a img {
  filter: invert(1) grayscale(1) brightness(4);
}

.drawerMenuOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1090;
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.drawerMenuOverlay.--collapse {
  display: none;
}

/**
 * Component - Form
 */
.form {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.form label {
  display: block;
}
.form input[type=text], .form input[type=tel], .form input[type=url], .form input[type=email], .form input[type=password], .form input[type=file], .form select, .form optgroup, .form textarea {
  display: block;
  width: 100%;
  margin-top: 0.375rem;
  margin-bottom: 0.75rem;
  padding-left: 8px;
  padding-right: 8px;
}
.form input[type=text], .form input[type=tel], .form input[type=url], .form input[type=email], .form input[type=password], .form input[type=file], .form select, .form optgroup {
  height: 1.8rem;
}
.form input[type=file] {
  outline: 0;
}
.form textarea {
  padding-top: 8px;
  padding-top: 8px;
  resize: vertical;
}
.form [type=button], .form [type=reset], .form [type=submit] {
  display: block;
  background-color: hsl(0deg, 85%, 85%);
  color: #4d4d4d;
  display: block;
  width: 12rem;
  margin: auto;
  padding: 0.75rem;
  border: none;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  word-break: break-word;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.form [type=button]:hover, .form [type=reset]:hover, .form [type=submit]:hover {
  opacity: 0.85;
}

/**
 * Component - Icon
 */
.icon {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  overflow: hidden;
  fill: currentColor;
}

.icon__cnt {
  width: 100%;
  height: 100%;
  background: inherit;
  fill: inherit;
  pointer-events: none;
  transform: translateX(0);
  -ms-transform: translate(0.5px, -0.3px);
}

.icon--m {
  width: 3rem;
  height: 3rem;
}

.icon--l {
  width: 4.5rem;
  height: 4.5rem;
}

/**
 * Component - Table
 */
.table {
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.table thead {
  border: 0;
}
.table tr {
  border-bottom: 1px solid #d9d9d9;
}
.table tr:first-child {
  border-top: 1px solid #d9d9d9;
}
.table th, .table td {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border: 0;
  font-size: 0.875rem;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

/**
 * Layout - Page
 */
.page {
  position: relative;
  flex: 0 1 43.5rem;
  text-align: justify;
  letter-spacing: 0.02em;
}
.page__inner {
  position: relative;
}
.page__heading {
  position: relative;
  padding-left: 2rem;
  font-size: 1.25rem;
}
.page__heading::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: radial-gradient(hsl(0deg, 85%, 92.5%), hsl(0deg, 85%, 70%));
}
.page__term {
  margin: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid #808080;
  border-bottom: 0;
  font-size: 1rem;
}
.page__desc {
  margin: 0 0 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #808080;
  font-size: 0.875rem;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}
.page__note {
  list-style: circle;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}
.page__note li {
  margin: 0;
}
.page__table {
  margin-bottom: 0.75rem;
  padding: 0 0.75rem;
}
.page__table table {
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.page__table table thead {
  border: 0;
}
.page__table table tr {
  border-bottom: 1px solid #d9d9d9;
}
.page__table table tr:first-child {
  border-top: 1px solid #d9d9d9;
}
.page__table table th, .page__table table td {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border: 0;
  font-size: 0.875rem;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}
.page__table th, .page__table td {
  text-align: left;
}
.page__profile blockquote {
  text-align: center;
}
.page__profile ul {
  list-style: circle;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}
.page__profile li {
  margin: 0;
}
.page__article {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 0 0 0.75rem;
}
.page__articleImage {
  flex: 1 0 12rem;
  margin: 0.375rem auto;
}
.page__articleImage img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0.1rem 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.15);
}
.page__articleDesc {
  flex: 2 0 24rem;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}
.page__articleMore a {
  display: block;
  width: 9rem;
  background-color: hsl(0deg, 85%, 85%);
  color: #4d4d4d;
  display: block;
  width: 12rem;
  margin: auto;
  padding: 0.75rem;
  border: none;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  word-break: break-word;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  margin: 0.75rem auto;
}
.page__articleMore a:hover {
  opacity: 0.85;
}
.page__url {
  display: inline-block;
  margin-left: 1.5rem;
  font-style: italic;
  font-size: 0.875rem;
  line-height: 2.025;
  letter-spacing: 0.04rem;
  vertical-align: middle;
}
.page__figure {
  display: block;
  margin: 1.5rem auto;
  padding: 0 0.75rem;
}
.page__figure figcaption {
  margin: 0.375rem auto;
}
.page__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 1.5rem;
  padding: 0.75rem 0;
  border-top: 1px dotted #4d4d4d;
}
.page__btnNext {
  flex: 0 0 16.5rem;
  background-color: hsl(210deg, 85%, 85%);
  color: #4d4d4d;
  display: block;
  width: 12rem;
  margin: auto;
  padding: 0.75rem;
  border: none;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  word-break: break-word;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  margin: 0.75rem auto;
}
.page__btnNext:hover {
  opacity: 0.85;
}
.page__btnNext:hover {
  color: inherit;
  text-decoration: none;
}
.page__btnContact {
  flex: 0 0 16.5rem;
  background-color: hsl(0deg, 85%, 85%);
  color: #4d4d4d;
  display: block;
  width: 12rem;
  margin: auto;
  padding: 0.75rem;
  border: none;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  word-break: break-word;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  margin: 0.75rem auto;
}
.page__btnContact:hover {
  opacity: 0.85;
}
.page__btnContact:hover {
  color: inherit;
  text-decoration: none;
}
.page h2, .page h3, .page h4, .page h5, .page h6 {
  text-align: left;
}
.page p:not(.page__desc) {
  padding: 0 0.75rem;
}

/**
 * Layout - Site Brand
 */
.siteBrand {
  width: 19.5rem;
  margin: 0;
}
.siteBrand__small {
  display: block;
  margin-left: 0.25em;
  font-size: 40%;
  letter-spacing: 0.2em;
}
.siteBrand__large {
  display: block;
  font-size: 100%;
  letter-spacing: 0.02em;
}

/**
 * Utility - Flex
 */
.--flex_center {
  justify-content: center !important;
}
.--flex_left {
  justify-content: flex-start !important;
}
.--flex_right {
  justify-content: flex-end !important;
}
.--flex_around {
  justify-content: space-around !important;
}
.--flex_between {
  justify-content: space-between !important;
}
.--flex_center {
  align-items: center !important;
}
.--flex_top {
  align-items: flex-start !important;
}
.--flex_stretch {
  align-items: stretch !important;
}
.--flex_gap-0 {
  gap: 0 !important;
}
.--flex_gap-1 {
  gap: 0.375rem !important;
}
.--flex_gap-2 {
  gap: 0.75rem !important;
}
.--flex_gap-3 {
  gap: 1.5rem !important;
}
.--flex_gap-4 {
  gap: 3rem !important;
}
.--flex_gap-5 {
  gap: 6rem !important;
}
@media (min-width: 600px) {
  .--flex_sm-center {
    justify-content: center !important;
  }
  .--flex_sm-left {
    justify-content: flex-start !important;
  }
  .--flex_sm-right {
    justify-content: flex-end !important;
  }
  .--flex_sm-around {
    justify-content: space-around !important;
  }
  .--flex_sm-between {
    justify-content: space-between !important;
  }
  .--flex_sm-center {
    align-items: center !important;
  }
  .--flex_sm-top {
    align-items: flex-start !important;
  }
  .--flex_sm-stretch {
    align-items: stretch !important;
  }
  .--flex_gap-sm-0 {
    gap: 0 !important;
  }
  .--flex_gap-sm-1 {
    gap: 0.375rem !important;
  }
  .--flex_gap-sm-2 {
    gap: 0.75rem !important;
  }
  .--flex_gap-sm-3 {
    gap: 1.5rem !important;
  }
  .--flex_gap-sm-4 {
    gap: 3rem !important;
  }
  .--flex_gap-sm-5 {
    gap: 6rem !important;
  }
}
@media (min-width: 800px) {
  .--flex_md-center {
    justify-content: center !important;
  }
  .--flex_md-left {
    justify-content: flex-start !important;
  }
  .--flex_md-right {
    justify-content: flex-end !important;
  }
  .--flex_md-around {
    justify-content: space-around !important;
  }
  .--flex_md-between {
    justify-content: space-between !important;
  }
  .--flex_md-center {
    align-items: center !important;
  }
  .--flex_md-top {
    align-items: flex-start !important;
  }
  .--flex_md-stretch {
    align-items: stretch !important;
  }
  .--flex_gap-md-0 {
    gap: 0 !important;
  }
  .--flex_gap-md-1 {
    gap: 0.375rem !important;
  }
  .--flex_gap-md-2 {
    gap: 0.75rem !important;
  }
  .--flex_gap-md-3 {
    gap: 1.5rem !important;
  }
  .--flex_gap-md-4 {
    gap: 3rem !important;
  }
  .--flex_gap-md-5 {
    gap: 6rem !important;
  }
}
@media (min-width: 1000px) {
  .--flex_lg-center {
    justify-content: center !important;
  }
  .--flex_lg-left {
    justify-content: flex-start !important;
  }
  .--flex_lg-right {
    justify-content: flex-end !important;
  }
  .--flex_lg-around {
    justify-content: space-around !important;
  }
  .--flex_lg-between {
    justify-content: space-between !important;
  }
  .--flex_lg-center {
    align-items: center !important;
  }
  .--flex_lg-top {
    align-items: flex-start !important;
  }
  .--flex_lg-stretch {
    align-items: stretch !important;
  }
  .--flex_gap-lg-0 {
    gap: 0 !important;
  }
  .--flex_gap-lg-1 {
    gap: 0.375rem !important;
  }
  .--flex_gap-lg-2 {
    gap: 0.75rem !important;
  }
  .--flex_gap-lg-3 {
    gap: 1.5rem !important;
  }
  .--flex_gap-lg-4 {
    gap: 3rem !important;
  }
  .--flex_gap-lg-5 {
    gap: 6rem !important;
  }
}

/**
 * Utility - Flex Item
 */
.--flexItem_2 {
  flex: 2 1 10.66rem;
}
.--flexItem_3 {
  flex: 3 1 15.99rem;
}
.--flexItem_4 {
  flex: 4 1 21.32rem;
}
.--flexItem_5 {
  flex: 5 1 26.65rem;
}
.--flexItem_6 {
  flex: 6 1 31.98rem;
}
.--flexItem_7 {
  flex: 7 1 37.31rem;
}
.--flexItem_8 {
  flex: 8 1 42.64rem;
}
.--flexItem_9 {
  flex: 9 1 47.97rem;
}
.--flexItem_10 {
  flex: 10 1 53.3rem;
}
.--flexItem_11 {
  flex: 11 1 58.63rem;
}
.--flexItem_12 {
  flex: 12 1 63.96rem;
}
.--flexItem_order-0 {
  order: 0;
}
.--flexItem_order-1 {
  order: 1;
}
.--flexItem_order-2 {
  order: 2;
}
.--flexItem_order-3 {
  order: 3;
}
@media (min-width: 600px) {
  .--flexItem_order-sm-0 {
    order: 0;
  }
  .--flexItem_order-sm-1 {
    order: 1;
  }
  .--flexItem_order-sm-2 {
    order: 2;
  }
  .--flexItem_order-sm-3 {
    order: 3;
  }
}
@media (min-width: 800px) {
  .--flexItem_order-md-0 {
    order: 0;
  }
  .--flexItem_order-md-1 {
    order: 1;
  }
  .--flexItem_order-md-2 {
    order: 2;
  }
  .--flexItem_order-md-3 {
    order: 3;
  }
}
@media (min-width: 1000px) {
  .--flexItem_order-lg-0 {
    order: 0;
  }
  .--flexItem_order-lg-1 {
    order: 1;
  }
  .--flexItem_order-lg-2 {
    order: 2;
  }
  .--flexItem_order-lg-3 {
    order: 3;
  }
}

/**
 * Utility - Spacing
 */
.--m_0 {
  margin: 0 !important;
}

.--m_1 {
  margin: 0.375rem !important;
}

.--m_2 {
  margin: 0.75rem !important;
}

.--m_3 {
  margin: 1.5rem !important;
}

.--m_4 {
  margin: 3rem !important;
}

.--m_5 {
  margin: 6rem !important;
}

.--m_sm-0 {
  margin: 0 !important;
}

.--m_sm-1 {
  margin: 0.375rem !important;
}

.--m_sm-2 {
  margin: 0.75rem !important;
}

.--m_sm-3 {
  margin: 1.5rem !important;
}

.--m_sm-4 {
  margin: 3rem !important;
}

.--m_sm-5 {
  margin: 6rem !important;
}

.--m_md-0 {
  margin: 0 !important;
}

.--m_md-1 {
  margin: 0.375rem !important;
}

.--m_md-2 {
  margin: 0.75rem !important;
}

.--m_md-3 {
  margin: 1.5rem !important;
}

.--m_md-4 {
  margin: 3rem !important;
}

.--m_md-5 {
  margin: 6rem !important;
}

.--m_lg-0 {
  margin: 0 !important;
}

.--m_lg-1 {
  margin: 0.375rem !important;
}

.--m_lg-2 {
  margin: 0.75rem !important;
}

.--m_lg-3 {
  margin: 1.5rem !important;
}

.--m_lg-4 {
  margin: 3rem !important;
}

.--m_lg-5 {
  margin: 6rem !important;
}

.--mt_0 {
  margin-top: 0 !important;
}

.--mt_1 {
  margin-top: 0.375rem !important;
}

.--mt_2 {
  margin-top: 0.75rem !important;
}

.--mt_3 {
  margin-top: 1.5rem !important;
}

.--mt_4 {
  margin-top: 3rem !important;
}

.--mt_5 {
  margin-top: 6rem !important;
}

.--mt_sm-0 {
  margin-top: 0 !important;
}

.--mt_sm-1 {
  margin-top: 0.375rem !important;
}

.--mt_sm-2 {
  margin-top: 0.75rem !important;
}

.--mt_sm-3 {
  margin-top: 1.5rem !important;
}

.--mt_sm-4 {
  margin-top: 3rem !important;
}

.--mt_sm-5 {
  margin-top: 6rem !important;
}

.--mt_md-0 {
  margin-top: 0 !important;
}

.--mt_md-1 {
  margin-top: 0.375rem !important;
}

.--mt_md-2 {
  margin-top: 0.75rem !important;
}

.--mt_md-3 {
  margin-top: 1.5rem !important;
}

.--mt_md-4 {
  margin-top: 3rem !important;
}

.--mt_md-5 {
  margin-top: 6rem !important;
}

.--mt_lg-0 {
  margin-top: 0 !important;
}

.--mt_lg-1 {
  margin-top: 0.375rem !important;
}

.--mt_lg-2 {
  margin-top: 0.75rem !important;
}

.--mt_lg-3 {
  margin-top: 1.5rem !important;
}

.--mt_lg-4 {
  margin-top: 3rem !important;
}

.--mt_lg-5 {
  margin-top: 6rem !important;
}

.--ml_0 {
  margin-left: 0 !important;
}

.--ml_1 {
  margin-left: 0.375rem !important;
}

.--ml_2 {
  margin-left: 0.75rem !important;
}

.--ml_3 {
  margin-left: 1.5rem !important;
}

.--ml_4 {
  margin-left: 3rem !important;
}

.--ml_5 {
  margin-left: 6rem !important;
}

.--ml_sm-0 {
  margin-left: 0 !important;
}

.--ml_sm-1 {
  margin-left: 0.375rem !important;
}

.--ml_sm-2 {
  margin-left: 0.75rem !important;
}

.--ml_sm-3 {
  margin-left: 1.5rem !important;
}

.--ml_sm-4 {
  margin-left: 3rem !important;
}

.--ml_sm-5 {
  margin-left: 6rem !important;
}

.--ml_md-0 {
  margin-left: 0 !important;
}

.--ml_md-1 {
  margin-left: 0.375rem !important;
}

.--ml_md-2 {
  margin-left: 0.75rem !important;
}

.--ml_md-3 {
  margin-left: 1.5rem !important;
}

.--ml_md-4 {
  margin-left: 3rem !important;
}

.--ml_md-5 {
  margin-left: 6rem !important;
}

.--ml_lg-0 {
  margin-left: 0 !important;
}

.--ml_lg-1 {
  margin-left: 0.375rem !important;
}

.--ml_lg-2 {
  margin-left: 0.75rem !important;
}

.--ml_lg-3 {
  margin-left: 1.5rem !important;
}

.--ml_lg-4 {
  margin-left: 3rem !important;
}

.--ml_lg-5 {
  margin-left: 6rem !important;
}

.--mr_0 {
  margin-right: 0 !important;
}

.--mr_1 {
  margin-right: 0.375rem !important;
}

.--mr_2 {
  margin-right: 0.75rem !important;
}

.--mr_3 {
  margin-right: 1.5rem !important;
}

.--mr_4 {
  margin-right: 3rem !important;
}

.--mr_5 {
  margin-right: 6rem !important;
}

.--mr_sm-0 {
  margin-right: 0 !important;
}

.--mr_sm-1 {
  margin-right: 0.375rem !important;
}

.--mr_sm-2 {
  margin-right: 0.75rem !important;
}

.--mr_sm-3 {
  margin-right: 1.5rem !important;
}

.--mr_sm-4 {
  margin-right: 3rem !important;
}

.--mr_sm-5 {
  margin-right: 6rem !important;
}

.--mr_md-0 {
  margin-right: 0 !important;
}

.--mr_md-1 {
  margin-right: 0.375rem !important;
}

.--mr_md-2 {
  margin-right: 0.75rem !important;
}

.--mr_md-3 {
  margin-right: 1.5rem !important;
}

.--mr_md-4 {
  margin-right: 3rem !important;
}

.--mr_md-5 {
  margin-right: 6rem !important;
}

.--mr_lg-0 {
  margin-right: 0 !important;
}

.--mr_lg-1 {
  margin-right: 0.375rem !important;
}

.--mr_lg-2 {
  margin-right: 0.75rem !important;
}

.--mr_lg-3 {
  margin-right: 1.5rem !important;
}

.--mr_lg-4 {
  margin-right: 3rem !important;
}

.--mr_lg-5 {
  margin-right: 6rem !important;
}

.--mb_0 {
  margin-bottom: 0 !important;
}

.--mb_1 {
  margin-bottom: 0.375rem !important;
}

.--mb_2 {
  margin-bottom: 0.75rem !important;
}

.--mb_3 {
  margin-bottom: 1.5rem !important;
}

.--mb_4 {
  margin-bottom: 3rem !important;
}

.--mb_5 {
  margin-bottom: 6rem !important;
}

.--mb_sm-0 {
  margin-bottom: 0 !important;
}

.--mb_sm-1 {
  margin-bottom: 0.375rem !important;
}

.--mb_sm-2 {
  margin-bottom: 0.75rem !important;
}

.--mb_sm-3 {
  margin-bottom: 1.5rem !important;
}

.--mb_sm-4 {
  margin-bottom: 3rem !important;
}

.--mb_sm-5 {
  margin-bottom: 6rem !important;
}

.--mb_md-0 {
  margin-bottom: 0 !important;
}

.--mb_md-1 {
  margin-bottom: 0.375rem !important;
}

.--mb_md-2 {
  margin-bottom: 0.75rem !important;
}

.--mb_md-3 {
  margin-bottom: 1.5rem !important;
}

.--mb_md-4 {
  margin-bottom: 3rem !important;
}

.--mb_md-5 {
  margin-bottom: 6rem !important;
}

.--mb_lg-0 {
  margin-bottom: 0 !important;
}

.--mb_lg-1 {
  margin-bottom: 0.375rem !important;
}

.--mb_lg-2 {
  margin-bottom: 0.75rem !important;
}

.--mb_lg-3 {
  margin-bottom: 1.5rem !important;
}

.--mb_lg-4 {
  margin-bottom: 3rem !important;
}

.--mb_lg-5 {
  margin-bottom: 6rem !important;
}

.--p_0 {
  padding: 0 !important;
}

.--p_1 {
  padding: 0.375rem !important;
}

.--p_2 {
  padding: 0.75rem !important;
}

.--p_3 {
  padding: 1.5rem !important;
}

.--p_4 {
  padding: 3rem !important;
}

.--p_5 {
  padding: 6rem !important;
}

.--p_sm-0 {
  padding: 0 !important;
}

.--p_sm-1 {
  padding: 0.375rem !important;
}

.--p_sm-2 {
  padding: 0.75rem !important;
}

.--p_sm-3 {
  padding: 1.5rem !important;
}

.--p_sm-4 {
  padding: 3rem !important;
}

.--p_sm-5 {
  padding: 6rem !important;
}

.--p_md-0 {
  padding: 0 !important;
}

.--p_md-1 {
  padding: 0.375rem !important;
}

.--p_md-2 {
  padding: 0.75rem !important;
}

.--p_md-3 {
  padding: 1.5rem !important;
}

.--p_md-4 {
  padding: 3rem !important;
}

.--p_md-5 {
  padding: 6rem !important;
}

.--p_lg-0 {
  padding: 0 !important;
}

.--p_lg-1 {
  padding: 0.375rem !important;
}

.--p_lg-2 {
  padding: 0.75rem !important;
}

.--p_lg-3 {
  padding: 1.5rem !important;
}

.--p_lg-4 {
  padding: 3rem !important;
}

.--p_lg-5 {
  padding: 6rem !important;
}

.--pt_0 {
  padding-top: 0 !important;
}

.--pt_1 {
  padding-top: 0.375rem !important;
}

.--pt_2 {
  padding-top: 0.75rem !important;
}

.--pt_3 {
  padding-top: 1.5rem !important;
}

.--pt_4 {
  padding-top: 3rem !important;
}

.--pt_5 {
  padding-top: 6rem !important;
}

.--pt_sm-0 {
  padding-top: 0 !important;
}

.--pt_sm-1 {
  padding-top: 0.375rem !important;
}

.--pt_sm-2 {
  padding-top: 0.75rem !important;
}

.--pt_sm-3 {
  padding-top: 1.5rem !important;
}

.--pt_sm-4 {
  padding-top: 3rem !important;
}

.--pt_sm-5 {
  padding-top: 6rem !important;
}

.--pt_md-0 {
  padding-top: 0 !important;
}

.--pt_md-1 {
  padding-top: 0.375rem !important;
}

.--pt_md-2 {
  padding-top: 0.75rem !important;
}

.--pt_md-3 {
  padding-top: 1.5rem !important;
}

.--pt_md-4 {
  padding-top: 3rem !important;
}

.--pt_md-5 {
  padding-top: 6rem !important;
}

.--pt_lg-0 {
  padding-top: 0 !important;
}

.--pt_lg-1 {
  padding-top: 0.375rem !important;
}

.--pt_lg-2 {
  padding-top: 0.75rem !important;
}

.--pt_lg-3 {
  padding-top: 1.5rem !important;
}

.--pt_lg-4 {
  padding-top: 3rem !important;
}

.--pt_lg-5 {
  padding-top: 6rem !important;
}

.--pl_0 {
  padding-left: 0 !important;
}

.--pl_1 {
  padding-left: 0.375rem !important;
}

.--pl_2 {
  padding-left: 0.75rem !important;
}

.--pl_3 {
  padding-left: 1.5rem !important;
}

.--pl_4 {
  padding-left: 3rem !important;
}

.--pl_5 {
  padding-left: 6rem !important;
}

.--pl_sm-0 {
  padding-left: 0 !important;
}

.--pl_sm-1 {
  padding-left: 0.375rem !important;
}

.--pl_sm-2 {
  padding-left: 0.75rem !important;
}

.--pl_sm-3 {
  padding-left: 1.5rem !important;
}

.--pl_sm-4 {
  padding-left: 3rem !important;
}

.--pl_sm-5 {
  padding-left: 6rem !important;
}

.--pl_md-0 {
  padding-left: 0 !important;
}

.--pl_md-1 {
  padding-left: 0.375rem !important;
}

.--pl_md-2 {
  padding-left: 0.75rem !important;
}

.--pl_md-3 {
  padding-left: 1.5rem !important;
}

.--pl_md-4 {
  padding-left: 3rem !important;
}

.--pl_md-5 {
  padding-left: 6rem !important;
}

.--pl_lg-0 {
  padding-left: 0 !important;
}

.--pl_lg-1 {
  padding-left: 0.375rem !important;
}

.--pl_lg-2 {
  padding-left: 0.75rem !important;
}

.--pl_lg-3 {
  padding-left: 1.5rem !important;
}

.--pl_lg-4 {
  padding-left: 3rem !important;
}

.--pl_lg-5 {
  padding-left: 6rem !important;
}

.--pr_0 {
  padding-right: 0 !important;
}

.--pr_1 {
  padding-right: 0.375rem !important;
}

.--pr_2 {
  padding-right: 0.75rem !important;
}

.--pr_3 {
  padding-right: 1.5rem !important;
}

.--pr_4 {
  padding-right: 3rem !important;
}

.--pr_5 {
  padding-right: 6rem !important;
}

.--pr_sm-0 {
  padding-right: 0 !important;
}

.--pr_sm-1 {
  padding-right: 0.375rem !important;
}

.--pr_sm-2 {
  padding-right: 0.75rem !important;
}

.--pr_sm-3 {
  padding-right: 1.5rem !important;
}

.--pr_sm-4 {
  padding-right: 3rem !important;
}

.--pr_sm-5 {
  padding-right: 6rem !important;
}

.--pr_md-0 {
  padding-right: 0 !important;
}

.--pr_md-1 {
  padding-right: 0.375rem !important;
}

.--pr_md-2 {
  padding-right: 0.75rem !important;
}

.--pr_md-3 {
  padding-right: 1.5rem !important;
}

.--pr_md-4 {
  padding-right: 3rem !important;
}

.--pr_md-5 {
  padding-right: 6rem !important;
}

.--pr_lg-0 {
  padding-right: 0 !important;
}

.--pr_lg-1 {
  padding-right: 0.375rem !important;
}

.--pr_lg-2 {
  padding-right: 0.75rem !important;
}

.--pr_lg-3 {
  padding-right: 1.5rem !important;
}

.--pr_lg-4 {
  padding-right: 3rem !important;
}

.--pr_lg-5 {
  padding-right: 6rem !important;
}

.--pb_0 {
  padding-bottom: 0 !important;
}

.--pb_1 {
  padding-bottom: 0.375rem !important;
}

.--pb_2 {
  padding-bottom: 0.75rem !important;
}

.--pb_3 {
  padding-bottom: 1.5rem !important;
}

.--pb_4 {
  padding-bottom: 3rem !important;
}

.--pb_5 {
  padding-bottom: 6rem !important;
}

.--pb_sm-0 {
  padding-bottom: 0 !important;
}

.--pb_sm-1 {
  padding-bottom: 0.375rem !important;
}

.--pb_sm-2 {
  padding-bottom: 0.75rem !important;
}

.--pb_sm-3 {
  padding-bottom: 1.5rem !important;
}

.--pb_sm-4 {
  padding-bottom: 3rem !important;
}

.--pb_sm-5 {
  padding-bottom: 6rem !important;
}

.--pb_md-0 {
  padding-bottom: 0 !important;
}

.--pb_md-1 {
  padding-bottom: 0.375rem !important;
}

.--pb_md-2 {
  padding-bottom: 0.75rem !important;
}

.--pb_md-3 {
  padding-bottom: 1.5rem !important;
}

.--pb_md-4 {
  padding-bottom: 3rem !important;
}

.--pb_md-5 {
  padding-bottom: 6rem !important;
}

.--pb_lg-0 {
  padding-bottom: 0 !important;
}

.--pb_lg-1 {
  padding-bottom: 0.375rem !important;
}

.--pb_lg-2 {
  padding-bottom: 0.75rem !important;
}

.--pb_lg-3 {
  padding-bottom: 1.5rem !important;
}

.--pb_lg-4 {
  padding-bottom: 3rem !important;
}

.--pb_lg-5 {
  padding-bottom: 6rem !important;
}

/**
 * Utility - Text
 */
.--text_left {
  text-align: left !important;
}
.--text_center {
  text-align: center !important;
}
.--text_right {
  text-align: right !important;
}
.--text_justify {
  text-align: justify !important;
}
@media (min-width: 600px) {
  .--text_sm-left {
    text-align: left !important;
  }
  .--text_sm-center {
    text-align: center !important;
  }
  .--text_sm-right {
    text-align: right !important;
  }
  .--text_sm-justify {
    text-align: justify !important;
  }
}
@media (min-width: 800px) {
  .--text_md-left {
    text-align: left !important;
  }
  .--text_md-center {
    text-align: center !important;
  }
  .--text_md-right {
    text-align: right !important;
  }
  .--text_md-justify {
    text-align: justify !important;
  }
}
@media (min-width: 1000px) {
  .--text_lg-left {
    text-align: left !important;
  }
  .--text_lg-center {
    text-align: center !important;
  }
  .--text_lg-right {
    text-align: right !important;
  }
  .--text_lg-justify {
    text-align: justify !important;
  }
}

/**
 * Utility - Visibility
 */
@media (max-width: 599.9px) {
  .--visible_sm {
    display: none !important;
  }
}
@media (max-width: 799.9px) {
  .--visible_md {
    display: none !important;
  }
}
@media (max-width: 999.9px) {
  .--visible_lg {
    display: none !important;
  }
}

/**
 * Utility - Animation
 */
.--animationShow {
  -webkit-animation: fadein 0.35s ease-out;
          animation: fadein 0.35s ease-out;
}

.--animationHide {
  -webkit-animation: fadeout 0.15s ease-out;
          animation: fadeout 0.15s ease-out;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}