@charset "UTF-8";
/*! reset.css */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
main {
  display: block;
}

/*!
 * Bootstrap Grid v5.0.0-beta1 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0;
  }

  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0;
  }

  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }

  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0;
  }

  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0;
  }

  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0;
  }

  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: -ms-grid !important;
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

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

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

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

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

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

.mt-auto {
  margin-top: auto !important;
}

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

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

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

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

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

.me-auto {
  margin-right: auto !important;
}

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

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

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

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

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

.mb-auto {
  margin-bottom: auto !important;
}

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

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

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

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

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

.ms-auto {
  margin-left: auto !important;
}

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

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

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

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

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

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

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

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

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

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

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

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

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

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

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

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

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

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

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

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

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*# sourceMappingURL=bootstrap-grid.css.map */
/*!
 * Bootstrap Utilities v5.0.0-beta1 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: -ms-grid !important;
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-0 {
  border-width: 0 !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

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

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

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

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

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

.mt-auto {
  margin-top: auto !important;
}

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

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

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

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

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

.me-auto {
  margin-right: auto !important;
}

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

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

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

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

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

.mb-auto {
  margin-bottom: auto !important;
}

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

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

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

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

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

.ms-auto {
  margin-left: auto !important;
}

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

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

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

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

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

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

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

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

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

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

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

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

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

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

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

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

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

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

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

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

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

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

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-primary {
  color: #0d6efd !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #198754 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #212529 !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

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

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
      user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
      user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }

  .fs-sm-1 {
    font-size: 2.5rem !important;
  }

  .fs-sm-2 {
    font-size: 2rem !important;
  }

  .fs-sm-3 {
    font-size: 1.75rem !important;
  }

  .fs-sm-4 {
    font-size: 1.5rem !important;
  }

  .fs-md-1 {
    font-size: 2.5rem !important;
  }

  .fs-md-2 {
    font-size: 2rem !important;
  }

  .fs-md-3 {
    font-size: 1.75rem !important;
  }

  .fs-md-4 {
    font-size: 1.5rem !important;
  }

  .fs-lg-1 {
    font-size: 2.5rem !important;
  }

  .fs-lg-2 {
    font-size: 2rem !important;
  }

  .fs-lg-3 {
    font-size: 1.75rem !important;
  }

  .fs-lg-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*# sourceMappingURL=bootstrap-utilities.css.map */
.font-gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.font-mincho {
  font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", Meiryo, serif;
}

html {
  line-height: 1;
  font-size: 62.5%;
  min-height: 100%;
  position: relative;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #231815;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

iframe {
  border: none;
}

#js-cover {
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  #js-cover.open {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-only {
    display: block;
  }
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a img {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}
a:hover img {
  opacity: 0.8;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.hidden {
  display: none;
}

.loaded {
  display: block;
}

picture img {
  vertical-align: top;
}

img {
  vertical-align: top;
  line-height: 1;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

.aniShine {
  position: relative;
  overflow: hidden;
}
.aniShine::before {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: 6s aniShine ease-in-out infinite;
          animation: 6s aniShine ease-in-out infinite;
}

.aniFadeIn {
  opacity: 0;
  -webkit-transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, transform 2s;
  transition: opacity 2s, transform 2s, -webkit-transform 2s;
}
.aniFadeIn.doAniFadeIn {
  opacity: 1;
  -webkit-transform: translate(0) !important;
          transform: translate(0) !important;
}
.aniFadeIn.fadeUp {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.aniFadeIn.fadeLeft {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.aniFadeIn.fadeDown {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.aniFadeIn.fadeRight {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
.aniFadeIn.fadeExpand {
  -webkit-transform: translateY(100px) scale(0.7);
          transform: translateY(100px) scale(0.7);
}
.aniFadeIn.fadeExpand.action {
  -webkit-transform: translateY(0) scale(1) !important;
          transform: translateY(0) scale(1) !important;
}
.aniFadeIn.textFade .fadeTarget {
  display: inline-block;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.aniFadeIn.textFade .fadeTarget:nth-of-type(2n-1) {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.aniFadeIn.textFade .fadeTarget:nth-of-type(2n) {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.aniFadeIn.textFade .fadeTarget.action {
  opacity: 1;
  -webkit-transform: translate(0) !important;
          transform: translate(0) !important;
}

h1, h2, h3 {
  font-weight: normal;
}

.white {
  color: #fff;
}

.red {
  color: #E60012;
}

.yellow {
  color: #ffdc00;
}

.green {
  color: #19C1CE;
}

.bg-green {
  background: #19C1CE;
}

.bg-ultramarine {
  background: #274766;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

sup {
  font-size: 62.5%;
}

.p10 {
  padding: 1em;
}

.fz50p {
  font-size: 50%;
}

.fz60p {
  font-size: 60%;
}

.fz70p {
  font-size: 70%;
}

.fz75p {
  font-size: 75%;
}

.fz120p {
  font-size: 120%;
}

.fz133p {
  font-size: 133%;
}

.fz135p {
  font-size: 135%;
}

.fz150p {
  font-size: 150%;
}

.fz166p {
  font-size: 166%;
}

.fz178p {
  font-size: 178%;
}

.fz277p {
  font-size: 277%;
}

.fz26 {
  font-size: 2.6rem;
}
@media screen and (max-width: 1024px) {
  .fz26 {
    font-size: 1.8rem;
  }
}

.fz43 {
  font-size: 4.3rem;
}
@media screen and (max-width: 1024px) {
  .fz43 {
    font-size: 2.2rem;
  }
}

.common-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #7AD7E0));
  background: linear-gradient(transparent 60%, #7AD7E0 0%);
  display: inline;
  padding: 0 2px;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

.common-inner {
  max-width: 860px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .common-inner {
    padding: 0 20px;
  }
}

.common-content-inner-width {
  max-width: 860px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .common-content-inner-width {
    padding: 0 20px;
  }
}

.common-content-outer-width {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .common-content-outer-width {
    padding: 0 20px;
  }
}

.common-note {
  padding-bottom: 40px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .common-note {
    font-size: 1rem;
  }
}
.common-note .common-note-list > li {
  padding-left: 1em;
  text-indent: -1em;
}

.common-main {
  overflow: hidden;
}

.common-mini-header {
  text-align: center;
  padding: 70px 20px;
}
@media screen and (max-width: 1024px) {
  .common-mini-header {
    padding: 30px 20px;
  }
}
.common-mini-header__title1 {
  font-size: 2.4rem;
  font-weight: normal;
  letter-spacing: 0.3em;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .common-mini-header__title1 {
    font-size: 1.8rem;
  }
}
.common-mini-header__title2 {
  font-size: 1.7rem;
  font-weight: normal;
  letter-spacing: 0.3em;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .common-mini-header__title2 {
    font-size: 1.2rem;
  }
}

.common-page-footer-banner {
  text-align: center;
  line-height: 1;
}
.common-page-footer-banner .button {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .common-page-footer-banner .button {
    margin-bottom: 20px;
  }
}
.common-page-footer-banner .btn-request {
  position: relative;
  display: block;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.16em;
  line-height: 1;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#30a6cc), to(#0d82a9));
  background: linear-gradient(to bottom, #30a6cc 0%, #0d82a9 100%);
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  margin: auto;
  max-width: 640px;
  padding: 20px;
  font-size: 2.8rem;
}
.common-page-footer-banner .btn-request::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .common-page-footer-banner .btn-request {
    font-size: 1.8rem;
    padding: 15px;
  }
  .common-page-footer-banner .btn-request::after {
    bottom: 6px;
  }
}
.common-page-footer-banner .banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 640px;
  margin: auto;
}
.common-page-footer-banner .banner__item:nth-child(odd) {
  margin-right: 5px;
}
.common-page-footer-banner .banner__item:nth-child(even) {
  margin-left: 5px;
}
@media screen and (max-width: 1024px) {
  .common-page-footer-banner .banner__item img {
    width: 100%;
  }
}

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

.common-button-box {
  max-width: 600px;
  margin: 0 auto;
}
.common-button-box:not(:last-of-type) {
  margin-bottom: 40px;
}
.common-button-box.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.common-button-box.column2 .button {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
  margin: 0 1%;
}

.common-btn-type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: #E50012;
  border: solid 2px #E50012;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-type1 {
    font-size: 1.3rem;
    color: #fff;
    background: #E50012;
  }
}
.common-btn-type1:hover {
  color: #E50012;
  background: #fff;
}
.common-btn-type1:hover .button-icon::after {
  border-color: transparent transparent transparent #E50012;
}
.common-btn-type1.btn-sm {
  font-size: 1.2rem;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .common-btn-type1.btn-sm {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.common-btn-type1 .button-icon {
  display: block;
  position: relative;
}
.common-btn-type1 .button-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto 10px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 8px 0 8px 8px;
}
@media screen and (max-width: 1024px) {
  .common-btn-type1 .button-icon::after {
    border-color: transparent transparent transparent #fff;
  }
}

.common-btn-type2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: #F8B500;
  border: solid 2px #F8B500;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-type2 {
    font-size: 1.3rem;
    color: #fff;
    background: #F8B500;
  }
}
.common-btn-type2:hover {
  color: #F8B500;
  background: #fff;
}
.common-btn-type2:hover .button-icon::after {
  border-color: transparent transparent transparent #F8B500;
}
.common-btn-type2.btn-sm {
  font-size: 1.2rem;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .common-btn-type2.btn-sm {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.common-btn-type2 .button-icon {
  display: block;
  position: relative;
}
.common-btn-type2 .button-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto 10px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 8px 0 8px 8px;
}
@media screen and (max-width: 1024px) {
  .common-btn-type2 .button-icon::after {
    border-color: transparent transparent transparent #fff;
  }
}

.common-btn-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #000;
  background: #fff;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-more {
    font-size: 1.3rem;
  }
}
.common-btn-more:hover {
  color: #1fb6c4;
  background: #fff;
}
.common-btn-more.icon-next {
  position: relative;
}
.common-btn-more.icon-next::after {
  position: absolute;
  top: 12px;
  left: 10px;
  content: "";
  width: 32px;
  height: 32px;
  margin: 0;
  border-top: 2px solid #1fb6c4;
  border-right: 2px solid #1fb6c4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more.icon-next::after {
    top: 12px;
    left: 6px;
    width: 16px;
    height: 16px;
  }
}
.common-btn-more .button-icon {
  display: block;
  position: relative;
}
.common-btn-more .button-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto 10px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 8px 0 8px 8px;
}
@media screen and (max-width: 1024px) {
  .common-btn-more .button-icon::after {
    border-color: transparent transparent transparent #E50012;
  }
}

.common-btn-more-outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #000;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline {
    font-size: 1.3rem;
  }
}
.common-btn-more-outline.icon-next {
  position: relative;
}
.common-btn-more-outline.icon-next::after {
  position: absolute;
  top: 12px;
  left: 10px;
  content: "";
  width: 32px;
  height: 32px;
  margin: 0;
  border-top: 2px solid #FFE000;
  border-right: 2px solid #FFE000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline.icon-next::after {
    top: 12px;
    left: 6px;
    width: 16px;
    height: 16px;
  }
}
.common-btn-more-outline .button-icon {
  display: block;
  position: relative;
}
.common-btn-more-outline .button-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto 10px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 8px 0 8px 8px;
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline .button-icon::after {
    border-color: transparent transparent transparent #E50012;
  }
}

.common-btn-more-outline2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  border: solid 1px #fff;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline2 {
    font-size: 1.3rem;
  }
}
.common-btn-more-outline2.icon-next {
  position: relative;
}
.common-btn-more-outline2.icon-next::after {
  position: absolute;
  top: 12px;
  left: 10px;
  content: "";
  width: 32px;
  height: 32px;
  margin: 0;
  border-top: 2px solid #FFE000;
  border-right: 2px solid #FFE000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline2.icon-next::after {
    top: 12px;
    left: 6px;
    width: 16px;
    height: 16px;
  }
}
.common-btn-more-outline2 .button-icon {
  display: block;
  position: relative;
}
.common-btn-more-outline2 .button-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto 10px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 8px 0 8px 8px;
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline2 .button-icon::after {
    border-color: transparent transparent transparent #E50012;
  }
}

.common-btn-more-outline3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  border: solid 2px #000;
  padding: 5px 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline3 {
    font-size: 1.3rem;
  }
}
.common-btn-more-outline3:hover {
  background: #eee;
}
.common-btn-more-outline3.icon-next {
  position: relative;
}
.common-btn-more-outline3.icon-next::after {
  position: absolute;
  top: 14px;
  left: 5px;
  content: "";
  width: 22px;
  height: 22px;
  margin: 0;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline3.icon-next::after {
    top: 8px;
    left: 6px;
    width: 16px;
    height: 16px;
  }
}
.common-btn-more-outline3.icon-next-2 {
  position: relative;
}
.common-btn-more-outline3.icon-next-2::after {
  position: absolute;
  top: 14px;
  left: 5px;
  content: "";
  width: 22px;
  height: 22px;
  margin: 0;
  border-top: 3px solid #1FB6C4;
  border-right: 3px solid #1FB6C4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline3.icon-next-2::after {
    top: 8px;
    left: 6px;
    width: 16px;
    height: 16px;
  }
}
.common-btn-more-outline3.icon-prev2 {
  position: relative;
}
.common-btn-more-outline3.icon-prev2::after {
  position: absolute;
  top: 20px;
  right: 14px;
  content: "";
  width: 20px;
  height: 20px;
  margin: 0;
  border-top: 3px solid #1FB6C4;
  border-right: 3px solid #1FB6C4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline3.icon-prev2::after {
    top: 12px;
    right: 6px;
    width: 16px;
    height: 16px;
  }
}

.common-btn-more-outline4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #000;
  background: #1FB6C4;
  border: solid 1px #fff;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline4 {
    font-size: 1.3rem;
  }
}
.common-btn-more-outline4.icon-next {
  position: relative;
}
.common-btn-more-outline4.icon-next::after {
  position: absolute;
  top: 12px;
  left: 10px;
  content: "";
  width: 32px;
  height: 32px;
  margin: 0;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline4.icon-next::after {
    top: 12px;
    left: 6px;
    width: 16px;
    height: 16px;
  }
}
.common-btn-more-outline4.icon-prev2 {
  position: relative;
}
.common-btn-more-outline4.icon-prev2::after {
  position: absolute;
  top: 20px;
  right: 14px;
  content: "";
  width: 20px;
  height: 20px;
  margin: 0;
  border-top: 3px solid #1FB6C4;
  border-right: 3px solid #1FB6C4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more-outline4.icon-prev2::after {
    top: 12px;
    right: 6px;
    width: 16px;
    height: 16px;
  }
}

.common-btn-more3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: #1FB6C4;
  border: solid 1px #1FB6C4;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-more3 {
    font-size: 1.3rem;
  }
}
.common-btn-more3:hover {
  background: #1FB6C4;
}
.common-btn-more3.icon-next {
  position: relative;
}
.common-btn-more3.icon-next::after {
  position: absolute;
  top: 12px;
  left: 10px;
  content: "";
  width: 32px;
  height: 32px;
  margin: 0;
  border-top: 3px solid #1FB6C4;
  border-right: 3px solid #1FB6C4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more3.icon-next::after {
    top: 12px;
    left: 6px;
    width: 16px;
    height: 16px;
  }
}
.common-btn-more3.icon-prev2 {
  position: relative;
}
.common-btn-more3.icon-prev2::after {
  position: absolute;
  top: 20px;
  right: 14px;
  content: "";
  width: 20px;
  height: 20px;
  margin: 0;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-more3.icon-prev2::after {
    top: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
  }
}

.common-btn-prev-outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #231815;
  background: #E6F4F7;
  border: solid 2px #E50012;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-prev-outline {
    font-size: 1.3rem;
    color: #fff;
    background: #E50012;
  }
}
.common-btn-prev-outline:hover {
  color: #fff;
  background: #E50012;
}
.common-btn-prev-outline:hover .button-icon::after {
  border-color: transparent transparent transparent #fff;
}
.common-btn-prev-outline .button-icon {
  display: block;
  position: relative;
}
.common-btn-prev-outline .button-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto 10px;
  border-style: solid;
  border-color: transparent transparent transparent #231815;
  border-width: 8px 0 8px 8px;
}
@media screen and (max-width: 1024px) {
  .common-btn-prev-outline .button-icon::after {
    border-color: transparent transparent transparent #231815;
  }
}

.common-btn-register {
  font-size: 2rem;
  line-height: 1;
  color: #231815;
  background: #FBC200;
  padding: 5px 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-register {
    font-size: 1.3rem;
  }
}

.common-btn-register-l {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: #231815;
  background: #FBC200;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-register-l {
    font-size: 1.3rem;
  }
}

.common-btn-m {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1;
  padding: 10px 20px;
  min-width: 260px;
  margin: auto;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-m {
    font-size: 1.2rem;
  }
}
.common-btn-m.icon-next {
  position: relative;
}
.common-btn-m.icon-next::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  content: "";
  width: 16px;
  height: 16px;
  margin: auto;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-btn-m.icon-next::after {
    top: 12px;
    right: 6px;
    width: 12px;
    height: 12px;
  }
}
.common-btn-m.btn-register {
  color: #231815;
  background: #19B4C3;
}
.common-btn-m.btn-register.icon-next::after {
  border-color: #000;
}
.common-btn-m.btn-primary {
  color: #fff;
  background: #FBC200;
}
.common-btn-m.btn-primary.icon-next::after {
  border-color: #fff;
}

.common-btn-login {
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: #19B4C3;
  padding: 5px 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-login {
    font-size: 1.3rem;
  }
}

.common-btn-login-l {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: #fff;
  background: #19B4C3;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-login-l {
    font-size: 1.3rem;
  }
}

.common-btn-radius {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
  border-radius: 100px;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  margin: auto;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  outline: none;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.common-btn-radius.btn-sm {
  font-size: 2.4rem;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .common-btn-radius.btn-sm {
    font-size: 1.6rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.common-btn-radius.btn-xl {
  font-size: 3.5rem;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .common-btn-radius.btn-xl {
    font-size: 2rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.common-btn-radius.type-1 {
  color: #000;
  background: #FFDC00;
}
.common-btn-radius.icon-down {
  position: relative;
}
.common-btn-radius.icon-down::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-left: -12px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.common-wd-box {
  padding: 70px;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .common-wd-box {
    padding: 20px;
  }
}

.common-heading-image {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .common-heading-image {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .common-heading-image img {
    width: auto;
    height: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .common-heading-image.line3 img {
    width: auto;
    height: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .common-heading-image.balloon img {
    width: auto;
    height: 70px;
  }
}

.common-heading1-top {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .common-heading1-top {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.common-heading1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  color: #E9EAEA;
  background: #E50012;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .common-heading1 {
    margin: 0 -20px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .common-heading1.sp-line2 {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .common-heading1.sp-line2 .main,
.common-heading1.sp-line2 .sub {
    display: block;
  }
}
.common-heading1 .main {
  font-size: 3rem;
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .common-heading1 .main {
    font-size: 2rem;
    margin: 0 5px;
  }
}
.common-heading1 .sub {
  font-size: 1.7rem;
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .common-heading1 .sub {
    font-size: 1rem;
    margin: 0 5px;
  }
}

.common-heading2 {
  text-align: center;
}
.common-heading2__inner {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #E50012;
  border-radius: 15px;
  border: solid 5px #fff;
  padding: 15px 20px;
  margin-bottom: -100px;
}
@media screen and (max-width: 1024px) {
  .common-heading2__inner {
    font-size: 1.8rem;
  }
}
.common-heading2__inner::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  margin-left: -15px;
  display: block;
  width: 30px;
  height: 30px;
  border-right: solid 5px #fff;
  border-bottom: solid 5px #fff;
  background: #E50012;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.common-heading3 {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .common-heading3 {
    font-size: 1.2rem;
  }
}

.common-heading4 {
  text-align: center;
}
.common-heading4__inner {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #E9EAEA;
  background: #E50012;
  border-radius: 15px;
  padding: 10px;
  min-width: 360px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .common-heading4__inner {
    font-size: 1.6rem;
    min-width: 100%;
  }
}
.common-heading4__inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: 50%;
  margin-left: -15px;
  display: block;
  width: 30px;
  height: 30px;
  background: #E50012;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .common-heading4.sp-bg-white {
    background: #fff;
  }
}

.common-heading5 {
  text-align: center;
}
.common-heading5__inner {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #00A4B6;
  background: #fff;
  border: solid 4px #00A4B6;
  border-radius: 15px;
  padding: 10px;
  min-width: 360px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .common-heading5__inner {
    font-size: 1.6rem;
    min-width: 100%;
  }
}
.common-heading5__inner::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  margin-left: -10px;
  display: block;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, transparent 50%, #fff 50%, #fff 100%);
  border-right: solid 4px #00A4B6;
  border-bottom: solid 4px #00A4B6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.common-banner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .common-banner {
    padding: 0 20px;
  }
}
.common-banner:not(:last-of-type) {
  margin-bottom: 40px;
}
.common-banner img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .common-banner img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .common-banner .negative-margin-sp-x20 {
    display: block;
    margin-left: -20px;
    margin-right: -20px;
  }
}

.common-wide-banner {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .common-wide-banner {
    padding: 0 20px;
  }
}
.common-wide-banner:not(:last-of-type) {
  margin-bottom: 40px;
}
.common-wide-banner img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .common-wide-banner img {
    width: 100%;
  }
}

.ui-widget-header {
  background: #eee !important;
  border: none !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  background: #eee !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  background: #FCEFA1 !important;
}

.common-mv-header {
  padding: 25px 0;
  min-height: 168px;
}
@media screen and (max-width: 1024px) {
  .common-mv-header {
    margin-top: 0;
    min-height: 120px;
  }
}
.common-mv-header.bg-event {
  background: #F0F0F0;
}
.common-mv-header.bg-event .common-mv-header__heading1 {
  color: #000;
}
.common-mv-header.bg-news {
  background: #F0F0F0;
}
.common-mv-header.bg-news .common-mv-header__heading1 {
  color: #000;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-news .common-mv-header__heading1 .main {
    font-size: 2.4rem;
  }
}
.common-mv-header.bg-plan {
  background: #F0F0F0;
}
.common-mv-header.bg-plan .common-mv-header__heading1 {
  color: #000;
}
.common-mv-header.bg-concept {
  background: url(./assets/img/pc/concept/concept_mv_bg_1.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-concept {
    background: url(./assets/img/sp/concept/concept_mv_bg_1.jpg) center center/cover no-repeat;
  }
}
.common-mv-header.bg-contact {
  margin-top: 0;
  background: #F0F0F0;
}
.common-mv-header.bg-contact .common-mv-header__heading1 {
  color: #000;
}
.common-mv-header.bg-model-house {
  background: url(./assets/img/pc/model-house/model-house_mv_bg.jpg) center top/100% 100% no-repeat;
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-model-house {
    background-size: 100% auto;
    padding: 10px 20px 50px;
  }
}
.common-mv-header.bg-member {
  margin-top: 0;
  background: #F0F0F0;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-member {
    padding: 50px 0;
  }
}
.common-mv-header.bg-member .common-mv-header__heading1 {
  color: #000;
}
.common-mv-header.bg-reserve {
  margin-top: 0;
  background: #F0F0F0;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-reserve {
    padding: 50px 0;
  }
}
.common-mv-header.bg-reserve .common-mv-header__heading1 {
  color: #000;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-reserve .common-mv-header__heading1 .main {
    font-size: 2.4rem;
  }
}
.common-mv-header.bg-company {
  background: url(./assets/img/pc/company/company_mv_bg_1.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-company {
    background: url(./assets/img/sp/company/company_mv_bg_1.jpg) center center/cover no-repeat;
  }
}
.common-mv-header.bg-low-cost {
  background: url(./assets/img/pc/low-cost/low-cost_mv_bg_1.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-low-cost {
    background: url(./assets/img/sp/low-cost/low-cost_mv_bg_1.jpg) center center/cover no-repeat;
  }
}
.common-mv-header.bg-lifestyle {
  background: url(./assets/img/pc/lifestyle/lifestyle_mv_bg_1.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-lifestyle {
    background: url(./assets/img/sp/lifestyle/lifestyle_mv_bg_1.jpg) center center/cover no-repeat;
  }
}
.common-mv-header.bg-gallery-voice {
  background: #F0F0F0;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-gallery-voice {
    padding: 50px 0;
  }
}
.common-mv-header.bg-gallery-voice .common-mv-header__heading1 {
  color: #000;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-gallery-voice .common-mv-header__heading1 .main {
    font-size: 2.4rem;
  }
}
.common-mv-header.bg-column {
  margin-top: 0;
  background: #F0F0F0;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-column {
    padding: 50px 0;
  }
}
.common-mv-header.bg-column .common-mv-header__heading1 {
  color: #000;
}
.common-mv-header.bg-blog {
  margin-top: 0;
  background: #F0F0F0;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-blog {
    padding: 50px 0;
  }
}
.common-mv-header.bg-blog .common-mv-header__heading1 {
  color: #000;
}
.common-mv-header.bg-staff {
  margin-top: 0;
  background: #F0F0F0;
}
@media screen and (max-width: 1024px) {
  .common-mv-header.bg-staff {
    padding: 50px 0;
  }
}
.common-mv-header.bg-staff .common-mv-header__heading1 {
  color: #000;
}
.common-mv-header__heading1 {
  text-align: center;
  color: #fff;
}
.common-mv-header__heading1 .main {
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .common-mv-header__heading1 .main {
    font-size: 2.4rem;
  }
}
.common-mv-header__heading1 .sub {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

.mw_wp_form_input .btn-confirm,
.mw_wp_form_confirm .btn-confirm,
.mw_wp_form_complete .btn-confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: #E50012;
  border: solid 2px #E50012;
  border-radius: 10px;
  padding: 10px;
  margin: auto;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .mw_wp_form_input .btn-confirm,
.mw_wp_form_confirm .btn-confirm,
.mw_wp_form_complete .btn-confirm {
    font-size: 1.3rem;
    color: #fff;
    background: #E50012;
  }
}
.mw_wp_form_input .btn-submit,
.mw_wp_form_confirm .btn-submit,
.mw_wp_form_complete .btn-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #231815;
  background: #F39800;
  border: solid 2px #F39800;
  border-radius: 10px;
  padding: 10px;
  margin: auto;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .mw_wp_form_input .btn-submit,
.mw_wp_form_confirm .btn-submit,
.mw_wp_form_complete .btn-submit {
    font-size: 1.3rem;
    color: #231815;
    background: #F39800;
  }
}

.mw_wp_form_input .btn-submit,
.mw_wp_form_input .btn-send,
.mw_wp_form_input .common-btn-submit {
  display: none;
}
.mw_wp_form_input .policy-box {
  display: block;
}

.mw_wp_form_confirm .btn-confirm {
  display: none;
}
.mw_wp_form_confirm .policy-box {
  display: none;
}

.mw_wp_form_complete .only-edit {
  display: none;
}
.mw_wp_form_complete .policy-box {
  display: none;
}

@media screen and (max-width: 1024px) {
  .mwform-checkbox-field label,
.mwform-radio-field label {
    display: block;
  }
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .wp-pagenavi {
    margin-bottom: 50px;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #E50012 !important;
  border-color: #E50012 !important;
  line-height: 1;
}

.wp-pagenavi span.current {
  color: #fff !important;
  background: #E50012 !important;
}

.common-wd-area-select__inner {
  max-width: 860px;
  margin: auto;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .common-wd-area-select__inner {
    padding: 20px;
  }
}
.common-wd-area-select__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .common-wd-area-select__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.common-wd-area-select__nav .nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .common-wd-area-select__nav .nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
    border-bottom: none;
  }
}
.common-wd-area-select__nav .nav span,
.common-wd-area-select__nav .nav a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.common-wd-area-select__nav .nav span {
  color: #F0F0F0;
}
.common-wd-area-select__nav .nav span::after {
  background: url("assets/img/pc/event_icon_arw_2.png") center center/100% 100% no-repeat;
}
.common-wd-area-select__nav .nav a {
  color: #969696;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.common-wd-area-select__nav .nav a.selected {
  color: #000;
  background: url("assets/img/pc/event/event_nav_selected.png") center bottom 0/114px 10px no-repeat;
}
.common-wd-area-select__nav .nav a:hover {
  opacity: 0.8;
}

.common-wd-staff-select__inner {
  max-width: 860px;
  margin: auto;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .common-wd-staff-select__inner {
    padding: 20px;
  }
}
.common-wd-staff-select__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .common-wd-staff-select__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.common-wd-staff-select__nav .nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .common-wd-staff-select__nav .nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
    border-bottom: none;
  }
}
.common-wd-staff-select__nav .nav span,
.common-wd-staff-select__nav .nav a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.common-wd-staff-select__nav .nav span {
  color: #969696;
}
.common-wd-staff-select__nav .nav span::after {
  background: url("assets/img/pc/event_icon_arw_2.png") center center/100% 100% no-repeat;
}
.common-wd-staff-select__nav .nav a {
  color: #fff;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.common-wd-staff-select__nav .nav a.selected {
  color: #fff;
  background: url("assets/img/pc/staff/staff_nav_selected.png") center bottom 0/114px 10px no-repeat;
}
.common-wd-staff-select__nav .nav a:hover {
  opacity: 0.8;
}

.common-wd-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin: 20px auto;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .common-wd-count {
    font-size: 1.2rem;
    padding: 20px;
  }
}
.common-wd-count .highlight {
  font-size: 3.3rem;
  font-weight: bold;
  color: #E50012;
}
@media screen and (max-width: 1024px) {
  .common-wd-count .highlight {
    font-size: 1.8rem;
  }
}

.common-table-form {
  width: 100%;
  border-collapse: collapse;
  /* IE */
  /* Edge */
}
@media screen and (max-width: 1024px) {
  .common-table-form {
    display: block;
  }
}
.common-table-form th {
  border-top: solid 1px #D2D3D3;
  font-weight: normal;
  text-align: left;
  padding: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .common-table-form th {
    border-top: none;
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 4px 20px;
  }
}
.common-table-form td {
  border-top: solid 1px #D2D3D3;
  padding: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .common-table-form td {
    border-top: none;
    display: block;
    padding: 4px 20px;
    margin-bottom: 20px;
  }
}
.common-table-form .badge {
  color: #231815;
  background: #D6D7D7;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 4px 10px;
}
.common-table-form .required {
  color: #B60005;
}
.common-table-form .any {
  color: #F39800;
}
@media screen and (max-width: 1024px) {
  .common-table-form input[type=text] {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .common-table-form input[type=text]:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .common-table-form textarea {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .common-table-form input[type=radio],
.common-table-form input[type=checkbox] {
    display: inline-block;
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .common-table-form input {
    width: 100%;
  }
}
.common-table-form input::-webkit-input-placeholder {
  color: #ccc;
}
.common-table-form input::-moz-placeholder {
  color: #ccc;
}
.common-table-form input:-ms-input-placeholder {
  color: #ccc;
}
.common-table-form input::-ms-input-placeholder {
  color: #ccc;
}
.common-table-form input::placeholder {
  color: #ccc;
}
.common-table-form input:-ms-input-placeholder {
  color: #ccc;
}
.common-table-form input::-ms-input-placeholder {
  color: #ccc;
}

.common-table-type1 {
  width: 100%;
  border-collapse: collapse;
  /* IE */
  /* Edge */
}
@media screen and (max-width: 1024px) {
  .common-table-type1 {
    display: block;
  }
}
.common-table-type1 .text-nowrap {
  white-space: nowrap;
}
.common-table-type1 th {
  border: solid 1px #D2D3D3;
  background: #EFF8F9;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  font-size: 1.3rem;
}
@media screen and (max-width: 1024px) {
  .common-table-type1 th {
    padding: 10px;
    font-size: 1rem;
  }
}
.common-table-type1 td {
  border: solid 1px #D2D3D3;
  padding: 20px;
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .common-table-type1 td {
    padding: 10px;
    font-size: 1rem;
  }
}
.common-table-type1 .badge {
  color: #231815;
  background: #D6D7D7;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 4px 10px;
}
.common-table-type1 .required {
  color: #B60005;
}
.common-table-type1 .any {
  color: #F39800;
}
@media screen and (max-width: 1024px) {
  .common-table-type1 input[type=text] {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .common-table-type1 input[type=text]:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .common-table-type1 textarea {
    width: 100%;
  }
}
.common-table-type1 input::-webkit-input-placeholder {
  color: #ccc;
}
.common-table-type1 input::-moz-placeholder {
  color: #ccc;
}
.common-table-type1 input:-ms-input-placeholder {
  color: #ccc;
}
.common-table-type1 input::-ms-input-placeholder {
  color: #ccc;
}
.common-table-type1 input::placeholder {
  color: #ccc;
}
.common-table-type1 input:-ms-input-placeholder {
  color: #ccc;
}
.common-table-type1 input::-ms-input-placeholder {
  color: #ccc;
}

.common-btn-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #231815;
  background: #FBC200;
  border: solid 2px #FBC200;
  border-radius: 10px;
  padding: 10px;
  width: 200px;
  margin: auto;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-submit {
    font-size: 1.3rem;
    color: #231815;
    background: #FBC200;
  }
}

.common-btn-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: #E8380D;
  border: solid 2px #E8380D;
  border-radius: 10px;
  padding: 10px;
  min-width: 200px;
  margin: auto;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-agree {
    font-size: 1.3rem;
    color: #fff;
    background: #E8380D;
  }
}

.common-btn-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: #009EC0;
  border: solid 2px #009EC0;
  border-radius: 10px;
  padding: 10px;
  min-width: 200px;
  margin: auto;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-send {
    font-size: 1.3rem;
    color: #fff;
    background: #009EC0;
  }
}

.common-btn-black {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: #000;
  border: solid 2px #000;
  padding: 10px;
  width: 200px;
  margin: auto;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .common-btn-black {
    font-size: 1.3rem;
    color: #fff;
    background: #000;
  }
}

.page-contact-line-1 {
  font-size: 2.2rem;
  text-align: center;
  color: #231815;
  background: #FBC200;
  padding: 10px;
}

.page-contact-line-2 {
  font-size: 2.2rem;
  text-align: center;
  color: #E9EAEA;
  background: #E50012;
  padding: 10px;
}

.common-highlight-yellow {
  color: #FFF100;
}

.breadcrumbs {
  max-width: 1024px;
  margin: 20px auto;
  font-size: 1.4rem;
  color: #666;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    font-size: 1.2rem;
    padding: 0 20px;
  }
}
.breadcrumbs a {
  color: #999;
}

.common-hr {
  margin: 50px 0;
}

.common-table-form-wrapper {
  max-width: 950px;
  margin: auto;
}

.common-wd-plan-select__inner {
  max-width: 640px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .common-wd-plan-select__inner {
    padding: 0 20px;
  }
}
.common-wd-plan-select__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.common-wd-plan-select__nav .nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24%;
          flex: 0 1 24%;
  text-align: center;
}
.common-wd-plan-select__nav .nav .none {
  opacity: 0.4;
}

.common-text-new {
  color: #C00;
  line-height: 1;
  padding: 0 4px;
  margin-left: 1rem;
}
.common-icon-new {
  color: #000;
  background: #ffdc00;
  line-height: 1;
  padding: 2px 4px;
  margin-left: 1rem;
}
.common-icon-new.icon-fixed {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 0;
}
.common-icon-new.icon-s {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .common-icon-new.icon-s {
    font-size: 1rem;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .mb-100 {
    margin-bottom: 50px;
  }
}

.common-form-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  border: solid 1px #000;
  padding: 10px;
  margin-bottom: 20px;
}
.common-form-title::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 4px;
  top: 4px;
  background: #C6ECF0;
  display: block;
  width: 100%;
  height: 100%;
}

.common-form-notes {
  color: #fff;
  background: #9EA2AD;
  padding: 2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .common-form-notes {
    padding: 1rem;
    font-size: 1rem;
  }
}
.common-form-notes .btn-policy {
  color: #fff;
  display: block;
  text-align: center;
  max-width: 200px;
  margin: auto;
  padding: 1rem;
  background: #2D333E;
}

.common-form-attention {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .common-form-attention {
    font-size: 1rem;
  }
}
.common-form-attention .border-box {
  padding: 1rem;
  background: #FFF4F4;
  border: dashed 1px #B9191E;
}

@media screen and (max-width: 1024px) {
  .common-form-button {
    padding: 0 20px 100px;
  }
}

.hr-1 {
  height: 0;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-bottom: 3px solid #1fb6c4;
  margin: 50px 0;
}

.concept-custom-box-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.concept-custom-box-1 .concept-custom-box-1__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
  color: #231815;
}
.concept-custom-box-1 .concept-custom-box-1__image-1 {
  text-align: center;
  margin-bottom: 5px;
}
.concept-custom-box-1 .concept-custom-box-1__heading-1 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .concept-custom-box-1 .concept-custom-box-1__heading-1 {
    font-size: 1.4rem;
  }
}
.concept-custom-box-1 .concept-custom-box-1__text-1 {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .concept-custom-box-1 .concept-custom-box-1__text-1 {
    font-size: 1rem;
  }
}

.common-link-text-underline {
  color: #284766;
  text-decoration: underline;
}

.floating-banner {
  display: none;
  position: fixed;
  z-index: 100;
  bottom: 16px;
  right: 16px;
}
@media screen and (max-width: 1024px) {
  .floating-banner {
    bottom: 64px;
  }
}
.floating-banner .floating-banner--box-1 {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.floating-banner .floating-banner--box-1 .floating-banner--box-1__inner {
  position: relative;
}
.floating-banner .floating-banner--box-1 .floating-banner--box-1__inner .btn-close {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -16px;
  right: -16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
}

.floating-right-banner {
  position: fixed;
  z-index: 100;
  top: 330px;
  right: 0;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
  background-color: #06C755;
}
@media screen and (max-width: 1024px) {
  .floating-right-banner {
    display: none;
  }
}
.floating-right-banner a {
  display: block;
}

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

@keyframes animeMvShow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes aniTabFadeIn {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes aniTabFadeIn {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes aniFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes aniFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes aniSlowFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes aniSlowFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes animationLoading {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes animationLoading {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes animationLoadingLogo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animationLoadingLogo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes reflect {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  21% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 0.8;
  }
  40% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes reflect {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  21% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 0.8;
  }
  40% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes aniShine {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  11% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 0.8;
  }
  20% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes aniShine {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  11% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 0.8;
  }
  20% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes aniBrandSynergyArrow {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  80% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes aniBrandSynergyArrow {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  80% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
.g-header {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #fff;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .g-header {
    padding: 0;
    height: inherit;
  }
}
.g-header .g-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .g-header .g-header__main {
    height: 67px;
  }
}
.g-header .g-header__main .logo {
  line-height: 1;
}
.g-header .g-header__main .logo__icon {
  line-height: 1;
  font-size: 10px;
  padding-left: 2rem;
}
.g-header .g-header__main .logo img {
  vertical-align: top;
  line-height: 1;
    padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .g-header .g-header__main .logo img {
    width: 130px;
  }
}
.g-header .g-header__main .aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .g-header .g-header__main .aside {
    display: none;
  }
}
.g-header .g-header__main .aside .tel__main {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.g-header .g-header__main .aside .tel__main .mark {
  font-size: 1.6rem;
}
.g-header .g-header__main .aside .tel__sub {
  font-size: 8px;
  line-height: 1.4;
}
.g-header .g-header__main .aside .icon {
  margin: 0 10px;
}
.g-header .hamburger-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .g-header .hamburger-menu {
    display: block;
    cursor: pointer;
    position: fixed;
    z-index: 2;
    top: 18px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: #18C2CF;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: solid 5px #18C2CF;
    -webkit-box-shadow: -1px -1px #fff, 1px -1px #fff, 1px 1px 0 #fff, -1px 1px 0 #fff;
            box-shadow: -1px -1px #fff, 1px -1px #fff, 1px 1px 0 #fff, -1px 1px 0 #fff;
  }
}
.g-header .hamburger-menu > span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.g-header .hamburger-menu > span:nth-of-type(1) {
  top: 0;
}
.g-header .hamburger-menu > span:nth-of-type(2) {
  top: 9px;
}
.g-header .hamburger-menu > span:nth-of-type(3) {
  bottom: 0;
}
.g-header .hamburger-menu.is-hamburger-open {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.g-header .hamburger-menu.is-hamburger-open > span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}
.g-header .hamburger-menu.is-hamburger-open > span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.g-header .hamburger-menu.is-hamburger-open > span:nth-of-type(3) {
  opacity: 0;
}
.g-header .g-nav-list-wrapper {
  background: #E50012;
}
@media screen and (max-width: 1024px) {
  .g-header .g-nav-list-wrapper {
    position: fixed;
    top: -100vh;
    z-index: 1;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.g-header .g-nav-list-wrapper.is-hamburger-open {
  display: none;
}
@media screen and (max-width: 1024px) {
  .g-header .g-nav-list-wrapper.is-hamburger-open {
    display: block;
    opacity: 1;
    visibility: visible;
    top: 67px;
  }
}
.g-header .g-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .g-header .g-nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px 20px;
    background: #E50012;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 1024px) {
  .g-header .g-nav-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
.g-header .g-nav-list a.g-nav-link {
  position: relative;
  display: block;
  text-align: center;
  color: #fff;
  padding: 15px 1vw;
}
@media screen and (max-width: 1024px) {
  .g-header .g-nav-list a.g-nav-link {
    padding: 15px;
  }
}
.g-header .g-nav-list a.g-nav-link.selected {
  color: #231815;
}
.g-header .g-nav-list a.g-nav-link.selected .main::after {
  border-top: 2px solid #231815;
  border-right: 2px solid #231815;
}
.g-header .g-nav-list a.g-nav-link:hover {
  background: #29ECFC;
  text-decoration: none;
}
.g-header .g-nav-list a.g-nav-link .main {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.g-header .g-nav-list a.g-nav-link .main::after {
  position: absolute;
  top: 4px;
  left: -10px;
  content: "";
  width: 6px;
  height: 6px;
  margin: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.g-header .g-nav-list a.g-nav-link .sub {
  font-size: 1rem;
  font-weight: 500;
}
.g-header .g-nav-list .soon {
  position: relative;
  display: block;
  text-align: center;
  color: #ccc;
  padding: 0 1vw;
}
@media screen and (max-width: 1024px) {
  .g-header .g-nav-list .soon {
    padding: 15px;
  }
}
.g-header .g-nav-list .soon .nav-title-main {
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.16em;
}
@media screen and (max-width: 1024px) {
  .g-header .g-nav-list .soon .nav-title-main {
    font-size: 1.2rem;
  }
}

.g-footer {
  padding-top: 40px;
  color: #000;
  background: #fff;
}
.g-footer .g-footer__header {
  margin-bottom: 20px;
}
.g-footer .g-footer__header .lead {
  font-size: 5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__header .lead {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
.g-footer .g-footer__body {
  padding-bottom: 30px;
  max-width: 1160px;
  margin: auto;
  border-bottom: 2px solid #282828;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body {
    padding: 0 20px 40px;
  }
}
.g-footer .g-footer__body .logo {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .logo {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .logo__icon img {
    max-width: 160px;
  }
}
.g-footer .g-footer__body .aside-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info .tel {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.g-footer .g-footer__body .aside-info .tel .tel__main {
  font-size: 6rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info .tel .tel__main {
    font-size: 3rem;
  }
}
.g-footer .g-footer__body .aside-info .tel .tel__main-note {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info .tel .tel__main-note {
    font-size: 1rem;
  }
}
.g-footer .g-footer__body .aside-info .tel .tel__sub {
  font-size: 5.5rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info .tel .tel__sub {
    font-size: 2.4rem;
  }
}
.g-footer .g-footer__body .aside-info .address {
  padding-top: 20px;
}
.g-footer .g-footer__body .aside-info .address__main {
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info .address__main {
    font-size: 1rem;
  }
}
.g-footer .g-footer__body .aside-info .address__main .name {
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info .address__main .name {
    font-size: 1.5rem;
  }
}
.g-footer .g-footer__body .aside-info .address__sub {
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info .address__sub {
    font-size: 1rem;
  }
}
.g-footer .g-footer__body .aside-info .button {
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info .button {
    padding-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__body .aside-info .button img {
    max-width: 44px;
  }
}
.g-footer .g-footer__nav {
  position: relative;
}
.g-footer .g-footer__nav .btn-scroll {
  display: none;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__nav .btn-scroll {
    display: block;
    position: absolute;
    top: -20px;
    right: 10px;
  }
}
.g-footer .g-footer__copyright {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  padding: 20px;
  background: #231815;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-footer__copyright {
    padding: 20px 20px 80px;
  }
}
.g-footer .g-nav-list-wrapper {
  max-width: 1160px;
  margin: auto;
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-nav-list-wrapper {
    padding: 20px 2%;
  }
}
.g-footer .g-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-nav-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.g-footer .g-nav-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
}
@media screen and (max-width: 1024px) {
  .g-footer .g-nav-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
.g-footer .g-nav-list a.g-nav-link {
  position: relative;
  display: block;
  font-size: 1.3rem;
  text-align: left;
  color: #231815;
  padding: 10px 0 10px 20px;
}
.g-footer .g-nav-list a.g-nav-link::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  margin: -4px 0 0;
  border-top: 1px solid #231815;
  border-right: 1px solid #231815;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.g-footer-fixed {
  display: none;
}
@media screen and (max-width: 1024px) {
  .g-footer-fixed {
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
  }
}
.g-footer-fixed .icon {
  margin: 0;
}
.g-footer-fixed .icon img {
  width: 100%;
}

.wd-top-mv-slider {
  position: relative;
}
.wd-top-mv-slider img {
  width: 100%;
}
.wd-top-mv-slider .slick-slide img {
  width: 100%;
}
.wd-top-mv-slider .slide-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.top-mv-footer {
  background: #1e3653;
  text-align: center;
  padding: 20px 0;
}

.thumbnail {
  position: relative;
}
.thumbnail .icon-new {
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  background: #ffdc00;
  line-height: 1;
  padding: 2px 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .thumbnail .icon-new {
    font-size: 1rem;
  }
}

.wd-top-concept {
  max-width: 100%;
  padding: 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.wd-top-concept .concept-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url(assets/img/pc/top/top_concept_bg_1.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 1024px) {
  .wd-top-concept .concept-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wd-top-concept .concept-box .concept-box__primary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  background: url(assets/img/pc/top/top_concept_img_1.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 1024px) {
  .wd-top-concept .concept-box .concept-box__primary {
    background: url(assets/img/sp/top/top_concept_img_1.jpg) center center/cover no-repeat;
    aspect-ratio: 1280/1130;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.wd-top-concept .concept-box .concept-box__secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .wd-top-concept .concept-box .concept-box__secondary {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.wd-top-concept .concept--card-1 {
  max-width: 500px;
  text-align: center;
}
.wd-top-concept .concept--heading-1 {
  margin-bottom: 40px;
}
.wd-top-concept .concept--heading-2 {
  margin-bottom: 40px;
}
.wd-top-concept .concept--heading-3 {
  margin-bottom: 40px;
}
.wd-top-concept .concept--text-1 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 40px;
}
.wd-top-concept .concept--more-1 {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.wd-top-event {
  padding-top: 0;
  padding-bottom: 0;
}
.wd-top-event .event-bg1 {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 70px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-event .event-bg1 {
    padding: 35px 20px;
  }
}

.wd-top-event-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wd-top-event-nav .nav-item {
  cursor: pointer;
  color: #535353;
  font-size: 3rem;
  padding: 0 20px 10px;
}
@media screen and (max-width: 1024px) {
  .wd-top-event-nav .nav-item {
    font-size: 1.4rem;
    padding: 0 10px 10px;
  }
}
.wd-top-event-nav .nav-item.selected {
  color: #282828;
  background: url(./assets/img/pc/top/top_event_nav_selected.png) center bottom/100% auto no-repeat;
}

.wd-top-event-index {
  display: none;
  width: 100%;
}
.wd-top-event-index.show {
  display: block;
}
.wd-top-event-index__inner {
  margin: 0 -80px;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-event-index__inner {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.wd-top-event-index .event-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .wd-top-event-index .event-item-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.wd-top-event-index .event-item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23%;
          flex: 0 1 23%;
  margin: 0 1%;
  display: block;
  max-width: 230px;
  background: url(./assets/img/pc/top/top_event_icon_arw.png) center bottom/18px 18px no-repeat;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .wd-top-event-index .event-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 46%;
            flex: 0 1 46%;
    max-width: inherit;
  }
}
.wd-top-event-index .event-item .thumbnail.event_status_3 {
  position: relative;
}
.wd-top-event-index .event-item .thumbnail.event_status_3::after {
  content: "イベントは終了\aいたしました。\aたくさんの\aご参加ありがとう\aございました。";
  white-space: pre;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .wd-top-event-index .event-item .thumbnail.event_status_3::after {
    font-size: 1.2rem;
  }
}
.wd-top-event-index .event-item .thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.wd-top-event-index .event-item .detail .detail-inner {
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-event-index .event-item .detail .detail-inner {
    padding: 10px 0 20px;
  }
}
.wd-top-event-index .event-item .detail .title {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .wd-top-event-index .event-item .detail .title {
    font-size: 1.4rem;
  }
}
.wd-top-event-index .event-item .detail .period,
.wd-top-event-index .event-item .detail .top-message {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-event-index .event-item .detail .period,
.wd-top-event-index .event-item .detail .top-message {
    font-size: 1.2rem;
  }
}
.wd-top-event-index .event-item .detail .mini-title {
  font-size: 1.2rem;
}
.wd-top-event-index .event-item .detail .icon-new {
  color: #E60012;
}
.wd-top-event-index .event-item .detail .more {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 20px;
}

.top-wide-bg {
  background: #EFEFEF;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.top-border-box {
  border: solid 1px #E50012;
}

.top-bg1-box {
  background: #E6F3F5;
}

.top-bg2-box {
  background: #8FCFD9;
}

.wd-top-model-house {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0 !important;
}
.wd-top-model-house .top-wide-bg {
  background: transparent;
}
.wd-top-model-house .model-house-bg1 {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: url(assets/img/pc/top/top_mh_bg_1.png) center top/cover no-repeat;
  padding-top: 10vw;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .model-house-bg1 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.wd-top-model-house .text1 {
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .text1 {
    font-size: 1.2rem;
  }
}
.wd-top-model-house__inner {
  padding-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house__inner {
    margin: 0 -20px;
    padding-bottom: 35px;
  }
}
.wd-top-model-house__icon {
  margin-top: -70px;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house__icon {
    margin-top: 0;
    text-align: center;
  }
}
.wd-top-model-house .model-house-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wd-top-model-house .model-house-item-wrapper .slick-prev {
  left: 50%;
  margin-left: -18vw;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .model-house-item-wrapper .slick-prev {
    margin-left: -42vw;
  }
}
.wd-top-model-house .model-house-item-wrapper .slick-next {
  right: 50%;
  margin-right: -18vw;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .model-house-item-wrapper .slick-next {
    margin-right: -42vw;
  }
}
.wd-top-model-house .model-house-item-wrapper .slick-prev, .wd-top-model-house .model-house-item-wrapper .slick-next {
  width: 28px;
  height: 56px;
}
.wd-top-model-house .model-house-item-wrapper .slide-dots {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
}
.wd-top-model-house .model-house-item-wrapper .slick-slide {
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .model-house-item-wrapper .slick-slide {
    padding-bottom: 20px;
  }
}
.wd-top-model-house .model-house-item {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .model-house-item {
    max-width: 448px;
    margin: auto;
  }
}
.wd-top-model-house .model-house-item .thumbnail {
  position: relative;
  z-index: 1;
}
.wd-top-model-house .model-house-item .thumbnail img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.wd-top-model-house .model-house-item .detail .detail-inner {
  padding: 10px 10px 20px;
  min-height: 200px;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .model-house-item .detail .detail-inner {
    min-height: 160px;
  }
}
.wd-top-model-house .model-house-item .detail .detail-inner-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wd-top-model-house .model-house-item .detail .title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .model-house-item .detail .title {
    font-size: 1.5rem;
  }
}
.wd-top-model-house .model-house-item .detail .text {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .model-house-item .detail .text {
    font-size: 1rem;
  }
}
.wd-top-model-house .model-house-item .detail .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}
.wd-top-model-house .model-house-item .detail .icon img {
  border-radius: 200px;
  border: solid 2px #fff;
  overflow: hidden;
}
.wd-top-model-house .model-house-item .detail .icon-more {
  position: absolute;
  bottom: 5px;
  right: 10px;
  color: #969696;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-model-house .model-house-item .detail .icon-more {
    font-size: 1rem;
  }
}
.wd-top-model-house .model-house-item .detail .button-box {
  padding: 20px 40px;
}

.wd-top-plan {
  padding-top: 0;
  padding-bottom: 0;
}
.wd-top-plan .text1 {
  font-size: 2.4rem;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .text1 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .wd-top-plan__inner {
    margin: 0 -20px;
  }
}
.wd-top-plan .wd-top-plan__inner .top-plan-main {
  position: relative;
  z-index: 2;
}
.wd-top-plan .wd-top-plan__inner .top-wide-bg {
  position: relative;
  z-index: 1;
}
.wd-top-plan .plan-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wd-top-plan .plan-item-wrapper .slick-prev {
  left: 50%;
  margin-left: -18vw;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item-wrapper .slick-prev {
    margin-left: -42vw;
  }
}
.wd-top-plan .plan-item-wrapper .slick-next {
  right: 50%;
  margin-right: -18vw;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item-wrapper .slick-next {
    margin-right: -42vw;
  }
}
.wd-top-plan .plan-item-wrapper .slick-prev, .wd-top-plan .plan-item-wrapper .slick-next {
  width: 28px;
  height: 56px;
}
.wd-top-plan .plan-item-wrapper .slide-dots {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
}
.wd-top-plan .plan-item-wrapper .slick-slide {
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item-wrapper .slick-slide {
    padding: 0 20px;
  }
}
.wd-top-plan .plan-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24%;
          flex: 0 1 24%;
  position: relative;
  max-width: 400px;
  min-height: 350px;
  background: #fff;
  margin: 0 auto 40px;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 20px;
    max-width: 99%;
    min-height: 220px;
    border-right: solid 1px #fff;
    border-left: solid 1px #fff;
  }
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item .slide-dots {
    margin-bottom: 20px;
  }
}
.wd-top-plan .plan-item .area {
  font-size: 1.2rem;
  color: #fff;
  background: #E50012;
  text-align: center;
  padding: 2px;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item .area {
    font-size: 1rem;
  }
}
.wd-top-plan .plan-item .thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 220px;
}
.wd-top-plan .plan-item .thumbnail .item {
  margin: 40px;
}
.wd-top-plan .plan-item .thumbnail img {
  width: 100%;
  height: auto;
}
.wd-top-plan .plan-item .member-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
.wd-top-plan .plan-item .member-box__title {
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item .member-box__title {
    font-size: 1.4rem;
  }
}
.wd-top-plan .plan-item .member-box__message {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item .member-box__message {
    font-size: 1rem;
  }
}
.wd-top-plan .plan-item .member-box__buttons {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item .member-box__buttons {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.wd-top-plan .plan-item .member-box__buttons .button {
  margin: 10px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item .member-box__buttons .button {
    margin: 10px 2px;
  }
}
.wd-top-plan .plan-item .member-box__buttons .button a {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .wd-top-plan .plan-item .member-box__buttons .button a {
    padding: 10px;
  }
}
.wd-top-plan .plan-item .member-box__icon {
  position: absolute;
  bottom: -20px;
  right: 0;
}

.wd-top-gallery-voice {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice__inner {
    margin: 0 -20px;
  }
}
.wd-top-gallery-voice__inner .top-gallery-voice-main {
  position: relative;
  z-index: 2;
}
.wd-top-gallery-voice__inner .top-wide-bg {
  position: relative;
  z-index: 1;
  background: transparent;
}
.wd-top-gallery-voice .slick-list {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.wd-top-gallery-voice .gallery-voice-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wd-top-gallery-voice .gallery-voice-item-wrapper .slick-prev {
  left: 50%;
  margin-left: -18vw;
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice .gallery-voice-item-wrapper .slick-prev {
    margin-left: -42vw;
  }
}
.wd-top-gallery-voice .gallery-voice-item-wrapper .slick-next {
  right: 50%;
  margin-right: -18vw;
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice .gallery-voice-item-wrapper .slick-next {
    margin-right: -42vw;
  }
}
.wd-top-gallery-voice .gallery-voice-item-wrapper .slick-prev, .wd-top-gallery-voice .gallery-voice-item-wrapper .slick-next {
  width: 28px;
  height: 56px;
}
.wd-top-gallery-voice .gallery-voice-item-wrapper .slide-dots {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
}
.wd-top-gallery-voice .gallery-voice-item-wrapper .slick-slide {
  padding: 0 30px;
}
.wd-top-gallery-voice .gallery-voice-bg1 {
  background: #C7EDF1;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 120px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice .gallery-voice-bg1 {
    padding: 100px 20px;
  }
}
.wd-top-gallery-voice .gallery-voice-item {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 20px auto;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice .gallery-voice-item {
    max-width: 448px;
    margin: auto;
  }
}
.wd-top-gallery-voice .gallery-voice-item .gallery-voice-item__inner {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice .gallery-voice-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice .gallery-voice-item .slide-dots {
    margin-bottom: 20px;
  }
}
.wd-top-gallery-voice .gallery-voice-item .thumbnail img {
  width: 100%;
  height: auto;
}
.wd-top-gallery-voice .gallery-voice-item .detail {
  min-height: 180px;
  padding: 10px 10px 20px;
}
.wd-top-gallery-voice .gallery-voice-item .title {
  font-size: 2.4rem;
  min-height: 120px;
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice .gallery-voice-item .title {
    font-size: 1.5rem;
  }
}
.wd-top-gallery-voice .gallery-voice-item .text {
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice .gallery-voice-item .text {
    font-size: 1rem;
  }
}
.wd-top-gallery-voice .gallery-voice-item .icon-more {
  position: absolute;
  bottom: 5px;
  right: 10px;
  color: #969696;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-gallery-voice .gallery-voice-item .icon-more {
    font-size: 1rem;
  }
}

.wd-top-news {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .wd-top-news {
    margin-bottom: 50px;
  }
}
.wd-top-news__inner {
  max-width: 560px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .wd-top-news__inner {
    overflow: hidden;
  }
}
.wd-top-news .news-bg1 {
  border-bottom: solid 3px #1fb6c4;
  padding: 70px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-news .news-bg1 {
    padding: 35px 20px;
  }
}

.wd-top-news-index {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .wd-top-news-index {
    margin-bottom: 20px;
    padding: 0;
  }
}
.wd-top-news-index__inner {
  margin: 0 auto;
  max-width: 1000px;
  border-top: solid 2px #fff;
}
@media screen and (max-width: 1024px) {
  .wd-top-news-index__inner {
    margin: 0;
    padding: 10px;
  }
}
.wd-top-news-index .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 2px #878686;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-news-index .news-item {
    position: relative;
    margin-bottom: 20px;
  }
}
.wd-top-news-index .news-item .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  max-width: 110px;
}
@media screen and (max-width: 1024px) {
  .wd-top-news-index .news-item .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
    max-width: 110px;
  }
}
.wd-top-news-index .news-item .thumbnail img {
  max-width: 100%;
  height: auto;
}
.wd-top-news-index .news-item .detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.wd-top-news-index .news-item .detail .detail-inner {
  padding: 0 0 0 1rem;
}
.wd-top-news-index .news-item .detail .date {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-news-index .news-item .detail .date {
    font-size: 1rem;
  }
}
.wd-top-news-index .news-item .detail .date .text-new {
  color: #000;
  background: #ffdc00;
  line-height: 1;
  padding: 0 4px;
  font-size: 1.2rem;
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-news-index .news-item .detail .date .text-new {
    font-size: 1rem;
  }
}
.wd-top-news-index .news-item .detail .title {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-news-index .news-item .detail .title {
    font-size: 1.2rem;
  }
}

.top-blog-column-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-blog-column-wrapper {
    display: block;
  }
}
.top-blog-column-wrapper .top-blog-column-wrapper__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.wd-top-blog {
  padding-top: 0;
  padding-bottom: 0;
}
.wd-top-blog .blog-bg1 {
  padding: 70px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-blog .blog-bg1 {
    padding: 40px 20px;
  }
}
.wd-top-blog .text1 {
  font-size: 2.4rem;
  text-align: center;
  color: #282828;
}
@media screen and (max-width: 1024px) {
  .wd-top-blog .text1 {
    font-size: 1.2rem;
  }
}

.wd-top-blog-index {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .wd-top-blog-index {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
  }
}
.wd-top-blog-index__inner {
  margin: 0 auto;
  max-width: 1000px;
  border-top: solid 2px #282828;
}
@media screen and (max-width: 1024px) {
  .wd-top-blog-index__inner {
    margin: 0;
  }
}
.wd-top-blog-index .blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 2px #282828;
  padding: 20px 0;
  background: url(./assets/img/pc/top/top_blog_icon_arw.png) center right 10px/30px 30px no-repeat;
}
@media screen and (max-width: 1024px) {
  .wd-top-blog-index .blog-item {
    position: relative;
    margin-bottom: 20px;
  }
}
.wd-top-blog-index .blog-item .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  max-width: 120px;
}
@media screen and (max-width: 1024px) {
  .wd-top-blog-index .blog-item .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    max-width: 120px;
  }
}
.wd-top-blog-index .blog-item .thumbnail img {
  max-width: 100%;
  height: auto;
}
.wd-top-blog-index .blog-item .detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-left: 2rem;
}
.wd-top-blog-index .blog-item .detail .detail-inner {
  padding: 0;
}
.wd-top-blog-index .blog-item .detail .date {
  font-size: 1.4rem;
  line-height: 1;
  color: #282828;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-blog-index .blog-item .detail .date {
    font-size: 1rem;
  }
}
.wd-top-blog-index .blog-item .detail .date .text-new {
  color: #000;
  background: #ffdc00;
  line-height: 1;
  padding: 0 4px;
  font-size: 1.2rem;
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-blog-index .blog-item .detail .date .text-new {
    font-size: 1rem;
  }
}
.wd-top-blog-index .blog-item .detail .title {
  font-size: 1.6rem;
  color: #282828;
}
@media screen and (max-width: 1024px) {
  .wd-top-blog-index .blog-item .detail .title {
    font-size: 1.2rem;
  }
}

.wd-top-column {
  padding-top: 0;
  padding-bottom: 0;
}
.wd-top-column .column-bg1 {
  padding: 70px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-column .column-bg1 {
    padding: 40px 20px;
  }
}
.wd-top-column .text1 {
  font-size: 2.4rem;
  text-align: center;
  color: #282828;
}
@media screen and (max-width: 1024px) {
  .wd-top-column .text1 {
    font-size: 1.2rem;
  }
}

.wd-top-column-index {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
  }
}
.wd-top-column-index__inner {
  margin: 0 auto;
  max-width: 1000px;
  border-top: solid 2px #282828;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index__inner {
    margin: 0;
  }
}
.wd-top-column-index .column-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 2px #282828;
  padding: 20px 0;
  background: url(./assets/img/pc/top/top_blog_icon_arw.png) center right 10px/30px 30px no-repeat;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item {
    position: relative;
    margin-bottom: 20px;
  }
}
.wd-top-column-index .column-item .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  max-width: 120px;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    max-width: 120px;
  }
}
.wd-top-column-index .column-item .thumbnail img {
  max-width: 100%;
  height: auto;
}
.wd-top-column-index .column-item .detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-left: 2rem;
}
.wd-top-column-index .column-item .detail .detail-inner {
  padding: 0;
}
.wd-top-column-index .column-item .detail .date {
  font-size: 1.4rem;
  line-height: 1;
  color: #282828;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item .detail .date {
    font-size: 1rem;
  }
}
.wd-top-column-index .column-item .detail .date .text-new {
  color: #000;
  background: #ffdc00;
  line-height: 1;
  padding: 0 4px;
  font-size: 1.2rem;
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item .detail .date .text-new {
    font-size: 1rem;
  }
}
.wd-top-column-index .column-item .detail .title {
  font-size: 1.6rem;
  color: #282828;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item .detail .title {
    font-size: 1.2rem;
  }
}
.wd-top-column-index .column-item .detail .icon-more {
  margin-top: 1rem;
  text-align: right;
  color: #282828;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item .detail .icon-more {
    font-size: 1rem;
  }
}

.wd-top-column-index {
  display: none;
}
.wd-top-column-index.show {
  display: block;
}
.wd-top-column-index .column-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 2px #282828;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item {
    position: relative;
    margin-bottom: 20px;
  }
}
.wd-top-column-index .column-item .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  max-width: 120px;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    max-width: 120px;
  }
}
.wd-top-column-index .column-item .thumbnail img {
  max-width: 100%;
  height: auto;
}
.wd-top-column-index .column-item .detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.wd-top-column-index .column-item .detail .detail-inner {
  padding: 0;
}
.wd-top-column-index .column-item .detail .date {
  font-size: 1.4rem;
  line-height: 1;
  color: #282828;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item .detail .date {
    font-size: 1rem;
  }
}
.wd-top-column-index .column-item .detail .date .text-new {
  color: #000;
  background: #ffdc00;
  line-height: 1;
  padding: 0 4px;
  font-size: 1.2rem;
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item .detail .date .text-new {
    font-size: 1rem;
  }
}
.wd-top-column-index .column-item .detail .title {
  font-size: 1.6rem;
  color: #282828;
}
@media screen and (max-width: 1024px) {
  .wd-top-column-index .column-item .detail .title {
    font-size: 1.2rem;
  }
}

.wd-top-lifestyle {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .wd-top-lifestyle {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .wd-top-lifestyle__inner {
    padding: 0 20px;
  }
}
.wd-top-lifestyle .lifestyle-bg1 {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .wd-top-lifestyle .lifestyle-bg1 {
    padding: 40px 20px;
  }
}
.wd-top-lifestyle .top-wide-bg {
  max-width: 1200px;
  margin: auto;
}
.wd-top-lifestyle .lifestyle-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .wd-top-lifestyle .lifestyle-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.wd-top-lifestyle .lifestyle-box .lifestyle-box__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23%;
          flex: 0 1 23%;
  display: block;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .wd-top-lifestyle .lifestyle-box .lifestyle-box__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
    margin-bottom: 1em;
  }
}
.wd-top-lifestyle .lifestyle--lead-1 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .wd-top-lifestyle .lifestyle--lead-1 {
    font-size: 1.2rem;
  }
}
.wd-top-lifestyle .lifestyle--text-1 {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  padding: 40px 10px;
}
@media screen and (max-width: 1024px) {
  .wd-top-lifestyle .lifestyle--text-1 {
    display: none;
  }
}
.wd-top-lifestyle .lifestyle--more-1 {
  text-align: center;
  padding: 0 20px 40px;
}
@media screen and (max-width: 1024px) {
  .wd-top-lifestyle .lifestyle--more-1 {
    padding: 20px;
  }
  .wd-top-lifestyle .lifestyle--more-1 img {
    width: 10vw;
    max-width: 30px;
  }
}

.wd-top-low-cost {
  padding-top: 0;
  padding-bottom: 0;
  border-top: solid 10px #1fb6c4;
}
.wd-top-low-cost .low-cost-bg1 {
  max-width: 860px;
  margin: auto;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-low-cost .low-cost-bg1 {
    padding: 40px 20px;
  }
}
.wd-top-low-cost .low-cost-heading-1 {
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .wd-top-low-cost .low-cost-heading-1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.wd-top-low-cost .low-cost-heading-1 .large {
  font-size: 6rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-low-cost .low-cost-heading-1 .large {
    font-size: 3rem;
  }
}
.wd-top-low-cost .low-cost-heading-2 {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .wd-top-low-cost .low-cost-heading-2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.wd-top-low-cost .low-cost-text-1 {
  font-size: 2rem;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .wd-top-low-cost .low-cost-text-1 {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}
.wd-top-low-cost .js-low-cost-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .wd-top-low-cost .js-low-cost-slider {
    display: block;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .wd-top-low-cost .js-low-cost-slider .slide-dots {
    margin-bottom: 20px;
  }
}
.wd-top-low-cost .js-low-cost-slider .slick-prev {
  left: 10px;
}
.wd-top-low-cost .js-low-cost-slider .slick-next {
  right: 10px;
}
.wd-top-low-cost .item {
  padding: 0 5px;
}
.wd-top-low-cost .text1 {
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .wd-top-low-cost .text1 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .wd-top-low-cost .button-box {
    max-width: 200px;
    margin: auto;
  }
}

.wd-top-footer-buttons-wrapper {
  max-width: 1000px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 1024px) {
  .wd-top-footer-buttons-wrapper {
    padding: 0 20px;
    margin-bottom: 50px;
  }
}
.wd-top-footer-buttons-wrapper .top-footer-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .wd-top-footer-buttons-wrapper .top-footer-buttons {
    display: block;
  }
}
.wd-top-footer-buttons-wrapper .button-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}
@media screen and (max-width: 1024px) {
  .wd-top-footer-buttons-wrapper .button-item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.wd-top-staff {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-staff__inner {
    padding: 0 20px;
  }
}
.wd-top-staff .staff-bg1 {
  color: #fff;
  background: #1e3653;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding-top: 40px;
  padding-bottom: 40px;
}
.wd-top-staff .text1 {
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .wd-top-staff .text1 {
    font-size: 1.2rem;
  }
}

.wd-top-staff-index__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .wd-top-staff-index__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wd-top-staff-index .staff-item {
  font-size: 1.2rem;
  color: #fff;
  max-width: 270px;
  margin: 0 10px;
  border: solid 1px #fff;
}
@media screen and (max-width: 1024px) {
  .wd-top-staff-index .staff-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 49%;
            flex: 0 1 49%;
    margin: 0;
  }
}
.wd-top-staff-index .staff-item .detail {
  padding: 10px;
}
.wd-top-staff-index .staff-item .detail .position {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-staff-index .staff-item .detail .position {
    font-size: 1.4rem;
  }
}
.wd-top-staff-index .staff-item .detail .title {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-staff-index .staff-item .detail .title {
    font-size: 1.6rem;
  }
}
.wd-top-staff-index .staff-item .detail .category-list {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .wd-top-staff-index .staff-item .detail .category-list {
    font-size: 1rem;
  }
}

.wd-top-reserve {
  padding-top: 0;
  padding-bottom: 0;
}
.wd-top-reserve .reserve-bg1 {
  background: #1fb6c4;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .wd-top-reserve .reserve-bg1 {
    padding: 20px;
  }
}
.wd-top-reserve .image1 {
  text-align: center;
}
.wd-top-reserve .text1 {
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .wd-top-reserve .text1 {
    font-size: 1.2rem;
  }
}

.wd-top-view-list {
  padding-top: 0;
  padding-bottom: 0;
}
.wd-top-view-list .view-list-bg1 {
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  background: #1fb6c4;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 70px 0;
}
@media screen and (max-width: 1024px) {
  .wd-top-view-list .view-list-bg1 {
    padding: 35px 20px;
  }
}

.insta-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .insta-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.insta-box__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23%;
          flex: 0 1 23%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 1%;
}
@media screen and (max-width: 1024px) {
  .insta-box__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}

.wd-top-banner-movie {
  margin-top: 60px;
}

.reflection-img {
  width: 268px;
  height: 180px;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.reflection {
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: reflection 5s ease-in-out infinite;
          animation: reflection 5s ease-in-out infinite;
}

@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.top-banner-box {
  padding: 40px 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-banner-box {
    padding: 20px 0;
  }
}
.top-banner-box.bg1 {
  background: #fff;
}

.top-banner-1 {
  background: #1A3069;
  padding: 35px 20px;
}
@media screen and (max-width: 1024px) {
  .top-banner-1 {
    padding: 0;
  }
}
.top-banner-1 .top-banner-1__inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.top-banner-2 {
  background: #2F2D2D;
  padding: 35px 20px;
}
@media screen and (max-width: 1024px) {
  .top-banner-2 {
    background: none;
    padding: 0;
  }
}
.top-banner-2 .top-banner-2__inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.top-banner-3 {
  background: #1A3069;
  padding: 35px 20px;
}
@media screen and (max-width: 1024px) {
  .top-banner-3 {
    padding: 0;
  }
}
.top-banner-3 .top-banner-3__inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.top-banner-4 {
  background: #1A3069;
  padding: 35px 20px;
}
@media screen and (max-width: 1024px) {
  .top-banner-4 {
    padding: 0;
  }
}
.top-banner-4 .top-banner-4__inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.top-banner-5 {
  padding: 35px 20px;
}
@media screen and (max-width: 1024px) {
  .top-banner-5 {
    padding: 20px;
  }
}
.top-banner-5 .top-banner-5__inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.top-banner-box-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-banner-box-1 .top-banner-box-1__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
}

.post-type-archive-event .g-header__nav .event a,
.single-event .g-header__nav .event a,
.tax-event-category .g-header__nav .event a {
  color: #231815;
}
.post-type-archive-event .g-header__nav .event a .main::after,
.single-event .g-header__nav .event a .main::after,
.tax-event-category .g-header__nav .event a .main::after {
  border-top: 2px solid #231815;
  border-right: 2px solid #231815;
}
.post-type-archive-event .thumbnail,
.single-event .thumbnail,
.tax-event-category .thumbnail {
  position: relative;
}
.post-type-archive-event .thumbnail .icon-new,
.single-event .thumbnail .icon-new,
.tax-event-category .thumbnail .icon-new {
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  background: #ffdc00;
  line-height: 1;
  padding: 2px 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .thumbnail .icon-new,
.single-event .thumbnail .icon-new,
.tax-event-category .thumbnail .icon-new {
    font-size: 1rem;
  }
}
.post-type-archive-event .wd-event-index__inner,
.single-event .wd-event-index__inner,
.tax-event-category .wd-event-index__inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 0 50px 0;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-index__inner,
.single-event .wd-event-index__inner,
.tax-event-category .wd-event-index__inner {
    padding: 20px;
  }
}
.post-type-archive-event .wd-event-index .event-item-wrapper,
.single-event .wd-event-index .event-item-wrapper,
.tax-event-category .wd-event-index .event-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 4rem;
}
.post-type-archive-event .wd-event-index .event-item,
.single-event .wd-event-index .event-item,
.tax-event-category .wd-event-index .event-item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23%;
          flex: 0 1 23%;
  margin: 0 1%;
  display: block;
  max-width: 230px;
  margin-bottom: 4rem;
  background: url(./assets/img/pc/event/event_icon_arw.png) center bottom/39px 39px no-repeat;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-index .event-item,
.single-event .wd-event-index .event-item,
.tax-event-category .wd-event-index .event-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
    max-width: 48%;
  }
}
.post-type-archive-event .wd-event-index .event-item .thumbnail.event_status_3,
.single-event .wd-event-index .event-item .thumbnail.event_status_3,
.tax-event-category .wd-event-index .event-item .thumbnail.event_status_3 {
  position: relative;
}
.post-type-archive-event .wd-event-index .event-item .thumbnail.event_status_3::after,
.single-event .wd-event-index .event-item .thumbnail.event_status_3::after,
.tax-event-category .wd-event-index .event-item .thumbnail.event_status_3::after {
  content: "イベントは終了\aいたしました。\aたくさんの\aご参加ありがとう\aございました。";
  white-space: pre;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-index .event-item .thumbnail.event_status_3::after,
.single-event .wd-event-index .event-item .thumbnail.event_status_3::after,
.tax-event-category .wd-event-index .event-item .thumbnail.event_status_3::after {
    font-size: 1.2rem;
  }
}
.post-type-archive-event .wd-event-index .event-item .thumbnail img,
.single-event .wd-event-index .event-item .thumbnail img,
.tax-event-category .wd-event-index .event-item .thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.post-type-archive-event .wd-event-index .event-item .detail .detail-inner,
.single-event .wd-event-index .event-item .detail .detail-inner,
.tax-event-category .wd-event-index .event-item .detail .detail-inner {
  color: #646464;
  padding: 20px 0 50px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-index .event-item .detail .detail-inner,
.single-event .wd-event-index .event-item .detail .detail-inner,
.tax-event-category .wd-event-index .event-item .detail .detail-inner {
    padding: 10px 0 50px;
  }
}
.post-type-archive-event .wd-event-index .event-item .detail .title,
.single-event .wd-event-index .event-item .detail .title,
.tax-event-category .wd-event-index .event-item .detail .title {
  color: #000;
  margin-bottom: 2rem;
}
.post-type-archive-event .wd-event-index .event-item .detail .title,
.post-type-archive-event .wd-event-index .event-item .detail .period,
.post-type-archive-event .wd-event-index .event-item .detail .top-message,
.single-event .wd-event-index .event-item .detail .title,
.single-event .wd-event-index .event-item .detail .period,
.single-event .wd-event-index .event-item .detail .top-message,
.tax-event-category .wd-event-index .event-item .detail .title,
.tax-event-category .wd-event-index .event-item .detail .period,
.tax-event-category .wd-event-index .event-item .detail .top-message {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-index .event-item .detail .title,
.post-type-archive-event .wd-event-index .event-item .detail .period,
.post-type-archive-event .wd-event-index .event-item .detail .top-message,
.single-event .wd-event-index .event-item .detail .title,
.single-event .wd-event-index .event-item .detail .period,
.single-event .wd-event-index .event-item .detail .top-message,
.tax-event-category .wd-event-index .event-item .detail .title,
.tax-event-category .wd-event-index .event-item .detail .period,
.tax-event-category .wd-event-index .event-item .detail .top-message {
    font-size: 1.2rem;
  }
}
.post-type-archive-event .wd-event-index .event-item .detail .mini-title,
.single-event .wd-event-index .event-item .detail .mini-title,
.tax-event-category .wd-event-index .event-item .detail .mini-title {
  font-size: 1.2rem;
}
.post-type-archive-event .wd-event-index .event-item .detail .icon-new,
.single-event .wd-event-index .event-item .detail .icon-new,
.tax-event-category .wd-event-index .event-item .detail .icon-new {
  color: #E60012;
}
.post-type-archive-event .wd-event-index .event-item .detail .more,
.single-event .wd-event-index .event-item .detail .more,
.tax-event-category .wd-event-index .event-item .detail .more {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 20px;
}
.post-type-archive-event .wd-event-archive__inner,
.single-event .wd-event-archive__inner,
.tax-event-category .wd-event-archive__inner {
  max-width: 860px;
  margin: auto;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive__inner,
.single-event .wd-event-archive__inner,
.tax-event-category .wd-event-archive__inner {
    padding: 20px;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item,
.single-event .wd-event-archive .event-archive-item,
.tax-event-category .wd-event-archive .event-archive-item {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item,
.single-event .wd-event-archive .event-archive-item,
.tax-event-category .wd-event-archive .event-archive-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 20px;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .thumbnail img,
.single-event .wd-event-archive .event-archive-item .thumbnail img,
.tax-event-category .wd-event-archive .event-archive-item .thumbnail img {
  width: 100%;
  height: auto;
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta,
.single-event .wd-event-archive .event-archive-item .meta,
.tax-event-category .wd-event-archive .event-archive-item .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .meta,
.single-event .wd-event-archive .event-archive-item .meta,
.tax-event-category .wd-event-archive .event-archive-item .meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .type,
.single-event .wd-event-archive .event-archive-item .meta .type,
.tax-event-category .wd-event-archive .event-archive-item .meta .type {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .meta .type,
.single-event .wd-event-archive .event-archive-item .meta .type,
.tax-event-category .wd-event-archive .event-archive-item .meta .type {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33%;
            flex: 0 1 33%;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .type.event_type_1,
.single-event .wd-event-archive .event-archive-item .meta .type.event_type_1,
.tax-event-category .wd-event-archive .event-archive-item .meta .type.event_type_1 {
  background: #172A88;
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .type.event_type_2,
.single-event .wd-event-archive .event-archive-item .meta .type.event_type_2,
.tax-event-category .wd-event-archive .event-archive-item .meta .type.event_type_2 {
  background: #F6AC00;
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .area,
.single-event .wd-event-archive .event-archive-item .meta .area,
.tax-event-category .wd-event-archive .event-archive-item .meta .area {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 10px;
  background: #E50012;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .meta .area,
.single-event .wd-event-archive .event-archive-item .meta .area,
.tax-event-category .wd-event-archive .event-archive-item .meta .area {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33%;
            flex: 0 1 33%;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .status,
.single-event .wd-event-archive .event-archive-item .meta .status,
.tax-event-category .wd-event-archive .event-archive-item .meta .status {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .meta .status,
.single-event .wd-event-archive .event-archive-item .meta .status,
.tax-event-category .wd-event-archive .event-archive-item .meta .status {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33%;
            flex: 0 1 33%;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .status.event_status_1,
.single-event .wd-event-archive .event-archive-item .meta .status.event_status_1,
.tax-event-category .wd-event-archive .event-archive-item .meta .status.event_status_1 {
  background: #6EBA2C;
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .status.event_status_2,
.single-event .wd-event-archive .event-archive-item .meta .status.event_status_2,
.tax-event-category .wd-event-archive .event-archive-item .meta .status.event_status_2 {
  background: #E60112;
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .status.event_status_3,
.single-event .wd-event-archive .event-archive-item .meta .status.event_status_3,
.tax-event-category .wd-event-archive .event-archive-item .meta .status.event_status_3 {
  background: #070606;
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .more,
.single-event .wd-event-archive .event-archive-item .meta .more,
.tax-event-category .wd-event-archive .event-archive-item .meta .more {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .meta .more,
.single-event .wd-event-archive .event-archive-item .meta .more,
.tax-event-category .wd-event-archive .event-archive-item .meta .more {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-top: 10px;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .more .button-box,
.single-event .wd-event-archive .event-archive-item .meta .more .button-box,
.tax-event-category .wd-event-archive .event-archive-item .meta .more .button-box {
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .meta .more .button-box,
.single-event .wd-event-archive .event-archive-item .meta .more .button-box,
.tax-event-category .wd-event-archive .event-archive-item .meta .more .button-box {
    padding-left: 0;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .more .btn-scroll,
.single-event .wd-event-archive .event-archive-item .meta .more .btn-scroll,
.tax-event-category .wd-event-archive .event-archive-item .meta .more .btn-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  color: #231815;
  background: #E50012;
  border: solid 2px #E50012;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .meta .more .btn-scroll,
.single-event .wd-event-archive .event-archive-item .meta .more .btn-scroll,
.tax-event-category .wd-event-archive .event-archive-item .meta .more .btn-scroll {
    color: #231815;
    background: #E50012;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .more .btn-scroll:hover,
.single-event .wd-event-archive .event-archive-item .meta .more .btn-scroll:hover,
.tax-event-category .wd-event-archive .event-archive-item .meta .more .btn-scroll:hover {
  color: #E50012;
  background: #fff;
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .more .btn-scroll:hover .button-icon::after,
.single-event .wd-event-archive .event-archive-item .meta .more .btn-scroll:hover .button-icon::after,
.tax-event-category .wd-event-archive .event-archive-item .meta .more .btn-scroll:hover .button-icon::after {
  border-color: transparent transparent transparent #E50012;
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .more .btn-scroll .button-icon,
.single-event .wd-event-archive .event-archive-item .meta .more .btn-scroll .button-icon,
.tax-event-category .wd-event-archive .event-archive-item .meta .more .btn-scroll .button-icon {
  display: block;
  position: relative;
}
.post-type-archive-event .wd-event-archive .event-archive-item .meta .more .btn-scroll .button-icon::after,
.single-event .wd-event-archive .event-archive-item .meta .more .btn-scroll .button-icon::after,
.tax-event-category .wd-event-archive .event-archive-item .meta .more .btn-scroll .button-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto 10px;
  border-style: solid;
  border-color: transparent transparent transparent #231815;
  border-width: 8px 0 8px 8px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .meta .more .btn-scroll .button-icon::after,
.single-event .wd-event-archive .event-archive-item .meta .more .btn-scroll .button-icon::after,
.tax-event-category .wd-event-archive .event-archive-item .meta .more .btn-scroll .button-icon::after {
    border-color: transparent transparent transparent #231815;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .period,
.single-event .wd-event-archive .event-archive-item .period,
.tax-event-category .wd-event-archive .event-archive-item .period {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .period,
.single-event .wd-event-archive .event-archive-item .period,
.tax-event-category .wd-event-archive .event-archive-item .period {
    font-size: 10px;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .mini-title,
.single-event .wd-event-archive .event-archive-item .mini-title,
.tax-event-category .wd-event-archive .event-archive-item .mini-title {
  text-align: center;
}
.post-type-archive-event .wd-event-archive .event-archive-item .archive-title,
.single-event .wd-event-archive .event-archive-item .archive-title,
.tax-event-category .wd-event-archive .event-archive-item .archive-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .archive-title,
.single-event .wd-event-archive .event-archive-item .archive-title,
.tax-event-category .wd-event-archive .event-archive-item .archive-title {
    margin-bottom: 20px;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .archive-title .icon-new,
.single-event .wd-event-archive .event-archive-item .archive-title .icon-new,
.tax-event-category .wd-event-archive .event-archive-item .archive-title .icon-new {
  display: inline-block;
}
.post-type-archive-event .wd-event-archive .event-archive-item .archive-title .title,
.single-event .wd-event-archive .event-archive-item .archive-title .title,
.tax-event-category .wd-event-archive .event-archive-item .archive-title .title {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .archive-title .title,
.single-event .wd-event-archive .event-archive-item .archive-title .title,
.tax-event-category .wd-event-archive .event-archive-item .archive-title .title {
    font-size: 1.6rem;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .archive-content,
.single-event .wd-event-archive .event-archive-item .archive-content,
.tax-event-category .wd-event-archive .event-archive-item .archive-content {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .event-archive-item .archive-content,
.single-event .wd-event-archive .event-archive-item .archive-content,
.tax-event-category .wd-event-archive .event-archive-item .archive-content {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.post-type-archive-event .wd-event-archive .event-archive-item .archive-content p:not(:last-of-type),
.single-event .wd-event-archive .event-archive-item .archive-content p:not(:last-of-type),
.tax-event-category .wd-event-archive .event-archive-item .archive-content p:not(:last-of-type) {
  margin-bottom: 1em;
}
.post-type-archive-event .wd-event-archive .event-archive-item .icon-new,
.single-event .wd-event-archive .event-archive-item .icon-new,
.tax-event-category .wd-event-archive .event-archive-item .icon-new {
  color: #E60012;
}
.post-type-archive-event .wd-event-archive .outline,
.single-event .wd-event-archive .outline,
.tax-event-category .wd-event-archive .outline {
  margin-bottom: 50px;
}
.post-type-archive-event .wd-event-archive .outline__title,
.single-event .wd-event-archive .outline__title,
.tax-event-category .wd-event-archive .outline__title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.post-type-archive-event .wd-event-archive .outline__table,
.single-event .wd-event-archive .outline__table,
.tax-event-category .wd-event-archive .outline__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
}
.post-type-archive-event .wd-event-archive .outline__table th,
.single-event .wd-event-archive .outline__table th,
.tax-event-category .wd-event-archive .outline__table th {
  border-bottom: solid 1px #000;
  width: 20%;
  color: #fff;
  background: #19B4C3;
  padding: 10px;
}
.post-type-archive-event .wd-event-archive .outline__table td,
.single-event .wd-event-archive .outline__table td,
.tax-event-category .wd-event-archive .outline__table td {
  border-bottom: solid 1px #000;
  padding: 10px;
}
.post-type-archive-event .wd-event-archive .outline__table .status-wrapper,
.single-event .wd-event-archive .outline__table .status-wrapper,
.tax-event-category .wd-event-archive .outline__table .status-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-type-archive-event .wd-event-archive .outline__table .status-wrapper .status,
.single-event .wd-event-archive .outline__table .status-wrapper .status,
.tax-event-category .wd-event-archive .outline__table .status-wrapper .status {
  position: relative;
  margin-left: 20px;
  padding: 5px 10px;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
}
.post-type-archive-event .wd-event-archive .outline__table .status-wrapper .status.event_status_1,
.single-event .wd-event-archive .outline__table .status-wrapper .status.event_status_1,
.tax-event-category .wd-event-archive .outline__table .status-wrapper .status.event_status_1 {
  position: relative;
  background: #FFE000;
}
.post-type-archive-event .wd-event-archive .outline__table .status-wrapper .status.event_status_1::after,
.single-event .wd-event-archive .outline__table .status-wrapper .status.event_status_1::after,
.tax-event-category .wd-event-archive .outline__table .status-wrapper .status.event_status_1::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #FFE000 transparent transparent transparent;
  border-width: 8px 8px 0 8px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.post-type-archive-event .wd-event-archive .outline .map iframe,
.single-event .wd-event-archive .outline .map iframe,
.tax-event-category .wd-event-archive .outline .map iframe {
  width: 100%;
}
.post-type-archive-event .wd-event-archive .form-box,
.single-event .wd-event-archive .form-box,
.tax-event-category .wd-event-archive .form-box {
  margin-bottom: 50px;
}
.post-type-archive-event .wd-event-archive .form-box__title,
.single-event .wd-event-archive .form-box__title,
.tax-event-category .wd-event-archive .form-box__title {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  border: solid 1px #000;
  padding: 10px;
  margin-bottom: 20px;
}
.post-type-archive-event .wd-event-archive .form-box__title::after,
.single-event .wd-event-archive .form-box__title::after,
.tax-event-category .wd-event-archive .form-box__title::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 4px;
  top: 4px;
  background: #C6ECF0;
  display: block;
  width: 100%;
  height: 100%;
}
.post-type-archive-event .wd-event-archive .table-event,
.single-event .wd-event-archive .table-event,
.tax-event-category .wd-event-archive .table-event {
  width: 100%;
  border-collapse: collapse;
  /* IE */
  /* Edge */
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .table-event,
.single-event .wd-event-archive .table-event,
.tax-event-category .wd-event-archive .table-event {
    display: block;
  }
}
.post-type-archive-event .wd-event-archive .table-event th,
.single-event .wd-event-archive .table-event th,
.tax-event-category .wd-event-archive .table-event th {
  border-top: solid 1px #D2D3D3;
  font-weight: normal;
  text-align: left;
  padding: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .table-event th,
.single-event .wd-event-archive .table-event th,
.tax-event-category .wd-event-archive .table-event th {
    display: block;
    background: #D2D3D3;
  }
}
.post-type-archive-event .wd-event-archive .table-event td,
.single-event .wd-event-archive .table-event td,
.tax-event-category .wd-event-archive .table-event td {
  border-top: solid 1px #D2D3D3;
  padding: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .table-event td,
.single-event .wd-event-archive .table-event td,
.tax-event-category .wd-event-archive .table-event td {
    display: block;
  }
}
.post-type-archive-event .wd-event-archive .table-event .badge,
.single-event .wd-event-archive .table-event .badge,
.tax-event-category .wd-event-archive .table-event .badge {
  color: #231815;
  background: #D6D7D7;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 4px 10px;
}
.post-type-archive-event .wd-event-archive .table-event .required,
.single-event .wd-event-archive .table-event .required,
.tax-event-category .wd-event-archive .table-event .required {
  color: #B60005;
}
.post-type-archive-event .wd-event-archive .table-event .any,
.single-event .wd-event-archive .table-event .any,
.tax-event-category .wd-event-archive .table-event .any {
  color: #F39800;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .table-event input[type=text],
.single-event .wd-event-archive .table-event input[type=text],
.tax-event-category .wd-event-archive .table-event input[type=text] {
    max-width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .post-type-archive-event .wd-event-archive .table-event textarea,
.single-event .wd-event-archive .table-event textarea,
.tax-event-category .wd-event-archive .table-event textarea {
    width: 100%;
  }
}
.post-type-archive-event .wd-event-archive .table-event input::-webkit-input-placeholder, .single-event .wd-event-archive .table-event input::-webkit-input-placeholder, .tax-event-category .wd-event-archive .table-event input::-webkit-input-placeholder {
  color: #ccc;
}
.post-type-archive-event .wd-event-archive .table-event input::-moz-placeholder, .single-event .wd-event-archive .table-event input::-moz-placeholder, .tax-event-category .wd-event-archive .table-event input::-moz-placeholder {
  color: #ccc;
}
.post-type-archive-event .wd-event-archive .table-event input:-ms-input-placeholder, .single-event .wd-event-archive .table-event input:-ms-input-placeholder, .tax-event-category .wd-event-archive .table-event input:-ms-input-placeholder {
  color: #ccc;
}
.post-type-archive-event .wd-event-archive .table-event input::-ms-input-placeholder, .single-event .wd-event-archive .table-event input::-ms-input-placeholder, .tax-event-category .wd-event-archive .table-event input::-ms-input-placeholder {
  color: #ccc;
}
.post-type-archive-event .wd-event-archive .table-event input::placeholder,
.single-event .wd-event-archive .table-event input::placeholder,
.tax-event-category .wd-event-archive .table-event input::placeholder {
  color: #ccc;
}
.post-type-archive-event .wd-event-archive .table-event input:-ms-input-placeholder,
.single-event .wd-event-archive .table-event input:-ms-input-placeholder,
.tax-event-category .wd-event-archive .table-event input:-ms-input-placeholder {
  color: #ccc;
}
.post-type-archive-event .wd-event-archive .table-event input::-ms-input-placeholder,
.single-event .wd-event-archive .table-event input::-ms-input-placeholder,
.tax-event-category .wd-event-archive .table-event input::-ms-input-placeholder {
  color: #ccc;
}

.post-type-archive-plan .wd-plan-index,
.single-plan .wd-plan-index,
.tax-plan-category .wd-plan-index,
.tax-plan-tag .wd-plan-index {
  overflow: hidden;
}
.post-type-archive-plan .wd-plan-index__inner,
.single-plan .wd-plan-index__inner,
.tax-plan-category .wd-plan-index__inner,
.tax-plan-tag .wd-plan-index__inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 0 50px 0;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index__inner,
.single-plan .wd-plan-index__inner,
.tax-plan-category .wd-plan-index__inner,
.tax-plan-tag .wd-plan-index__inner {
    padding: 20px;
  }
}
.post-type-archive-plan .wd-plan-index .plan-heading2,
.single-plan .wd-plan-index .plan-heading2,
.tax-plan-category .wd-plan-index .plan-heading2,
.tax-plan-tag .wd-plan-index .plan-heading2 {
  font-size: 2.2rem;
  text-align: center;
  background: #E50012;
  padding: 20px;
  margin: 0 calc(50% - 50vw) 40px;
  width: 100vw;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-heading2,
.single-plan .wd-plan-index .plan-heading2,
.tax-plan-category .wd-plan-index .plan-heading2,
.tax-plan-tag .wd-plan-index .plan-heading2 {
    font-size: 1.6rem;
  }
}
.post-type-archive-plan .wd-plan-index .plan-item-wrapper,
.single-plan .wd-plan-index .plan-item-wrapper,
.tax-plan-category .wd-plan-index .plan-item-wrapper,
.tax-plan-tag .wd-plan-index .plan-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-plan .wd-plan-index .plan-item,
.single-plan .wd-plan-index .plan-item,
.tax-plan-category .wd-plan-index .plan-item,
.tax-plan-tag .wd-plan-index .plan-item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 450px;
  background: #E50012;
  border: solid 3px #E50012;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item,
.single-plan .wd-plan-index .plan-item,
.tax-plan-category .wd-plan-index .plan-item,
.tax-plan-tag .wd-plan-index .plan-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 20px;
    max-width: 100%;
  }
}
.post-type-archive-plan .wd-plan-index .plan-item__primary,
.single-plan .wd-plan-index .plan-item__primary,
.tax-plan-category .wd-plan-index .plan-item__primary,
.tax-plan-tag .wd-plan-index .plan-item__primary {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  padding: 10px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item__primary,
.single-plan .wd-plan-index .plan-item__primary,
.tax-plan-category .wd-plan-index .plan-item__primary,
.tax-plan-tag .wd-plan-index .plan-item__primary {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
}
.post-type-archive-plan .wd-plan-index .plan-item__secondary,
.single-plan .wd-plan-index .plan-item__secondary,
.tax-plan-category .wd-plan-index .plan-item__secondary,
.tax-plan-tag .wd-plan-index .plan-item__secondary {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  background: #fff url(./assets/img/pc/plan/plan_icon_more.png) right 4px bottom 4px/87px auto no-repeat;
  border-left: solid 3px #E50012;
  min-height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-type-archive-plan .wd-plan-index .plan-item .category,
.single-plan .wd-plan-index .plan-item .category,
.tax-plan-category .wd-plan-index .plan-item .category,
.tax-plan-tag .wd-plan-index .plan-item .category {
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item .category,
.single-plan .wd-plan-index .plan-item .category,
.tax-plan-category .wd-plan-index .plan-item .category,
.tax-plan-tag .wd-plan-index .plan-item .category {
    font-size: 2rem;
  }
}
.post-type-archive-plan .wd-plan-index .plan-item .category .category-item,
.single-plan .wd-plan-index .plan-item .category .category-item,
.tax-plan-category .wd-plan-index .plan-item .category .category-item,
.tax-plan-tag .wd-plan-index .plan-item .category .category-item {
  border-bottom: solid 2px #fff;
}
.post-type-archive-plan .wd-plan-index .plan-item .area_1,
.single-plan .wd-plan-index .plan-item .area_1,
.tax-plan-category .wd-plan-index .plan-item .area_1,
.tax-plan-tag .wd-plan-index .plan-item .area_1 {
  font-size: 2.8rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item .area_1,
.single-plan .wd-plan-index .plan-item .area_1,
.tax-plan-category .wd-plan-index .plan-item .area_1,
.tax-plan-tag .wd-plan-index .plan-item .area_1 {
    font-size: 1.6rem;
  }
}
.post-type-archive-plan .wd-plan-index .plan-item .area_2,
.single-plan .wd-plan-index .plan-item .area_2,
.tax-plan-category .wd-plan-index .plan-item .area_2,
.tax-plan-tag .wd-plan-index .plan-item .area_2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item .area_2,
.single-plan .wd-plan-index .plan-item .area_2,
.tax-plan-category .wd-plan-index .plan-item .area_2,
.tax-plan-tag .wd-plan-index .plan-item .area_2 {
    font-size: 1rem;
  }
}
.post-type-archive-plan .wd-plan-index .plan-item .name,
.single-plan .wd-plan-index .plan-item .name,
.tax-plan-category .wd-plan-index .plan-item .name,
.tax-plan-tag .wd-plan-index .plan-item .name {
  font-size: 1.2rem;
  color: #231815;
  background: #FFDC00;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item .name,
.single-plan .wd-plan-index .plan-item .name,
.tax-plan-category .wd-plan-index .plan-item .name,
.tax-plan-tag .wd-plan-index .plan-item .name {
    font-size: 1rem;
  }
}
.post-type-archive-plan .wd-plan-index .plan-item .thumbnail,
.single-plan .wd-plan-index .plan-item .thumbnail,
.tax-plan-category .wd-plan-index .plan-item .thumbnail,
.tax-plan-tag .wd-plan-index .plan-item .thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
.post-type-archive-plan .wd-plan-index .plan-item .thumbnail .item,
.single-plan .wd-plan-index .plan-item .thumbnail .item,
.tax-plan-category .wd-plan-index .plan-item .thumbnail .item,
.tax-plan-tag .wd-plan-index .plan-item .thumbnail .item {
  margin: 10px;
}
.post-type-archive-plan .wd-plan-index .plan-item .thumbnail img,
.single-plan .wd-plan-index .plan-item .thumbnail img,
.tax-plan-category .wd-plan-index .plan-item .thumbnail img,
.tax-plan-tag .wd-plan-index .plan-item .thumbnail img {
  width: 100%;
  height: auto;
}
.post-type-archive-plan .wd-plan-index .plan-item .member-box,
.single-plan .wd-plan-index .plan-item .member-box,
.tax-plan-category .wd-plan-index .plan-item .member-box,
.tax-plan-tag .wd-plan-index .plan-item .member-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-type-archive-plan .wd-plan-index .plan-item .member-box__title,
.single-plan .wd-plan-index .plan-item .member-box__title,
.tax-plan-category .wd-plan-index .plan-item .member-box__title,
.tax-plan-tag .wd-plan-index .plan-item .member-box__title {
  font-size: 2.6rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item .member-box__title,
.single-plan .wd-plan-index .plan-item .member-box__title,
.tax-plan-category .wd-plan-index .plan-item .member-box__title,
.tax-plan-tag .wd-plan-index .plan-item .member-box__title {
    font-size: 1.8rem;
  }
}
.post-type-archive-plan .wd-plan-index .plan-item .member-box__message,
.single-plan .wd-plan-index .plan-item .member-box__message,
.tax-plan-category .wd-plan-index .plan-item .member-box__message,
.tax-plan-tag .wd-plan-index .plan-item .member-box__message {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item .member-box__message,
.single-plan .wd-plan-index .plan-item .member-box__message,
.tax-plan-category .wd-plan-index .plan-item .member-box__message,
.tax-plan-tag .wd-plan-index .plan-item .member-box__message {
    font-size: 1.2rem;
  }
}
.post-type-archive-plan .wd-plan-index .plan-item .member-box__buttons,
.single-plan .wd-plan-index .plan-item .member-box__buttons,
.tax-plan-category .wd-plan-index .plan-item .member-box__buttons,
.tax-plan-tag .wd-plan-index .plan-item .member-box__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item .member-box__buttons,
.single-plan .wd-plan-index .plan-item .member-box__buttons,
.tax-plan-category .wd-plan-index .plan-item .member-box__buttons,
.tax-plan-tag .wd-plan-index .plan-item .member-box__buttons {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.post-type-archive-plan .wd-plan-index .plan-item .member-box__buttons .button,
.single-plan .wd-plan-index .plan-item .member-box__buttons .button,
.tax-plan-category .wd-plan-index .plan-item .member-box__buttons .button,
.tax-plan-tag .wd-plan-index .plan-item .member-box__buttons .button {
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-index .plan-item .member-box__buttons .button,
.single-plan .wd-plan-index .plan-item .member-box__buttons .button,
.tax-plan-category .wd-plan-index .plan-item .member-box__buttons .button,
.tax-plan-tag .wd-plan-index .plan-item .member-box__buttons .button {
    margin: 0 2px;
  }
}
.post-type-archive-plan .wd-plan-archive__inner,
.single-plan .wd-plan-archive__inner,
.tax-plan-category .wd-plan-archive__inner,
.tax-plan-tag .wd-plan-archive__inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive__inner,
.single-plan .wd-plan-archive__inner,
.tax-plan-category .wd-plan-archive__inner,
.tax-plan-tag .wd-plan-archive__inner {
    padding: 0 20px;
  }
}
.post-type-archive-plan .wd-plan-archive .plan-archive-item,
.single-plan .wd-plan-archive .plan-archive-item,
.tax-plan-category .wd-plan-archive .plan-archive-item,
.tax-plan-tag .wd-plan-archive .plan-archive-item {
  position: relative;
  margin-bottom: 40px;
  background: url(./assets/img/pc/plan/plan_img_plan.png) left top/198px auto no-repeat;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .plan-archive-item,
.single-plan .wd-plan-archive .plan-archive-item,
.tax-plan-category .wd-plan-archive .plan-archive-item,
.tax-plan-tag .wd-plan-archive .plan-archive-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 20px;
    background: url(./assets/img/pc/plan/plan_img_plan.png) left top/99px auto no-repeat;
  }
}
.post-type-archive-plan .wd-plan-archive .plan-archive-item .meta,
.single-plan .wd-plan-archive .plan-archive-item .meta,
.tax-plan-category .wd-plan-archive .plan-archive-item .meta,
.tax-plan-tag .wd-plan-archive .plan-archive-item .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .plan-archive-item .meta,
.single-plan .wd-plan-archive .plan-archive-item .meta,
.tax-plan-category .wd-plan-archive .plan-archive-item .meta,
.tax-plan-tag .wd-plan-archive .plan-archive-item .meta {
    margin-bottom: 20px;
  }
}
.post-type-archive-plan .wd-plan-archive .plan-archive-item .meta .area,
.single-plan .wd-plan-archive .plan-archive-item .meta .area,
.tax-plan-category .wd-plan-archive .plan-archive-item .meta .area,
.tax-plan-tag .wd-plan-archive .plan-archive-item .meta .area {
  font-size: 4.5rem;
  font-weight: bold;
  color: #009EC0;
  border-bottom: solid 2px #009EC0;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .plan-archive-item .meta .area,
.single-plan .wd-plan-archive .plan-archive-item .meta .area,
.tax-plan-category .wd-plan-archive .plan-archive-item .meta .area,
.tax-plan-tag .wd-plan-archive .plan-archive-item .meta .area {
    font-size: 2.2rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33%;
            flex: 0 1 33%;
  }
}
.post-type-archive-plan .wd-plan-archive .plan-archive-item .meta .title,
.single-plan .wd-plan-archive .plan-archive-item .meta .title,
.tax-plan-category .wd-plan-archive .plan-archive-item .meta .title,
.tax-plan-tag .wd-plan-archive .plan-archive-item .meta .title {
  font-size: 1.8rem;
  line-height: 1;
  color: #231815;
  background: #FBC200;
  border-radius: 4px;
  padding: 4px 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .plan-archive-item .meta .title,
.single-plan .wd-plan-archive .plan-archive-item .meta .title,
.tax-plan-category .wd-plan-archive .plan-archive-item .meta .title,
.tax-plan-tag .wd-plan-archive .plan-archive-item .meta .title {
    font-size: 1rem;
  }
}
.post-type-archive-plan .wd-plan-archive .plan-archive-item .catch,
.single-plan .wd-plan-archive .plan-archive-item .catch,
.tax-plan-category .wd-plan-archive .plan-archive-item .catch,
.tax-plan-tag .wd-plan-archive .plan-archive-item .catch {
  font-size: 2.4rem;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .plan-archive-item .catch,
.single-plan .wd-plan-archive .plan-archive-item .catch,
.tax-plan-category .wd-plan-archive .plan-archive-item .catch,
.tax-plan-tag .wd-plan-archive .plan-archive-item .catch {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.post-type-archive-plan .wd-plan-archive .plan-archive-item .thumbnail,
.single-plan .wd-plan-archive .plan-archive-item .thumbnail,
.tax-plan-category .wd-plan-archive .plan-archive-item .thumbnail,
.tax-plan-tag .wd-plan-archive .plan-archive-item .thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .plan-archive-item .thumbnail,
.single-plan .wd-plan-archive .plan-archive-item .thumbnail,
.tax-plan-category .wd-plan-archive .plan-archive-item .thumbnail,
.tax-plan-tag .wd-plan-archive .plan-archive-item .thumbnail {
    display: block;
  }
}
.post-type-archive-plan .wd-plan-archive .plan-archive-item .thumbnail .item,
.single-plan .wd-plan-archive .plan-archive-item .thumbnail .item,
.tax-plan-category .wd-plan-archive .plan-archive-item .thumbnail .item,
.tax-plan-tag .wd-plan-archive .plan-archive-item .thumbnail .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .plan-archive-item .thumbnail .item:not(:last-of-type),
.single-plan .wd-plan-archive .plan-archive-item .thumbnail .item:not(:last-of-type),
.tax-plan-category .wd-plan-archive .plan-archive-item .thumbnail .item:not(:last-of-type),
.tax-plan-tag .wd-plan-archive .plan-archive-item .thumbnail .item:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.post-type-archive-plan .wd-plan-archive .plan-archive-item .thumbnail img,
.single-plan .wd-plan-archive .plan-archive-item .thumbnail img,
.tax-plan-category .wd-plan-archive .plan-archive-item .thumbnail img,
.tax-plan-tag .wd-plan-archive .plan-archive-item .thumbnail img {
  width: 100%;
  height: auto;
}
.post-type-archive-plan .wd-plan-archive .outline,
.single-plan .wd-plan-archive .outline,
.tax-plan-category .wd-plan-archive .outline,
.tax-plan-tag .wd-plan-archive .outline {
  margin-bottom: 50px;
}
.post-type-archive-plan .wd-plan-archive .outline__title,
.single-plan .wd-plan-archive .outline__title,
.tax-plan-category .wd-plan-archive .outline__title,
.tax-plan-tag .wd-plan-archive .outline__title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #646464;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .outline__title,
.single-plan .wd-plan-archive .outline__title,
.tax-plan-category .wd-plan-archive .outline__title,
.tax-plan-tag .wd-plan-archive .outline__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.post-type-archive-plan .wd-plan-archive .outline__table,
.single-plan .wd-plan-archive .outline__table,
.tax-plan-category .wd-plan-archive .outline__table,
.tax-plan-tag .wd-plan-archive .outline__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
}
.post-type-archive-plan .wd-plan-archive .outline__table th,
.single-plan .wd-plan-archive .outline__table th,
.tax-plan-category .wd-plan-archive .outline__table th,
.tax-plan-tag .wd-plan-archive .outline__table th {
  border-bottom: solid 1px #000;
  width: 20%;
  padding: 10px;
  color: #fff;
  background: #19B4C3;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .outline__table th,
.single-plan .wd-plan-archive .outline__table th,
.tax-plan-category .wd-plan-archive .outline__table th,
.tax-plan-tag .wd-plan-archive .outline__table th {
    padding: 5px;
    font-size: 1rem;
  }
}
.post-type-archive-plan .wd-plan-archive .outline__table td,
.single-plan .wd-plan-archive .outline__table td,
.tax-plan-category .wd-plan-archive .outline__table td,
.tax-plan-tag .wd-plan-archive .outline__table td {
  border-bottom: solid 1px #000;
  padding: 10px;
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .outline__table td,
.single-plan .wd-plan-archive .outline__table td,
.tax-plan-category .wd-plan-archive .outline__table td,
.tax-plan-tag .wd-plan-archive .outline__table td {
    padding: 5px;
    font-size: 1rem;
  }
}
.post-type-archive-plan .wd-plan-archive .outline__table .status-wrapper,
.single-plan .wd-plan-archive .outline__table .status-wrapper,
.tax-plan-category .wd-plan-archive .outline__table .status-wrapper,
.tax-plan-tag .wd-plan-archive .outline__table .status-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-type-archive-plan .wd-plan-archive .outline__table .status-wrapper .status,
.single-plan .wd-plan-archive .outline__table .status-wrapper .status,
.tax-plan-category .wd-plan-archive .outline__table .status-wrapper .status,
.tax-plan-tag .wd-plan-archive .outline__table .status-wrapper .status {
  margin-right: 20px;
  padding: 5px 10px;
  color: #fff;
  font-size: 1.2rem;
}
.post-type-archive-plan .wd-plan-archive .outline__table .status-wrapper .status.plan_status_1,
.single-plan .wd-plan-archive .outline__table .status-wrapper .status.plan_status_1,
.tax-plan-category .wd-plan-archive .outline__table .status-wrapper .status.plan_status_1,
.tax-plan-tag .wd-plan-archive .outline__table .status-wrapper .status.plan_status_1 {
  background: #6EBA2C;
}
.post-type-archive-plan .wd-plan-archive .outline .note,
.single-plan .wd-plan-archive .outline .note,
.tax-plan-category .wd-plan-archive .outline .note,
.tax-plan-tag .wd-plan-archive .outline .note {
  font-size: 1.6rem;
  color: #646464;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-archive .outline .note,
.single-plan .wd-plan-archive .outline .note,
.tax-plan-category .wd-plan-archive .outline .note,
.tax-plan-tag .wd-plan-archive .outline .note {
    font-size: 1rem;
  }
}
.post-type-archive-plan .wd-plan-archive .outline .button-box,
.single-plan .wd-plan-archive .outline .button-box,
.tax-plan-category .wd-plan-archive .outline .button-box,
.tax-plan-tag .wd-plan-archive .outline .button-box {
  max-width: 500px;
  margin: 100px auto 0;
}
.post-type-archive-plan .wd-plan-member-entry,
.single-plan .wd-plan-member-entry,
.tax-plan-category .wd-plan-member-entry,
.tax-plan-tag .wd-plan-member-entry {
  background: #F0F0F0;
  margin-bottom: 60px;
}
.post-type-archive-plan .wd-plan-member-entry .member-entry-header,
.single-plan .wd-plan-member-entry .member-entry-header,
.tax-plan-category .wd-plan-member-entry .member-entry-header,
.tax-plan-tag .wd-plan-member-entry .member-entry-header {
  padding: 40px 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-member-entry .member-entry-header,
.single-plan .wd-plan-member-entry .member-entry-header,
.tax-plan-category .wd-plan-member-entry .member-entry-header,
.tax-plan-tag .wd-plan-member-entry .member-entry-header {
    padding: 20px;
  }
}
.post-type-archive-plan .wd-plan-member-entry .member-entry-heading1,
.single-plan .wd-plan-member-entry .member-entry-heading1,
.tax-plan-category .wd-plan-member-entry .member-entry-heading1,
.tax-plan-tag .wd-plan-member-entry .member-entry-heading1 {
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-member-entry .member-entry-heading1,
.single-plan .wd-plan-member-entry .member-entry-heading1,
.tax-plan-category .wd-plan-member-entry .member-entry-heading1,
.tax-plan-tag .wd-plan-member-entry .member-entry-heading1 {
    font-size: 1.5rem;
  }
}
.post-type-archive-plan .wd-plan-member-entry .member-entry-heading2,
.single-plan .wd-plan-member-entry .member-entry-heading2,
.tax-plan-category .wd-plan-member-entry .member-entry-heading2,
.tax-plan-tag .wd-plan-member-entry .member-entry-heading2 {
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-member-entry .member-entry-heading2,
.single-plan .wd-plan-member-entry .member-entry-heading2,
.tax-plan-category .wd-plan-member-entry .member-entry-heading2,
.tax-plan-tag .wd-plan-member-entry .member-entry-heading2 {
    font-size: 1.2rem;
  }
}
.post-type-archive-plan .wd-plan-member-entry .member-entry-body,
.single-plan .wd-plan-member-entry .member-entry-body,
.tax-plan-category .wd-plan-member-entry .member-entry-body,
.tax-plan-tag .wd-plan-member-entry .member-entry-body {
  background: url(./assets/img/pc/plan/plan_member_img_1.png) center bottom/565px auto no-repeat;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-member-entry .member-entry-body,
.single-plan .wd-plan-member-entry .member-entry-body,
.tax-plan-category .wd-plan-member-entry .member-entry-body,
.tax-plan-tag .wd-plan-member-entry .member-entry-body {
    background: url(./assets/img/pc/plan/plan_member_img_1.png) center bottom/100% auto no-repeat;
    margin: 0 20px;
  }
}
.post-type-archive-plan .wd-plan-member-entry .member-entry-body__buttons,
.single-plan .wd-plan-member-entry .member-entry-body__buttons,
.tax-plan-category .wd-plan-member-entry .member-entry-body__buttons,
.tax-plan-tag .wd-plan-member-entry .member-entry-body__buttons {
  max-width: 540px;
  margin: auto;
  padding: 160px 0;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-member-entry .member-entry-body__buttons,
.single-plan .wd-plan-member-entry .member-entry-body__buttons,
.tax-plan-category .wd-plan-member-entry .member-entry-body__buttons,
.tax-plan-tag .wd-plan-member-entry .member-entry-body__buttons {
    padding: 70px 0;
  }
}
.post-type-archive-plan .wd-plan-member-entry .member-entry-body__buttons .button:not(:last-of-type),
.single-plan .wd-plan-member-entry .member-entry-body__buttons .button:not(:last-of-type),
.tax-plan-category .wd-plan-member-entry .member-entry-body__buttons .button:not(:last-of-type),
.tax-plan-tag .wd-plan-member-entry .member-entry-body__buttons .button:not(:last-of-type) {
  margin-bottom: 20px;
}
.post-type-archive-plan .wd-plan-catch,
.single-plan .wd-plan-catch,
.tax-plan-category .wd-plan-catch,
.tax-plan-tag .wd-plan-catch {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-catch,
.single-plan .wd-plan-catch,
.tax-plan-category .wd-plan-catch,
.tax-plan-tag .wd-plan-catch {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.post-type-archive-plan .wd-plan-catch__inner,
.single-plan .wd-plan-catch__inner,
.tax-plan-category .wd-plan-catch__inner,
.tax-plan-tag .wd-plan-catch__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  font-size: 2.4rem;
  background: url(./assets/img/pc/plan/plan_img_plan.png) right bottom/198px auto no-repeat;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-plan .wd-plan-catch__inner,
.single-plan .wd-plan-catch__inner,
.tax-plan-category .wd-plan-catch__inner,
.tax-plan-tag .wd-plan-catch__inner {
    font-size: 1.2rem;
    background: url(./assets/img/pc/plan/plan_img_plan.png) right bottom/99px auto no-repeat;
  }
}
.post-type-archive-plan .wd-plan-catch__inner .catch-text,
.single-plan .wd-plan-catch__inner .catch-text,
.tax-plan-category .wd-plan-catch__inner .catch-text,
.tax-plan-tag .wd-plan-catch__inner .catch-text {
  padding-bottom: 40px;
}

.page-template-default .wd-news-index__inner,
.post-template-default .wd-news-index__inner,
.archive .wd-news-index__inner,
.category .wd-news-index__inner {
  max-width: 1000px;
  margin: auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-index__inner,
.post-template-default .wd-news-index__inner,
.archive .wd-news-index__inner,
.category .wd-news-index__inner {
    padding: 0 20px;
  }
}
.page-template-default .wd-news-index .news-item-wrapper,
.post-template-default .wd-news-index .news-item-wrapper,
.archive .wd-news-index .news-item-wrapper,
.category .wd-news-index .news-item-wrapper {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-index .news-item-wrapper,
.post-template-default .wd-news-index .news-item-wrapper,
.archive .wd-news-index .news-item-wrapper,
.category .wd-news-index .news-item-wrapper {
    margin-bottom: 50px;
  }
}
.page-template-default .wd-news-index .news-item-wrapper__inner,
.post-template-default .wd-news-index .news-item-wrapper__inner,
.archive .wd-news-index .news-item-wrapper__inner,
.category .wd-news-index .news-item-wrapper__inner {
  border-bottom: solid 1px #898888;
}
.page-template-default .wd-news-index .news-item,
.post-template-default .wd-news-index .news-item,
.archive .wd-news-index .news-item,
.category .wd-news-index .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 20px 0;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-index .news-item,
.post-template-default .wd-news-index .news-item,
.archive .wd-news-index .news-item,
.category .wd-news-index .news-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 10px;
  }
}
.page-template-default .wd-news-index .news-item::after,
.post-template-default .wd-news-index .news-item::after,
.archive .wd-news-index .news-item::after,
.category .wd-news-index .news-item::after {
  position: absolute;
  top: 50%;
  right: 5px;
  content: "";
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-index .news-item::after,
.post-template-default .wd-news-index .news-item::after,
.archive .wd-news-index .news-item::after,
.category .wd-news-index .news-item::after {
    display: none;
  }
}
.page-template-default .wd-news-index .news-item .thumbnail,
.post-template-default .wd-news-index .news-item .thumbnail,
.archive .wd-news-index .news-item .thumbnail,
.category .wd-news-index .news-item .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  max-width: 200px;
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-index .news-item .thumbnail,
.post-template-default .wd-news-index .news-item .thumbnail,
.archive .wd-news-index .news-item .thumbnail,
.category .wd-news-index .news-item .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
    max-width: 110px;
  }
}
.page-template-default .wd-news-index .news-item .thumbnail img,
.post-template-default .wd-news-index .news-item .thumbnail img,
.archive .wd-news-index .news-item .thumbnail img,
.category .wd-news-index .news-item .thumbnail img {
  max-width: 100%;
  height: auto;
}
.page-template-default .wd-news-index .news-item .detail,
.post-template-default .wd-news-index .news-item .detail,
.archive .wd-news-index .news-item .detail,
.category .wd-news-index .news-item .detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.page-template-default .wd-news-index .news-item .detail .detail-inner,
.post-template-default .wd-news-index .news-item .detail .detail-inner,
.archive .wd-news-index .news-item .detail .detail-inner,
.category .wd-news-index .news-item .detail .detail-inner {
  padding: 0 20px 0 20px;
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-index .news-item .detail .detail-inner,
.post-template-default .wd-news-index .news-item .detail .detail-inner,
.archive .wd-news-index .news-item .detail .detail-inner,
.category .wd-news-index .news-item .detail .detail-inner {
    padding: 0 20px 0 20px;
  }
}
.page-template-default .wd-news-index .news-item .detail .date,
.post-template-default .wd-news-index .news-item .detail .date,
.archive .wd-news-index .news-item .detail .date,
.category .wd-news-index .news-item .detail .date {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-index .news-item .detail .date,
.post-template-default .wd-news-index .news-item .detail .date,
.archive .wd-news-index .news-item .detail .date,
.category .wd-news-index .news-item .detail .date {
    font-size: 1rem;
  }
}
.page-template-default .wd-news-index .news-item .detail .title,
.post-template-default .wd-news-index .news-item .detail .title,
.archive .wd-news-index .news-item .detail .title,
.category .wd-news-index .news-item .detail .title {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-index .news-item .detail .title,
.post-template-default .wd-news-index .news-item .detail .title,
.archive .wd-news-index .news-item .detail .title,
.category .wd-news-index .news-item .detail .title {
    font-size: 1.4rem;
  }
}
.page-template-default .wd-news-index .news-item .detail .icon-new,
.post-template-default .wd-news-index .news-item .detail .icon-new,
.archive .wd-news-index .news-item .detail .icon-new,
.category .wd-news-index .news-item .detail .icon-new {
  color: #E60012;
}
.page-template-default .wd-news-archive__inner,
.post-template-default .wd-news-archive__inner,
.archive .wd-news-archive__inner,
.category .wd-news-archive__inner {
  max-width: 860px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-archive__inner,
.post-template-default .wd-news-archive__inner,
.archive .wd-news-archive__inner,
.category .wd-news-archive__inner {
    padding: 0 20px;
    margin-bottom: 50px;
  }
}
.page-template-default .wd-news-archive .news-archive-item-wrapper,
.post-template-default .wd-news-archive .news-archive-item-wrapper,
.archive .wd-news-archive .news-archive-item-wrapper,
.category .wd-news-archive .news-archive-item-wrapper {
  margin-bottom: 100px;
}
.page-template-default .wd-news-archive .archive-title,
.post-template-default .wd-news-archive .archive-title,
.archive .wd-news-archive .archive-title,
.category .wd-news-archive .archive-title {
  margin-bottom: 4rem;
}
.page-template-default .wd-news-archive .archive-thumbnail,
.post-template-default .wd-news-archive .archive-thumbnail,
.archive .wd-news-archive .archive-thumbnail,
.category .wd-news-archive .archive-thumbnail {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .page-template-default .wd-news-archive .archive-thumbnail,
.post-template-default .wd-news-archive .archive-thumbnail,
.archive .wd-news-archive .archive-thumbnail,
.category .wd-news-archive .archive-thumbnail {
    margin-bottom: 20px;
  }
}
.page-template-default .wd-news-archive .archive-thumbnail img,
.post-template-default .wd-news-archive .archive-thumbnail img,
.archive .wd-news-archive .archive-thumbnail img,
.category .wd-news-archive .archive-thumbnail img {
  max-width: 100%;
  height: auto;
}
.page-template-default .wd-news-archive .archive-body p:not(:last-of-type),
.post-template-default .wd-news-archive .archive-body p:not(:last-of-type),
.archive .wd-news-archive .archive-body p:not(:last-of-type),
.category .wd-news-archive .archive-body p:not(:last-of-type) {
  margin-bottom: 1em;
}
.page-template-default .wd-news-archive .button-box,
.post-template-default .wd-news-archive .button-box,
.archive .wd-news-archive .button-box,
.category .wd-news-archive .button-box {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.page-concept .common-main {
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .page-concept .common-main {
    max-width: 640px;
    padding: 0 20px;
  }
}
.page-concept .concept-header {
  position: relative;
  text-align: center;
}
.page-concept .concept-header::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: -370px;
  right: 0;
  background: url("./assets/img/pc/concept/concept_img_2.png") center center/cover no-repeat;
  width: 506px;
  height: 523px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-header::after {
    display: none;
  }
}
.page-concept .concept-section-1 {
  text-align: center;
  padding: 100px 20px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-1 {
    padding: 40px 20px;
  }
}
.page-concept .concept-section-2 {
  border-top: 3px solid #1a1311;
  border-left: 3px solid #1a1311;
  border-right: 3px solid #19b4c3;
  border-bottom: 3px solid #19b4c3;
  padding: 40px 40px 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-2 {
    padding: 20px 20px 10px;
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-2 .section-title-1 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-2 .section-title-1 {
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-2 .section-text-1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-2 .section-text-1 {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-2 .section-list-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-2 .section-list-style {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-2 .section-list-style > li {
  margin: 0 2px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-2 .section-list-style > li {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 49%;
            flex: 0 1 49%;
    text-align: center;
  }
}
.page-concept .concept-section-3 {
  border-top: 3px solid #1a1311;
  border-left: 3px solid #1a1311;
  border-right: 3px solid #19b4c3;
  border-bottom: 3px solid #19b4c3;
  padding: 40px 40px 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-3 {
    padding: 20px 20px 10px;
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-3::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50px;
  right: 10px;
  background: url("./assets/img/pc/concept/concept_img_6.png") center center/cover no-repeat;
  width: 246px;
  height: 137px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-3::after {
    top: 130px;
    width: 123px;
    height: 69px;
  }
}
.page-concept .concept-section-3 .section-title-1 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-3 .section-title-1 {
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-3 .section-text-1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-3 .section-text-1 {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-3 .section-image-7 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-3 .section-image-7 {
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-4 {
  border-top: 3px solid #1a1311;
  border-left: 3px solid #1a1311;
  border-right: 3px solid #19b4c3;
  border-bottom: 3px solid #19b4c3;
  padding: 40px 40px 30px;
  margin-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-4 {
    padding: 20px 20px 10px;
    margin-bottom: 120px;
  }
}
.page-concept .concept-section-4 .section-title-1 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-4 .section-title-1 {
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-4 .section-text-1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-4 .section-text-1 {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-4 .section-image-9 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-4 .section-image-9 {
    margin-bottom: 30px;
  }
}
.page-concept .concept-section-point {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point:nth-of-type(odd) .section-icon-1 {
    margin-left: -20px;
  }
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point:nth-of-type(even) .section-icon-1 {
    margin-right: -20px;
  }
}
.page-concept .concept-section-point .concept-section-point__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point .concept-section-point__header {
    display: block;
    margin-bottom: 20px;
  }
}
.page-concept .concept-section-point .concept-section-point__header .section-icon-1 {
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point .concept-section-point__header .section-icon-1 {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point .concept-section-point__header .section-icon-1 img {
    width: 100%;
  }
}
.page-concept .concept-section-point .concept-section-point__header .section-title-1 {
  font-size: 2.4rem;
  padding-left: 1em;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point .concept-section-point__header .section-title-1 {
    font-size: 1.1rem;
  }
}
.page-concept .concept-section-point .concept-section-point__header .section-title-2 {
  font-size: 4.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point .concept-section-point__header .section-title-2 {
    font-size: 2rem;
  }
}
.page-concept .concept-section-point .concept-section-point__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point .concept-section-point__body {
    display: block;
  }
}
.page-concept .concept-section-point .concept-section-point__body .body-primary {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.page-concept .concept-section-point .concept-section-point__body .body-secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point .concept-section-point__body .body-secondary {
    display: none;
  }
}
.page-concept .concept-section-point .concept-section-point__body .section-text-1 {
  font-size: 2rem;
  font-weight: 200;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-point .concept-section-point__body .section-text-1 {
    font-size: 1.2rem;
  }
}
.page-concept .concept-section-point .concept-section-point__body .section-text-1 strong {
  font-weight: 500;
}
.page-concept .concept-section-designer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 120px;
  background: #eee;
  padding: 20px 0 20px 20px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-designer {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 2%;
    margin-bottom: 60px;
  }
}
.page-concept .concept-section-designer .designer-primary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-designer .designer-primary {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 52%;
            flex: 0 1 52%;
  }
}
.page-concept .concept-section-designer .designer-secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 310px;
          flex: 0 0 310px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-designer .designer-secondary {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 44%;
            flex: 0 1 44%;
  }
}
.page-concept .concept-section-designer .profile .profile__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: -20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-designer .profile .profile__header {
    display: block;
    margin-left: -2%;
    margin-bottom: 10px;
  }
}
.page-concept .concept-section-designer .section-title-1 {
  color: #fff;
  background: #19b2c1;
  padding: 2px 50px 2px 20px;
  font-size: 2.3rem;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-designer .section-title-1 {
    padding: 2px 20px 2px 20px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.page-concept .concept-section-designer .section-title-2 {
  font-size: 2.5rem;
  font-weight: 200;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-designer .section-title-2 {
    font-size: 1rem;
    text-align: left;
    padding-left: 2%;
  }
}
.page-concept .concept-section-designer .section-title-2 > strong {
  font-weight: 500;
}
.page-concept .concept-section-designer .section-text-1 {
  font-size: 1.5rem;
  font-weight: 200;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-designer .section-text-1 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .page-concept .concept-section-designer .section-text-1 {
    font-size: 2.4vw;
  }
}
.page-concept .concept-section-designer .section-image-1 {
  padding: 0 40px;
  margin-top: -80px;
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-designer .section-image-1 {
    padding: 0;
    margin-top: 0;
    text-align: right;
  }
}
@media screen and (max-width: 1024px) {
  .page-concept .concept-section-designer .section-image-1 img {
    width: 100%;
  }
}

.post-type-archive-gallery-voice .wd-gallery-voice-index,
.single-gallery-voice .wd-gallery-voice-index,
.tax-gallery-voice-category .wd-gallery-voice-index {
  background: #e6f4f6;
  padding: 10px 0 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-gallery-voice-index,
.single-gallery-voice .wd-gallery-voice-index,
.tax-gallery-voice-category .wd-gallery-voice-index {
    margin-bottom: 20px;
  }
}
.post-type-archive-gallery-voice .wd-gallery-voice-index__inner,
.single-gallery-voice .wd-gallery-voice-index__inner,
.tax-gallery-voice-category .wd-gallery-voice-index__inner {
  max-width: 860px;
  margin: auto;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item-wrapper,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item-wrapper,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
  position: relative;
  padding-top: 90px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 20px;
    margin-bottom: 0;
    border-bottom: solid 40px #fff;
  }
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item:nth-of-type(odd) .number,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item:nth-of-type(odd) .number,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item:nth-of-type(odd) .number {
  left: 40px;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item:nth-of-type(even) .number,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item:nth-of-type(even) .number,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item:nth-of-type(even) .number {
  right: 40px;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header {
    position: static;
  }
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .thumb img,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .thumb img,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .thumb img {
  width: 100%;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number {
  position: absolute;
  top: -60px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number {
    top: -20px;
  }
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number img,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number img,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number img {
  width: 224px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number img,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number img,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-header .number img {
    width: 127px;
  }
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -40px;
  margin-bottom: 20px;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .body-primary,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .body-primary,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .body-primary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 58%;
          flex: 0 1 58%;
  margin-bottom: 10px;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .body-secondary,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .body-secondary,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .body-secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .title,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .title,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .title {
  font-size: 1.8rem;
  padding: 50px 0 0;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .title,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .title,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .title {
    font-size: 1.4rem;
  }
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .icon,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .icon,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .icon {
  width: 120px;
  height: 120px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  border: solid 2px #fff;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .icon img,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .icon img,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item__thumbnail .thumbnail-body .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item .archive-content,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item .archive-content,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item .archive-content {
  font-size: 1.6rem;
  text-align: left;
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item .archive-content,
.single-gallery-voice .wd-gallery-voice-index .wd-index-item .archive-content,
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item .archive-content {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.post-type-archive-gallery-voice .wd-gallery-voice-index .wd-index-item .archive-content p:not(:last-of-type),
.single-gallery-voice .wd-gallery-voice-index .wd-index-item .archive-content p:not(:last-of-type),
.tax-gallery-voice-category .wd-gallery-voice-index .wd-index-item .archive-content p:not(:last-of-type) {
  margin-bottom: 1em;
}
.post-type-archive-gallery-voice .common-main,
.single-gallery-voice .common-main,
.tax-gallery-voice-category .common-main {
  background: #D4EFF1;
}
.post-type-archive-gallery-voice .wd-detail-header,
.single-gallery-voice .wd-detail-header,
.tax-gallery-voice-category .wd-detail-header {
  position: relative;
  padding-top: 90px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-header,
.single-gallery-voice .wd-detail-header,
.tax-gallery-voice-category .wd-detail-header {
    text-align: center;
    margin-bottom: 40px;
  }
}
.post-type-archive-gallery-voice .wd-detail-header__thumbnail,
.single-gallery-voice .wd-detail-header__thumbnail,
.tax-gallery-voice-category .wd-detail-header__thumbnail {
  margin-bottom: 90px;
}
.post-type-archive-gallery-voice .wd-detail-header__thumbnail .thumbnail-body,
.single-gallery-voice .wd-detail-header__thumbnail .thumbnail-body,
.tax-gallery-voice-category .wd-detail-header__thumbnail .thumbnail-body {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-header__thumbnail .thumbnail-body .thumb,
.single-gallery-voice .wd-detail-header__thumbnail .thumbnail-body .thumb,
.tax-gallery-voice-category .wd-detail-header__thumbnail .thumbnail-body .thumb {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.post-type-archive-gallery-voice .wd-detail-header__thumbnail .thumbnail-body .thumb img,
.single-gallery-voice .wd-detail-header__thumbnail .thumbnail-body .thumb img,
.tax-gallery-voice-category .wd-detail-header__thumbnail .thumbnail-body .thumb img {
  width: 100%;
}
.post-type-archive-gallery-voice .wd-detail-header__thumbnail .number,
.single-gallery-voice .wd-detail-header__thumbnail .number,
.tax-gallery-voice-category .wd-detail-header__thumbnail .number {
  position: absolute;
  top: -60px;
  left: 40px;
}
.post-type-archive-gallery-voice .wd-detail-header__thumbnail .number img,
.single-gallery-voice .wd-detail-header__thumbnail .number img,
.tax-gallery-voice-category .wd-detail-header__thumbnail .number img {
  width: 224px;
}
.post-type-archive-gallery-voice .wd-detail-header__mv,
.single-gallery-voice .wd-detail-header__mv,
.tax-gallery-voice-category .wd-detail-header__mv {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-header__mv,
.single-gallery-voice .wd-detail-header__mv,
.tax-gallery-voice-category .wd-detail-header__mv {
    bottom: -80px;
  }
}
.post-type-archive-gallery-voice .wd-detail-header__mv .icon,
.single-gallery-voice .wd-detail-header__mv .icon,
.tax-gallery-voice-category .wd-detail-header__mv .icon {
  width: 120px;
  height: 120px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  border: solid 2px #fff;
}
.post-type-archive-gallery-voice .wd-detail-header__mv .icon img,
.single-gallery-voice .wd-detail-header__mv .icon img,
.tax-gallery-voice-category .wd-detail-header__mv .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-type-archive-gallery-voice .wd-detail-header__title,
.single-gallery-voice .wd-detail-header__title,
.tax-gallery-voice-category .wd-detail-header__title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-header__title,
.single-gallery-voice .wd-detail-header__title,
.tax-gallery-voice-category .wd-detail-header__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.post-type-archive-gallery-voice .wd-detail-header__name,
.single-gallery-voice .wd-detail-header__name,
.tax-gallery-voice-category .wd-detail-header__name {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-header__name,
.single-gallery-voice .wd-detail-header__name,
.tax-gallery-voice-category .wd-detail-header__name {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.post-type-archive-gallery-voice .wd-detail-header .archive-content,
.single-gallery-voice .wd-detail-header .archive-content,
.tax-gallery-voice-category .wd-detail-header .archive-content {
  font-size: 1.6rem;
  text-align: left;
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-header .archive-content,
.single-gallery-voice .wd-detail-header .archive-content,
.tax-gallery-voice-category .wd-detail-header .archive-content {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.post-type-archive-gallery-voice .wd-detail-header .archive-content p:not(:last-of-type),
.single-gallery-voice .wd-detail-header .archive-content p:not(:last-of-type),
.tax-gallery-voice-category .wd-detail-header .archive-content p:not(:last-of-type) {
  margin-bottom: 1em;
}
.post-type-archive-gallery-voice .wd-detail-body .item,
.single-gallery-voice .wd-detail-body .item,
.tax-gallery-voice-category .wd-detail-body .item {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-body .item,
.single-gallery-voice .wd-detail-body .item,
.tax-gallery-voice-category .wd-detail-body .item {
    margin-bottom: 30px;
  }
}
.post-type-archive-gallery-voice .wd-detail-body .item .image,
.single-gallery-voice .wd-detail-body .item .image,
.tax-gallery-voice-category .wd-detail-body .item .image {
  margin-bottom: 20px;
}
.post-type-archive-gallery-voice .wd-detail-body .item .image.mb-0,
.single-gallery-voice .wd-detail-body .item .image.mb-0,
.tax-gallery-voice-category .wd-detail-body .item .image.mb-0 {
  margin-bottom: 0;
}
.post-type-archive-gallery-voice .wd-detail-body .item .title,
.single-gallery-voice .wd-detail-body .item .title,
.tax-gallery-voice-category .wd-detail-body .item .title {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-body .item .title,
.single-gallery-voice .wd-detail-body .item .title,
.tax-gallery-voice-category .wd-detail-body .item .title {
    font-size: 1.6rem;
  }
}
.post-type-archive-gallery-voice .wd-detail-body .item .heading,
.single-gallery-voice .wd-detail-body .item .heading,
.tax-gallery-voice-category .wd-detail-body .item .heading {
  font-size: 3.5rem;
  font-weight: bold;
  color: #0AC0CE;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-body .item .heading,
.single-gallery-voice .wd-detail-body .item .heading,
.tax-gallery-voice-category .wd-detail-body .item .heading {
    font-size: 2rem;
  }
}
.post-type-archive-gallery-voice .wd-detail-body .item .heading:first-letter,
.single-gallery-voice .wd-detail-body .item .heading:first-letter,
.tax-gallery-voice-category .wd-detail-body .item .heading:first-letter {
  font-size: 130%;
}
.post-type-archive-gallery-voice .wd-detail-body .item .text,
.single-gallery-voice .wd-detail-body .item .text,
.tax-gallery-voice-category .wd-detail-body .item .text {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-body .item .text,
.single-gallery-voice .wd-detail-body .item .text,
.tax-gallery-voice-category .wd-detail-body .item .text {
    font-size: 1.2rem;
  }
}
.post-type-archive-gallery-voice .wd-detail-body .item-1__header .image,
.single-gallery-voice .wd-detail-body .item-1__header .image,
.tax-gallery-voice-category .wd-detail-body .item-1__header .image {
  margin-left: -20px;
  margin-right: -20px;
}
.post-type-archive-gallery-voice .wd-detail-body .item-1__body .body-primary,
.single-gallery-voice .wd-detail-body .item-1__body .body-primary,
.tax-gallery-voice-category .wd-detail-body .item-1__body .body-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-type-archive-gallery-voice .wd-detail-body .item-1__body .body-primary .title,
.single-gallery-voice .wd-detail-body .item-1__body .body-primary .title,
.tax-gallery-voice-category .wd-detail-body .item-1__body .body-primary .title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.post-type-archive-gallery-voice .wd-detail-body .item-1__body .body-primary .image,
.single-gallery-voice .wd-detail-body .item-1__body .body-primary .image,
.tax-gallery-voice-category .wd-detail-body .item-1__body .body-primary .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-left: 1rem;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery-voice .wd-detail-body .item-1__body .body-primary .image img,
.single-gallery-voice .wd-detail-body .item-1__body .body-primary .image img,
.tax-gallery-voice-category .wd-detail-body .item-1__body .body-primary .image img {
    width: 274px;
  }
}
.post-type-archive-gallery-voice .wd-detail-body .item-2:nth-child(odd),
.single-gallery-voice .wd-detail-body .item-2:nth-child(odd),
.tax-gallery-voice-category .wd-detail-body .item-2:nth-child(odd) {
  margin-left: -20px;
}
.post-type-archive-gallery-voice .wd-detail-body .item-2:nth-child(even),
.single-gallery-voice .wd-detail-body .item-2:nth-child(even),
.tax-gallery-voice-category .wd-detail-body .item-2:nth-child(even) {
  margin-right: -20px;
}
.post-type-archive-gallery-voice .wd-detail-body .item-2__body,
.single-gallery-voice .wd-detail-body .item-2__body,
.tax-gallery-voice-category .wd-detail-body .item-2__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.post-type-archive-gallery-voice .wd-detail-body .item-2__body .body-primary,
.single-gallery-voice .wd-detail-body .item-2__body .body-primary,
.tax-gallery-voice-category .wd-detail-body .item-2__body .body-primary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 58%;
          flex: 0 1 58%;
}
.post-type-archive-gallery-voice .wd-detail-body .item-2__body .body-secondary,
.single-gallery-voice .wd-detail-body .item-2__body .body-secondary,
.tax-gallery-voice-category .wd-detail-body .item-2__body .body-secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}
.post-type-archive-column .wd-column-nav,
.single-column .wd-column-nav,
.tax-column-category .wd-column-nav,
.tax-column-tag .wd-column-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.post-type-archive-column .wd-column-nav .nav-item span,
.post-type-archive-column .wd-column-nav .nav-item a,
.single-column .wd-column-nav .nav-item span,
.single-column .wd-column-nav .nav-item a,
.tax-column-category .wd-column-nav .nav-item span,
.tax-column-category .wd-column-nav .nav-item a,
.tax-column-tag .wd-column-nav .nav-item span,
.tax-column-tag .wd-column-nav .nav-item a {
  font-size: 1.6rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  text-align: center;
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-nav .nav-item span,
.post-type-archive-column .wd-column-nav .nav-item a,
.single-column .wd-column-nav .nav-item span,
.single-column .wd-column-nav .nav-item a,
.tax-column-category .wd-column-nav .nav-item span,
.tax-column-category .wd-column-nav .nav-item a,
.tax-column-tag .wd-column-nav .nav-item span,
.tax-column-tag .wd-column-nav .nav-item a {
    font-size: 1rem;
    margin: 0 2px;
    width: 50px;
    height: 50px;
  }
}
.post-type-archive-column .wd-column-nav .nav-item span,
.single-column .wd-column-nav .nav-item span,
.tax-column-category .wd-column-nav .nav-item span,
.tax-column-tag .wd-column-nav .nav-item span {
  color: #dcdcdc;
  background: #f6f6f6;
}
.post-type-archive-column .wd-column-nav .nav-item a,
.single-column .wd-column-nav .nav-item a,
.tax-column-category .wd-column-nav .nav-item a,
.tax-column-tag .wd-column-nav .nav-item a {
  background: #f0f0f0;
}
.post-type-archive-column .wd-column-nav .nav-item a:hover, .post-type-archive-column .wd-column-nav .nav-item a.selected,
.single-column .wd-column-nav .nav-item a:hover,
.single-column .wd-column-nav .nav-item a.selected,
.tax-column-category .wd-column-nav .nav-item a:hover,
.tax-column-category .wd-column-nav .nav-item a.selected,
.tax-column-tag .wd-column-nav .nav-item a:hover,
.tax-column-tag .wd-column-nav .nav-item a.selected {
  color: #fff;
  background: #1e3653;
}
.post-type-archive-column .wd-column-index .column-item-wrapper,
.single-column .wd-column-index .column-item-wrapper,
.tax-column-category .wd-column-index .column-item-wrapper,
.tax-column-tag .wd-column-index .column-item-wrapper {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-index .column-item-wrapper,
.single-column .wd-column-index .column-item-wrapper,
.tax-column-category .wd-column-index .column-item-wrapper,
.tax-column-tag .wd-column-index .column-item-wrapper {
    margin-bottom: 50px;
  }
}
.post-type-archive-column .wd-column-index .column-item-wrapper__inner,
.single-column .wd-column-index .column-item-wrapper__inner,
.tax-column-category .wd-column-index .column-item-wrapper__inner,
.tax-column-tag .wd-column-index .column-item-wrapper__inner {
  border-top: solid 1px #898888;
}
.post-type-archive-column .wd-column-index .column-item,
.single-column .wd-column-index .column-item,
.tax-column-category .wd-column-index .column-item,
.tax-column-tag .wd-column-index .column-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 20px 0;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-index .column-item,
.single-column .wd-column-index .column-item,
.tax-column-category .wd-column-index .column-item,
.tax-column-tag .wd-column-index .column-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 20px;
    padding: 10px;
  }
}
.post-type-archive-column .wd-column-index .column-item::after,
.single-column .wd-column-index .column-item::after,
.tax-column-category .wd-column-index .column-item::after,
.tax-column-tag .wd-column-index .column-item::after {
  position: absolute;
  bottom: 10px;
  right: 10px;
  content: "more＞";
  color: #969696;
  font-weight: bold;
}
.post-type-archive-column .wd-column-index .column-item .thumbnail,
.single-column .wd-column-index .column-item .thumbnail,
.tax-column-category .wd-column-index .column-item .thumbnail,
.tax-column-tag .wd-column-index .column-item .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 340px;
          flex: 0 0 340px;
  max-width: 340px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-index .column-item .thumbnail,
.single-column .wd-column-index .column-item .thumbnail,
.tax-column-category .wd-column-index .column-item .thumbnail,
.tax-column-tag .wd-column-index .column-item .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    max-width: 120px;
  }
}
.post-type-archive-column .wd-column-index .column-item .thumbnail img,
.single-column .wd-column-index .column-item .thumbnail img,
.tax-column-category .wd-column-index .column-item .thumbnail img,
.tax-column-tag .wd-column-index .column-item .thumbnail img {
  max-width: 100%;
  height: auto;
}
.post-type-archive-column .wd-column-index .column-item .detail,
.single-column .wd-column-index .column-item .detail,
.tax-column-category .wd-column-index .column-item .detail,
.tax-column-tag .wd-column-index .column-item .detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.post-type-archive-column .wd-column-index .column-item .detail .detail-inner,
.single-column .wd-column-index .column-item .detail .detail-inner,
.tax-column-category .wd-column-index .column-item .detail .detail-inner,
.tax-column-tag .wd-column-index .column-item .detail .detail-inner {
  padding: 0 40px 0 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-index .column-item .detail .detail-inner,
.single-column .wd-column-index .column-item .detail .detail-inner,
.tax-column-category .wd-column-index .column-item .detail .detail-inner,
.tax-column-tag .wd-column-index .column-item .detail .detail-inner {
    padding: 0 40px 0 20px;
  }
}
.post-type-archive-column .wd-column-index .column-item .detail .detail-inner p,
.single-column .wd-column-index .column-item .detail .detail-inner p,
.tax-column-category .wd-column-index .column-item .detail .detail-inner p,
.tax-column-tag .wd-column-index .column-item .detail .detail-inner p {
  font-size: 1.6rem;
  line-height: 2;
}
.post-type-archive-column .wd-column-index .column-item .detail .title,
.single-column .wd-column-index .column-item .detail .title,
.tax-column-category .wd-column-index .column-item .detail .title,
.tax-column-tag .wd-column-index .column-item .detail .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-index .column-item .detail .title,
.single-column .wd-column-index .column-item .detail .title,
.tax-column-category .wd-column-index .column-item .detail .title,
.tax-column-tag .wd-column-index .column-item .detail .title {
    font-size: 1.2rem;
  }
}
.post-type-archive-column .wd-column-index .column-item .detail .date,
.single-column .wd-column-index .column-item .detail .date,
.tax-column-category .wd-column-index .column-item .detail .date,
.tax-column-tag .wd-column-index .column-item .detail .date {
  margin-top: 40px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-index .column-item .detail .date,
.single-column .wd-column-index .column-item .detail .date,
.tax-column-category .wd-column-index .column-item .detail .date,
.tax-column-tag .wd-column-index .column-item .detail .date {
    font-size: 1.2rem;
  }
}
.post-type-archive-column .wd-column-archive,
.single-column .wd-column-archive,
.tax-column-category .wd-column-archive,
.tax-column-tag .wd-column-archive {
  padding: 40px 0;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-archive,
.single-column .wd-column-archive,
.tax-column-category .wd-column-archive,
.tax-column-tag .wd-column-archive {
    padding: 20px 0;
  }
}
.post-type-archive-column .wd-column-archive .archive-thumbnail,
.single-column .wd-column-archive .archive-thumbnail,
.tax-column-category .wd-column-archive .archive-thumbnail,
.tax-column-tag .wd-column-archive .archive-thumbnail {
  text-align: center;
  margin-bottom: 40px;
}
.post-type-archive-column .wd-column-archive .archive-thumbnail img,
.single-column .wd-column-archive .archive-thumbnail img,
.tax-column-category .wd-column-archive .archive-thumbnail img,
.tax-column-tag .wd-column-archive .archive-thumbnail img {
  width: 100%;
  height: auto;
}
.post-type-archive-column .wd-column-archive .archive-title,
.single-column .wd-column-archive .archive-title,
.tax-column-category .wd-column-archive .archive-title,
.tax-column-tag .wd-column-archive .archive-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-archive .archive-title,
.single-column .wd-column-archive .archive-title,
.tax-column-category .wd-column-archive .archive-title,
.tax-column-tag .wd-column-archive .archive-title {
    margin-bottom: 20px;
  }
}
.post-type-archive-column .wd-column-archive .archive-title .title,
.single-column .wd-column-archive .archive-title .title,
.tax-column-category .wd-column-archive .archive-title .title,
.tax-column-tag .wd-column-archive .archive-title .title {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-archive .archive-title .title,
.single-column .wd-column-archive .archive-title .title,
.tax-column-category .wd-column-archive .archive-title .title,
.tax-column-tag .wd-column-archive .archive-title .title {
    font-size: 1.6rem;
  }
}
.post-type-archive-column .wd-column-archive .archive-body,
.single-column .wd-column-archive .archive-body,
.tax-column-category .wd-column-archive .archive-body,
.tax-column-tag .wd-column-archive .archive-body {
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-archive .archive-body,
.single-column .wd-column-archive .archive-body,
.tax-column-category .wd-column-archive .archive-body,
.tax-column-tag .wd-column-archive .archive-body {
    font-size: 1.4rem;
  }
}
.post-type-archive-column .wd-column-archive .archive-meta,
.single-column .wd-column-archive .archive-meta,
.tax-column-category .wd-column-archive .archive-meta,
.tax-column-tag .wd-column-archive .archive-meta {
  margin-top: 40px;
}
.post-type-archive-column .wd-column-archive .archive-meta .date,
.single-column .wd-column-archive .archive-meta .date,
.tax-column-category .wd-column-archive .archive-meta .date,
.tax-column-tag .wd-column-archive .archive-meta .date {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-column .wd-column-archive .archive-meta .date,
.single-column .wd-column-archive .archive-meta .date,
.tax-column-category .wd-column-archive .archive-meta .date,
.tax-column-tag .wd-column-archive .archive-meta .date {
    font-size: 1.2rem;
  }
}
.post-type-archive-column .wd-column-archive .button-box,
.single-column .wd-column-archive .button-box,
.tax-column-category .wd-column-archive .button-box,
.tax-column-tag .wd-column-archive .button-box {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.post-type-archive-staff .common-main,
.single-staff .common-main,
.tax-staff-category .common-main,
.tax-staff-tag .common-main {
  color: #fff;
  background: #1E3653;
}
.post-type-archive-staff .breadcrumbs,
.single-staff .breadcrumbs,
.tax-staff-category .breadcrumbs,
.tax-staff-tag .breadcrumbs {
  color: #fff;
  background: #1E3653;
}
.post-type-archive-staff .wd-staff-index,
.single-staff .wd-staff-index,
.tax-staff-category .wd-staff-index,
.tax-staff-tag .wd-staff-index {
  padding-bottom: 100px;
}
.post-type-archive-staff .wd-staff-index__inner,
.single-staff .wd-staff-index__inner,
.tax-staff-category .wd-staff-index__inner,
.tax-staff-tag .wd-staff-index__inner {
  max-width: 860px;
  margin: auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-index__inner,
.single-staff .wd-staff-index__inner,
.tax-staff-category .wd-staff-index__inner,
.tax-staff-tag .wd-staff-index__inner {
    padding: 0 20px;
  }
}
.post-type-archive-staff .wd-staff-index .staff-item-wrapper,
.single-staff .wd-staff-index .staff-item-wrapper,
.tax-staff-category .wd-staff-index .staff-item-wrapper,
.tax-staff-tag .wd-staff-index .staff-item-wrapper {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-index .staff-item-wrapper,
.single-staff .wd-staff-index .staff-item-wrapper,
.tax-staff-category .wd-staff-index .staff-item-wrapper,
.tax-staff-tag .wd-staff-index .staff-item-wrapper {
    margin-bottom: 50px;
  }
}
.post-type-archive-staff .wd-staff-index .staff-item-wrapper__inner,
.single-staff .wd-staff-index .staff-item-wrapper__inner,
.tax-staff-category .wd-staff-index .staff-item-wrapper__inner,
.tax-staff-tag .wd-staff-index .staff-item-wrapper__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-staff .wd-staff-index .staff-item,
.single-staff .wd-staff-index .staff-item,
.tax-staff-category .wd-staff-index .staff-item,
.tax-staff-tag .wd-staff-index .staff-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23%;
          flex: 0 1 23%;
  border: solid 2px #fff;
  margin: 0 1% 40px;
  color: #fff;
  background: #1E3653;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-index .staff-item,
.single-staff .wd-staff-index .staff-item,
.tax-staff-category .wd-staff-index .staff-item,
.tax-staff-tag .wd-staff-index .staff-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
    margin-bottom: 20px;
  }
}
.post-type-archive-staff .wd-staff-index .staff-item .thumbnail,
.single-staff .wd-staff-index .staff-item .thumbnail,
.tax-staff-category .wd-staff-index .staff-item .thumbnail,
.tax-staff-tag .wd-staff-index .staff-item .thumbnail {
  max-width: 280px;
  margin: auto;
}
.post-type-archive-staff .wd-staff-index .staff-item .thumbnail img,
.single-staff .wd-staff-index .staff-item .thumbnail img,
.tax-staff-category .wd-staff-index .staff-item .thumbnail img,
.tax-staff-tag .wd-staff-index .staff-item .thumbnail img {
  max-width: 100%;
  height: auto;
}
.post-type-archive-staff .wd-staff-index .staff-item .detail,
.single-staff .wd-staff-index .staff-item .detail,
.tax-staff-category .wd-staff-index .staff-item .detail,
.tax-staff-tag .wd-staff-index .staff-item .detail {
  position: relative;
}
.post-type-archive-staff .wd-staff-index .staff-item .detail::after,
.single-staff .wd-staff-index .staff-item .detail::after,
.tax-staff-category .wd-staff-index .staff-item .detail::after,
.tax-staff-tag .wd-staff-index .staff-item .detail::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 1px;
  left: 0;
  width: 0;
  height: 0;
  margin: 0 0 0 auto;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 10px 10px 0 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.post-type-archive-staff .wd-staff-index .staff-item .detail .detail-inner,
.single-staff .wd-staff-index .staff-item .detail .detail-inner,
.tax-staff-category .wd-staff-index .staff-item .detail .detail-inner,
.tax-staff-tag .wd-staff-index .staff-item .detail .detail-inner {
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-index .staff-item .detail .detail-inner,
.single-staff .wd-staff-index .staff-item .detail .detail-inner,
.tax-staff-category .wd-staff-index .staff-item .detail .detail-inner,
.tax-staff-tag .wd-staff-index .staff-item .detail .detail-inner {
    padding: 10px;
  }
}
.post-type-archive-staff .wd-staff-index .staff-item .detail .title-main,
.single-staff .wd-staff-index .staff-item .detail .title-main,
.tax-staff-category .wd-staff-index .staff-item .detail .title-main,
.tax-staff-tag .wd-staff-index .staff-item .detail .title-main {
  font-size: 1.8rem;
}
.post-type-archive-staff .wd-staff-index .staff-item .detail .title-sub,
.single-staff .wd-staff-index .staff-item .detail .title-sub,
.tax-staff-category .wd-staff-index .staff-item .detail .title-sub,
.tax-staff-tag .wd-staff-index .staff-item .detail .title-sub {
  font-size: 1rem;
  margin-bottom: 10px;
}
.post-type-archive-staff .wd-staff-index .staff-item .detail .position,
.single-staff .wd-staff-index .staff-item .detail .position,
.tax-staff-category .wd-staff-index .staff-item .detail .position,
.tax-staff-tag .wd-staff-index .staff-item .detail .position {
  font-size: 1rem;
}
.post-type-archive-staff .wd-staff-archive__inner,
.single-staff .wd-staff-archive__inner,
.tax-staff-category .wd-staff-archive__inner,
.tax-staff-tag .wd-staff-archive__inner {
  max-width: 1000px;
  margin: auto;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive__inner,
.single-staff .wd-staff-archive__inner,
.tax-staff-category .wd-staff-archive__inner,
.tax-staff-tag .wd-staff-archive__inner {
    padding: 20px;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item-wrapper,
.single-staff .wd-staff-archive .staff-archive-item-wrapper,
.tax-staff-category .wd-staff-archive .staff-archive-item-wrapper,
.tax-staff-tag .wd-staff-archive .staff-archive-item-wrapper {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item-wrapper,
.single-staff .wd-staff-archive .staff-archive-item-wrapper,
.tax-staff-category .wd-staff-archive .staff-archive-item-wrapper,
.tax-staff-tag .wd-staff-archive .staff-archive-item-wrapper {
    margin-bottom: 30px;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item__inner,
.single-staff .wd-staff-archive .staff-archive-item__inner,
.tax-staff-category .wd-staff-archive .staff-archive-item__inner,
.tax-staff-tag .wd-staff-archive .staff-archive-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item__inner,
.single-staff .wd-staff-archive .staff-archive-item__inner,
.tax-staff-category .wd-staff-archive .staff-archive-item__inner,
.tax-staff-tag .wd-staff-archive .staff-archive-item__inner {
    margin-bottom: 20px;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item__inner .staff-archive-item-primary,
.single-staff .wd-staff-archive .staff-archive-item__inner .staff-archive-item-primary,
.tax-staff-category .wd-staff-archive .staff-archive-item__inner .staff-archive-item-primary,
.tax-staff-tag .wd-staff-archive .staff-archive-item__inner .staff-archive-item-primary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item__inner .staff-archive-item-secondary,
.single-staff .wd-staff-archive .staff-archive-item__inner .staff-archive-item-secondary,
.tax-staff-category .wd-staff-archive .staff-archive-item__inner .staff-archive-item-secondary,
.tax-staff-tag .wd-staff-archive .staff-archive-item__inner .staff-archive-item-secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-thumbnail,
.single-staff .wd-staff-archive .staff-archive-item .archive-thumbnail,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-thumbnail,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-thumbnail {
    margin-bottom: 10px;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-title .position,
.single-staff .wd-staff-archive .staff-archive-item .archive-title .position,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-title .position,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-title .position {
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-title .position,
.single-staff .wd-staff-archive .staff-archive-item .archive-title .position,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-title .position,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-title .position {
    font-size: 1.6rem;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-title .title-main,
.single-staff .wd-staff-archive .staff-archive-item .archive-title .title-main,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-title .title-main,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-title .title-main {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-title .title-main,
.single-staff .wd-staff-archive .staff-archive-item .archive-title .title-main,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-title .title-main,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-title .title-main {
    font-size: 2rem;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-title .title-sub,
.single-staff .wd-staff-archive .staff-archive-item .archive-title .title-sub,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-title .title-sub,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-title .title-sub {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-title .title-sub,
.single-staff .wd-staff-archive .staff-archive-item .archive-title .title-sub,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-title .title-sub,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-title .title-sub {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-detail,
.single-staff .wd-staff-archive .staff-archive-item .archive-detail,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-detail,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-detail {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-detail,
.single-staff .wd-staff-archive .staff-archive-item .archive-detail,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-detail,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-detail {
    margin-bottom: 50px;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-detail .detail-list,
.single-staff .wd-staff-archive .staff-archive-item .archive-detail .detail-list,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-detail .detail-list,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-detail .detail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-detail .detail-list,
.single-staff .wd-staff-archive .staff-archive-item .archive-detail .detail-list,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-detail .detail-list,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-detail .detail-list {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-detail .detail-list dt,
.single-staff .wd-staff-archive .staff-archive-item .archive-detail .detail-list dt,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-detail .detail-list dt,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-detail .detail-list dt {
  white-space: nowrap;
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-message__title,
.single-staff .wd-staff-archive .staff-archive-item .archive-message__title,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-message__title,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-message__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FFDC00;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-message__title,
.single-staff .wd-staff-archive .staff-archive-item .archive-message__title,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-message__title,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-message__title {
    font-size: 1.6rem;
  }
}
.post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-message__text,
.single-staff .wd-staff-archive .staff-archive-item .archive-message__text,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-message__text,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-message__text {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-staff .wd-staff-archive .staff-archive-item .archive-message__text,
.single-staff .wd-staff-archive .staff-archive-item .archive-message__text,
.tax-staff-category .wd-staff-archive .staff-archive-item .archive-message__text,
.tax-staff-tag .wd-staff-archive .staff-archive-item .archive-message__text {
    font-size: 1.2rem;
  }
}
.post-type-archive-staff .wd-staff-archive .button-box,
.single-staff .wd-staff-archive .button-box,
.tax-staff-category .wd-staff-archive .button-box,
.tax-staff-tag .wd-staff-archive .button-box {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.post-type-archive-blog .wd-blog-index .blog-item-wrapper,
.single-blog .wd-blog-index .blog-item-wrapper,
.tax-blog-category .wd-blog-index .blog-item-wrapper,
.tax-blog-tag .wd-blog-index .blog-item-wrapper {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-index .blog-item-wrapper,
.single-blog .wd-blog-index .blog-item-wrapper,
.tax-blog-category .wd-blog-index .blog-item-wrapper,
.tax-blog-tag .wd-blog-index .blog-item-wrapper {
    margin-bottom: 50px;
  }
}
.post-type-archive-blog .wd-blog-index .blog-item-wrapper__inner,
.single-blog .wd-blog-index .blog-item-wrapper__inner,
.tax-blog-category .wd-blog-index .blog-item-wrapper__inner,
.tax-blog-tag .wd-blog-index .blog-item-wrapper__inner {
  border-bottom: solid 1px #898888;
}
.post-type-archive-blog .wd-blog-index .blog-item,
.single-blog .wd-blog-index .blog-item,
.tax-blog-category .wd-blog-index .blog-item,
.tax-blog-tag .wd-blog-index .blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 20px 0;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-index .blog-item,
.single-blog .wd-blog-index .blog-item,
.tax-blog-category .wd-blog-index .blog-item,
.tax-blog-tag .wd-blog-index .blog-item {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 20px;
    padding: 10px;
  }
}
.post-type-archive-blog .wd-blog-index .blog-item::after,
.single-blog .wd-blog-index .blog-item::after,
.tax-blog-category .wd-blog-index .blog-item::after,
.tax-blog-tag .wd-blog-index .blog-item::after {
  position: absolute;
  bottom: 10px;
  right: 10px;
  content: "more＞";
  color: #969696;
  font-weight: bold;
}
.post-type-archive-blog .wd-blog-index .blog-item .thumbnail,
.single-blog .wd-blog-index .blog-item .thumbnail,
.tax-blog-category .wd-blog-index .blog-item .thumbnail,
.tax-blog-tag .wd-blog-index .blog-item .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 340px;
          flex: 0 0 340px;
  max-width: 340px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-index .blog-item .thumbnail,
.single-blog .wd-blog-index .blog-item .thumbnail,
.tax-blog-category .wd-blog-index .blog-item .thumbnail,
.tax-blog-tag .wd-blog-index .blog-item .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.post-type-archive-blog .wd-blog-index .blog-item .thumbnail img,
.single-blog .wd-blog-index .blog-item .thumbnail img,
.tax-blog-category .wd-blog-index .blog-item .thumbnail img,
.tax-blog-tag .wd-blog-index .blog-item .thumbnail img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-index .blog-item .thumbnail img,
.single-blog .wd-blog-index .blog-item .thumbnail img,
.tax-blog-category .wd-blog-index .blog-item .thumbnail img,
.tax-blog-tag .wd-blog-index .blog-item .thumbnail img {
    width: 100%;
  }
}
.post-type-archive-blog .wd-blog-index .blog-item .detail,
.single-blog .wd-blog-index .blog-item .detail,
.tax-blog-category .wd-blog-index .blog-item .detail,
.tax-blog-tag .wd-blog-index .blog-item .detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.post-type-archive-blog .wd-blog-index .blog-item .detail .detail-inner,
.single-blog .wd-blog-index .blog-item .detail .detail-inner,
.tax-blog-category .wd-blog-index .blog-item .detail .detail-inner,
.tax-blog-tag .wd-blog-index .blog-item .detail .detail-inner {
  padding: 0 40px 0 20px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-index .blog-item .detail .detail-inner,
.single-blog .wd-blog-index .blog-item .detail .detail-inner,
.tax-blog-category .wd-blog-index .blog-item .detail .detail-inner,
.tax-blog-tag .wd-blog-index .blog-item .detail .detail-inner {
    padding: 10px 0 0;
  }
}
.post-type-archive-blog .wd-blog-index .blog-item .detail .detail-inner p,
.single-blog .wd-blog-index .blog-item .detail .detail-inner p,
.tax-blog-category .wd-blog-index .blog-item .detail .detail-inner p,
.tax-blog-tag .wd-blog-index .blog-item .detail .detail-inner p {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-index .blog-item .detail .detail-inner p,
.single-blog .wd-blog-index .blog-item .detail .detail-inner p,
.tax-blog-category .wd-blog-index .blog-item .detail .detail-inner p,
.tax-blog-tag .wd-blog-index .blog-item .detail .detail-inner p {
    font-size: 1.2rem;
  }
}
.post-type-archive-blog .wd-blog-index .blog-item .detail .title,
.single-blog .wd-blog-index .blog-item .detail .title,
.tax-blog-category .wd-blog-index .blog-item .detail .title,
.tax-blog-tag .wd-blog-index .blog-item .detail .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-index .blog-item .detail .title,
.single-blog .wd-blog-index .blog-item .detail .title,
.tax-blog-category .wd-blog-index .blog-item .detail .title,
.tax-blog-tag .wd-blog-index .blog-item .detail .title {
    font-size: 1.2rem;
  }
}
.post-type-archive-blog .wd-blog-index .blog-item .detail .date,
.single-blog .wd-blog-index .blog-item .detail .date,
.tax-blog-category .wd-blog-index .blog-item .detail .date,
.tax-blog-tag .wd-blog-index .blog-item .detail .date {
  margin-top: 40px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-index .blog-item .detail .date,
.single-blog .wd-blog-index .blog-item .detail .date,
.tax-blog-category .wd-blog-index .blog-item .detail .date,
.tax-blog-tag .wd-blog-index .blog-item .detail .date {
    font-size: 1.2rem;
  }
}
.post-type-archive-blog .wd-blog-archive .archive-thumbnail,
.single-blog .wd-blog-archive .archive-thumbnail,
.tax-blog-category .wd-blog-archive .archive-thumbnail,
.tax-blog-tag .wd-blog-archive .archive-thumbnail {
  text-align: center;
  margin-bottom: 40px;
}
.post-type-archive-blog .wd-blog-archive .archive-thumbnail img,
.single-blog .wd-blog-archive .archive-thumbnail img,
.tax-blog-category .wd-blog-archive .archive-thumbnail img,
.tax-blog-tag .wd-blog-archive .archive-thumbnail img {
  width: 100%;
  height: auto;
}
.post-type-archive-blog .wd-blog-archive .archive-title,
.single-blog .wd-blog-archive .archive-title,
.tax-blog-category .wd-blog-archive .archive-title,
.tax-blog-tag .wd-blog-archive .archive-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-archive .archive-title,
.single-blog .wd-blog-archive .archive-title,
.tax-blog-category .wd-blog-archive .archive-title,
.tax-blog-tag .wd-blog-archive .archive-title {
    margin-bottom: 20px;
  }
}
.post-type-archive-blog .wd-blog-archive .archive-title .title,
.single-blog .wd-blog-archive .archive-title .title,
.tax-blog-category .wd-blog-archive .archive-title .title,
.tax-blog-tag .wd-blog-archive .archive-title .title {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-archive .archive-title .title,
.single-blog .wd-blog-archive .archive-title .title,
.tax-blog-category .wd-blog-archive .archive-title .title,
.tax-blog-tag .wd-blog-archive .archive-title .title {
    font-size: 1.6rem;
  }
}
.post-type-archive-blog .wd-blog-archive .archive-body,
.single-blog .wd-blog-archive .archive-body,
.tax-blog-category .wd-blog-archive .archive-body,
.tax-blog-tag .wd-blog-archive .archive-body {
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-archive .archive-body,
.single-blog .wd-blog-archive .archive-body,
.tax-blog-category .wd-blog-archive .archive-body,
.tax-blog-tag .wd-blog-archive .archive-body {
    font-size: 1.4rem;
  }
}
.post-type-archive-blog .wd-blog-archive .archive-meta,
.single-blog .wd-blog-archive .archive-meta,
.tax-blog-category .wd-blog-archive .archive-meta,
.tax-blog-tag .wd-blog-archive .archive-meta {
  margin-top: 40px;
}
.post-type-archive-blog .wd-blog-archive .archive-meta .date,
.single-blog .wd-blog-archive .archive-meta .date,
.tax-blog-category .wd-blog-archive .archive-meta .date,
.tax-blog-tag .wd-blog-archive .archive-meta .date {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-blog .wd-blog-archive .archive-meta .date,
.single-blog .wd-blog-archive .archive-meta .date,
.tax-blog-category .wd-blog-archive .archive-meta .date,
.tax-blog-tag .wd-blog-archive .archive-meta .date {
    font-size: 1.2rem;
  }
}
.post-type-archive-blog .wd-blog-archive .button-box,
.single-blog .wd-blog-archive .button-box,
.tax-blog-category .wd-blog-archive .button-box,
.tax-blog-tag .wd-blog-archive .button-box {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.common-doc {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .common-doc {
    font-size: 1.4rem;
  }
}
.common-doc__inner {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .common-doc__inner {
    padding: 0 20px;
  }
}
.common-doc .heading2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1024px) {
  .common-doc .heading2 {
    font-size: 1.6rem;
  }
}
.common-doc p {
  margin-bottom: 2em;
}

.movie-footer .copy {
  background: #333333;
  padding: 20px 0;
  width: 100%;
  font-size: 80%;
  color: #fff;
  font-weight: normal;
}
.movie-footer .copy_inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.movie-footer .copy_l {
  float: left;
}
.movie-footer .copy_r {
  float: right;
}
.movie-footer .copy a {
  color: #fff;
}

.page-standard .l-container {
  min-height: 460px;
}
.page-standard .common-standard {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .page-standard .common-standard {
    font-size: 1.4rem;
  }
}
.page-standard .common-standard__inner {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .page-standard .common-standard__inner {
    padding: 0 20px;
  }
}
.page-standard .common-standard p {
  margin-bottom: 1em;
}

.page-model-house .wd-page-model-house-point-box,
.post-type-archive-model-house .wd-page-model-house-point-box,
.tax-model-house-category .wd-page-model-house-point-box {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(20%, #009EC0), to(#009EC0));
  background: linear-gradient(to bottom, #fff 20%, #009EC0 20%, #009EC0 100%);
}
.page-model-house .header-icon img,
.post-type-archive-model-house .header-icon img,
.tax-model-house-category .header-icon img {
  width: 100px;
}
.page-model-house .wd-index-item,
.post-type-archive-model-house .wd-index-item,
.tax-model-house-category .wd-index-item {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .page-model-house .wd-index-item,
.post-type-archive-model-house .wd-index-item,
.tax-model-house-category .wd-index-item {
    text-align: center;
  }
}
.page-model-house .wd-index-item__thumbnail,
.post-type-archive-model-house .wd-index-item__thumbnail,
.tax-model-house-category .wd-index-item__thumbnail {
  margin-bottom: 80px;
}
.page-model-house .wd-index-item__thumbnail .thumbnail-body,
.post-type-archive-model-house .wd-index-item__thumbnail .thumbnail-body,
.tax-model-house-category .wd-index-item__thumbnail .thumbnail-body {
  position: relative;
}
.page-model-house .wd-index-item__thumbnail .thumbnail-body .thumb img,
.post-type-archive-model-house .wd-index-item__thumbnail .thumbnail-body .thumb img,
.tax-model-house-category .wd-index-item__thumbnail .thumbnail-body .thumb img {
  width: 100%;
}
.page-model-house .wd-index-item__mv,
.post-type-archive-model-house .wd-index-item__mv,
.tax-model-house-category .wd-index-item__mv {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
}
.page-model-house .wd-index-item__mv .icon,
.post-type-archive-model-house .wd-index-item__mv .icon,
.tax-model-house-category .wd-index-item__mv .icon {
  width: 120px;
  height: 120px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  border: solid 2px #fff;
}
.page-model-house .wd-index-item__mv .icon img,
.post-type-archive-model-house .wd-index-item__mv .icon img,
.tax-model-house-category .wd-index-item__mv .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-model-house .wd-index-item__name,
.post-type-archive-model-house .wd-index-item__name,
.tax-model-house-category .wd-index-item__name {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .page-model-house .wd-index-item__name,
.post-type-archive-model-house .wd-index-item__name,
.tax-model-house-category .wd-index-item__name {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.page-model-house .wd-index-item__address,
.post-type-archive-model-house .wd-index-item__address,
.tax-model-house-category .wd-index-item__address {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .page-model-house .wd-index-item__address,
.post-type-archive-model-house .wd-index-item__address,
.tax-model-house-category .wd-index-item__address {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.page-model-house .wd-index-item__catch,
.post-type-archive-model-house .wd-index-item__catch,
.tax-model-house-category .wd-index-item__catch {
  text-align: center;
  max-width: 80%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
  .page-model-house .wd-index-item__catch,
.post-type-archive-model-house .wd-index-item__catch,
.tax-model-house-category .wd-index-item__catch {
    margin-bottom: 20px;
  }
}
.page-model-house .wd-index-item .archive-content,
.post-type-archive-model-house .wd-index-item .archive-content,
.tax-model-house-category .wd-index-item .archive-content {
  font-size: 1.6rem;
  text-align: left;
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page-model-house .wd-index-item .archive-content,
.post-type-archive-model-house .wd-index-item .archive-content,
.tax-model-house-category .wd-index-item .archive-content {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.page-model-house .wd-index-item .archive-content p:not(:last-of-type),
.post-type-archive-model-house .wd-index-item .archive-content p:not(:last-of-type),
.tax-model-house-category .wd-index-item .archive-content p:not(:last-of-type) {
  margin-bottom: 1em;
}

.page-model-house-detail .wd-detail-header,
.single-model-house .wd-detail-header {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-header,
.single-model-house .wd-detail-header {
    text-align: center;
  }
}
.page-model-house-detail .wd-detail-header__thumbnail,
.single-model-house .wd-detail-header__thumbnail {
  margin-bottom: 80px;
}
.page-model-house-detail .wd-detail-header__thumbnail .thumbnail-body,
.single-model-house .wd-detail-header__thumbnail .thumbnail-body {
  position: relative;
}
.page-model-house-detail .wd-detail-header__thumbnail .thumbnail-body .thumb img,
.single-model-house .wd-detail-header__thumbnail .thumbnail-body .thumb img {
  width: 100%;
}
.page-model-house-detail .wd-detail-header__mv,
.single-model-house .wd-detail-header__mv {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
}
.page-model-house-detail .wd-detail-header__mv .icon,
.single-model-house .wd-detail-header__mv .icon {
  width: 120px;
  height: 120px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  border: solid 2px #fff;
}
.page-model-house-detail .wd-detail-header__mv .icon img,
.single-model-house .wd-detail-header__mv .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-model-house-detail .wd-detail-header__name,
.single-model-house .wd-detail-header__name {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-header__name,
.single-model-house .wd-detail-header__name {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.page-model-house-detail .wd-detail-header__address,
.single-model-house .wd-detail-header__address {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-header__address,
.single-model-house .wd-detail-header__address {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.page-model-house-detail .wd-detail-header__map-icon,
.single-model-house .wd-detail-header__map-icon {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-header__map-icon,
.single-model-house .wd-detail-header__map-icon {
    margin-bottom: 10px;
  }
}
.page-model-house-detail .wd-detail-header .archive-content,
.single-model-house .wd-detail-header .archive-content {
  font-size: 1.6rem;
  text-align: left;
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-header .archive-content,
.single-model-house .wd-detail-header .archive-content {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.page-model-house-detail .wd-detail-header .archive-content p:not(:last-of-type),
.single-model-house .wd-detail-header .archive-content p:not(:last-of-type) {
  margin-bottom: 1em;
}
.page-model-house-detail .wd-detail-body .item,
.single-model-house .wd-detail-body .item {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-body .item,
.single-model-house .wd-detail-body .item {
    margin-bottom: 20px;
  }
}
.page-model-house-detail .wd-detail-body .item .image,
.single-model-house .wd-detail-body .item .image {
  margin-bottom: 20px;
}
.page-model-house-detail .wd-detail-body .item .image.mb-0,
.single-model-house .wd-detail-body .item .image.mb-0 {
  margin-bottom: 0;
}
.page-model-house-detail .wd-detail-body .item .title,
.single-model-house .wd-detail-body .item .title {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-body .item .title,
.single-model-house .wd-detail-body .item .title {
    font-size: 1.6rem;
  }
}
.page-model-house-detail .wd-detail-body .item .text,
.single-model-house .wd-detail-body .item .text {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-body .item .text,
.single-model-house .wd-detail-body .item .text {
    font-size: 1.2rem;
  }
}
.page-model-house-detail .wd-detail-body .item-1,
.single-model-house .wd-detail-body .item-1 {
  margin-left: -40px;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-body .item-1,
.single-model-house .wd-detail-body .item-1 {
    margin-left: -20px;
  }
}
.page-model-house-detail .wd-detail-body .item-1__body,
.single-model-house .wd-detail-body .item-1__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.page-model-house-detail .wd-detail-body .item-1__body .body-primary,
.page-model-house-detail .wd-detail-body .item-1__body .body-secondary,
.single-model-house .wd-detail-body .item-1__body .body-primary,
.single-model-house .wd-detail-body .item-1__body .body-secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
}
.page-model-house-detail .wd-detail-body .item-2__body,
.single-model-house .wd-detail-body .item-2__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-model-house-detail .wd-detail-body .item-2__body .body-primary,
.page-model-house-detail .wd-detail-body .item-2__body .body-secondary,
.single-model-house .wd-detail-body .item-2__body .body-primary,
.single-model-house .wd-detail-body .item-2__body .body-secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
}
.page-model-house-detail .wd-detail-body .item-4__body,
.single-model-house .wd-detail-body .item-4__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-model-house-detail .wd-detail-body .item-4__body .body-primary,
.page-model-house-detail .wd-detail-body .item-4__body .body-secondary,
.single-model-house .wd-detail-body .item-4__body .body-primary,
.single-model-house .wd-detail-body .item-4__body .body-secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
}
.page-model-house-detail .wd-detail-body .item-5 .image,
.single-model-house .wd-detail-body .item-5 .image {
  text-align: center;
}
.page-model-house-detail .wd-detail-body .item-5 .image img,
.single-model-house .wd-detail-body .item-5 .image img {
  max-width: 100%;
}
.page-model-house-detail .wd-detail-body .map,
.single-model-house .wd-detail-body .map {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-body .map,
.single-model-house .wd-detail-body .map {
    margin-bottom: 20px;
  }
}
.page-model-house-detail .wd-detail-body .map .title,
.single-model-house .wd-detail-body .map .title {
  font-size: 2.4rem;
  text-align: center;
  color: #19B4C3;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-body .map .title,
.single-model-house .wd-detail-body .map .title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.page-model-house-detail .wd-detail-body .map iframe,
.single-model-house .wd-detail-body .map iframe {
  width: 100%;
  height: 340px;
}
@media screen and (max-width: 1024px) {
  .page-model-house-detail .wd-detail-body .map iframe,
.single-model-house .wd-detail-body .map iframe {
    height: 450px;
  }
}

.page-lifestyle .common-mv-header {
  position: relative;
  height: 314px;
  margin-bottom: 40px;
}
.page-lifestyle .common-mv-header__heading1 .lifestyle-image {
  position: absolute;
  bottom: -36px;
  left: 0;
  width: 100%;
  text-align: center;
}
.page-lifestyle .mb-100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle .mb-100 {
    margin-bottom: 50px;
  }
}
.page-lifestyle .index-header {
  max-width: 860px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle .index-header {
    padding: 0 20px;
    font-size: 1.2rem;
  }
}

.page-lifestyle-detail .color1 {
  color: #586447;
}
.page-lifestyle-detail .color2 {
  color: #995964;
}
.page-lifestyle-detail .color3 {
  color: #4A566B;
}
.page-lifestyle-detail .color4 {
  color: #7A6A56;
}
.page-lifestyle-detail .heading1 {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .heading1 {
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .heading1.type-2 {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .heading1 img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.page-lifestyle-detail .heading2 {
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .heading2 {
    font-size: 2rem;
  }
}
.page-lifestyle-detail .heading3 {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .heading3 {
    font-size: 1.3rem;
  }
}
.page-lifestyle-detail .text1 {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .text1 {
    font-size: 1.2rem;
  }
}
.page-lifestyle-detail .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #7AD7E0));
  background: linear-gradient(transparent 60%, #7AD7E0 0%);
  display: inline;
  padding: 0 2px;
}
.page-lifestyle-detail .note {
  font-size: 1rem;
}
.page-lifestyle-detail .section {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .sp-w-max {
    margin: 0 -20px;
  }
  .page-lifestyle-detail .sp-w-max .col-12 {
    margin: 0;
    padding: 0;
  }
  .page-lifestyle-detail .sp-w-max img {
    width: 100%;
  }
}
.page-lifestyle-detail .wd-detail-header {
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .wd-detail-header {
    padding: 30px 0;
  }
}
.page-lifestyle-detail .wd-detail-header__inner {
  max-width: 800px;
  margin: auto;
}
.page-lifestyle-detail .wd-detail-header__title {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .wd-detail-header__title img {
    width: 100%;
  }
}
.page-lifestyle-detail .wd-detail-header__text {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .wd-detail-header__text {
    font-size: 1.4rem;
    text-align: left;
    padding: 0 20px;
  }
}
.page-lifestyle-detail .wd-diy {
  padding: 60px 20px;
  margin-bottom: 100px;
}
.page-lifestyle-detail .wd-diy.bg1 {
  background: #EEEFE7;
}
.page-lifestyle-detail .wd-diy.bg2 {
  background: #FAF0F1;
}
.page-lifestyle-detail .wd-diy.bg3 {
  background: #EEECEE;
}
.page-lifestyle-detail .wd-diy.bg4 {
  background: #F1EFED;
}
.page-lifestyle-detail .wd-diy__inner {
  max-width: 1000px;
  margin: auto;
}
.page-lifestyle-detail .wd-diy .diy-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-lifestyle-detail .wd-diy .diy-item .primary {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .wd-diy .diy-item .primary {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
  }
}
.page-lifestyle-detail .wd-diy .diy-item .secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .wd-diy .diy-item .secondary {
    padding-top: 0;
  }
}
.page-lifestyle-detail .wd-diy .diy-item .heading {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .wd-diy .diy-item .heading {
    font-size: 1.4rem;
  }
}
.page-lifestyle-detail .wd-diy .diy-item .text {
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .wd-diy .diy-item .text {
    font-size: 1.1rem;
  }
}
.page-lifestyle-detail .wd-diy .diy-item .note {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .page-lifestyle-detail .wd-diy .diy-item .note {
    text-align: left;
  }
}
.page-lifestyle-detail .wd-diy .diy-item.note-only {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}

.page-company .highlight {
  color: #A71E41;
}
.page-company .bubble-box {
  border: solid 3px #E50012;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  background: #fff;
  display: block;
  font-size: 2.2rem;
  text-align: center;
}
.page-company .bubble-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: -17px;
  left: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  background: #fff;
  border-right: solid 3px #E50012;
  border-top: solid 3px #E50012;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.page-company .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-company .profile__message-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.page-company .profile__image-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  padding-left: 20px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .page-company .profile__image-box {
    display: none;
  }
}
.page-company .profile__lead {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .page-company .profile__lead {
    font-size: 1.8rem;
  }
}
.page-company .profile__text {
  font-size: 1.4rem;
  line-height: 2.2;
}
@media screen and (max-width: 1024px) {
  .page-company .profile__text {
    font-size: 1.1rem;
  }
}
.page-company .profile__name {
  font-size: 1.8rem;
  text-align: left;
}
.page-company .profile__name .meta {
  font-size: 1.2rem;
}
.page-company .profile .photo-sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .page-company .profile .photo-sp-only {
    display: inline-block;
    float: left;
    margin: 5px 20px 5px 0;
  }
}
.page-company .step-icon {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .page-company .step-icon {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.page-company .heading1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  color: #E50012;
}
@media screen and (max-width: 1024px) {
  .page-company .heading1 {
    font-size: 1.8rem;
  }
}

.page-low-cost {
  overflow-x: hidden;
}
.page-low-cost .cost-table-type1 {
  width: 100%;
  border-collapse: collapse;
}
.page-low-cost .cost-table-type1 .text-nowrap {
  white-space: nowrap;
}
.page-low-cost .cost-table-type1 th {
  border: solid 1px #D2D3D3;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  font-size: 1.1rem;
  background: #fff;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .page-low-cost .cost-table-type1 th {
    padding: 5px;
    font-size: 1rem;
  }
}
.page-low-cost .cost-table-type1 th.bg1 {
  background: #F2F2F3;
}
.page-low-cost .cost-table-type1 th.bg2 {
  background: #EBF6F8;
}
.page-low-cost .cost-table-type1 td {
  border: solid 1px #D2D3D3;
  padding: 10px;
  font-size: 1.2rem;
  text-align: left;
  background: #fff;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .page-low-cost .cost-table-type1 td {
    padding: 5px;
    font-size: 1rem;
  }
}
.page-low-cost .cost-table-type1 .row4 {
  height: 160px;
}
@media screen and (max-width: 1024px) {
  .page-low-cost .cost-table-type1 .row4 {
    height: 108px;
  }
}
.page-low-cost .cost-table-type1 .highlight {
  color: #ED6C00;
}
.page-low-cost .case-index-box {
  background: #E6F4F6;
  padding: 60px 40px 40px;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .page-low-cost .case-index-box {
    margin: 100px calc(50% - 50vw) 0;
    width: 100vw;
    padding: 30px 20px 20px;
  }
}
.page-low-cost .case-index-box__header {
  margin-top: -100px;
}
.page-low-cost .case-index-box .case-box {
  position: relative;
  background: #fff;
  border: solid 2px #E50012;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .page-low-cost .case-index-box .case-box {
    padding: 10px;
  }
}
.page-low-cost .case-index-box .case-box__icon {
  position: absolute;
  top: -20px;
  left: -20px;
}
.page-low-cost .case-index-box .case-box__title {
  font-size: 2rem;
  padding-left: 60px;
}
.page-low-cost .case-index-box .case-box__grid .grid-box {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-rows: auto 20px auto;
  -ms-grid-columns: 1fr 20px 1fr;
      grid-template: "item1 item2" auto "item3 item2" auto/1fr 1fr;
}
@media screen and (max-width: 1024px) {
  .page-low-cost .case-index-box .case-box__grid .grid-box {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    -ms-grid-rows: auto 10px auto 10px auto;
    -ms-grid-columns: 1fr;
        grid-template: "item1" auto "item2" auto "item3" auto/1fr;
  }
}
.page-low-cost .case-index-box .case-box__grid .grid-box .item1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: item1;
}
.page-low-cost .case-index-box .case-box__grid .grid-box .item2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: item2;
}
.page-low-cost .case-index-box .case-box__grid .grid-box .item3 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: item3;
}
@media screen and (max-width: 1024px){
  .page-low-cost .case-index-box .case-box__grid .grid-box .item1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .page-low-cost .case-index-box .case-box__grid .grid-box .item2 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .page-low-cost .case-index-box .case-box__grid .grid-box .item3 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
}
.page-low-cost .case-index-box .case-box__grid .grid-box .comparison {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-low-cost .case-index-box .case-box__grid .grid-box .comparison .before,
.page-low-cost .case-index-box .case-box__grid .grid-box .comparison .after {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}
.page-low-cost .case-index-box .case-box__grid .grid-box .comparison .arrow {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-low-cost .case-index-box .case-box__grid .grid-box .message {
  font-size: 2rem;
  color: #E50012;
}
.page-low-cost .case-index-box .table-note {
  font-size: 1rem;
  text-indent: -1em;
  padding-left: 1em;
}

.page-low-cost-detail {
  overflow-x: hidden;
}
.page-low-cost-detail .cost-table-type1 {
  width: 100%;
  border-collapse: collapse;
}
.page-low-cost-detail .cost-table-type1 .text-nowrap {
  white-space: nowrap;
}
.page-low-cost-detail .cost-table-type1 th {
  border: solid 1px #D2D3D3;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  font-size: 2.1rem;
  background: #fff;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .cost-table-type1 th {
    padding: 5px;
    font-size: 1rem;
  }
}
.page-low-cost-detail .cost-table-type1 th.bg1 {
  background: #F2F2F3;
}
.page-low-cost-detail .cost-table-type1 th.bg2 {
  background: #EBF6F8;
}
.page-low-cost-detail .cost-table-type1 td {
  border: solid 1px #D2D3D3;
  padding: 10px;
  font-size: 2.2rem;
  text-align: left;
  background: #fff;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .cost-table-type1 td {
    padding: 5px;
    font-size: 1rem;
  }
}
.page-low-cost-detail .cost-table-type1 .row4 {
  height: 224px;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .cost-table-type1 .row4 {
    height: 108px;
  }
}
.page-low-cost-detail .cost-table-type1 .highlight {
  color: #ED6C00;
}
.page-low-cost-detail .cost-table-type2 {
  width: 100%;
  border-top: solid 1px #D2D3D3;
  border-left: solid 1px #D2D3D3;
}
.page-low-cost-detail .cost-table-type2 .text-nowrap {
  white-space: nowrap;
}
.page-low-cost-detail .cost-table-type2 .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .cost-table-type2 .tr {
    display: block;
  }
}
.page-low-cost-detail .cost-table-type2 .cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33%;
          flex: 0 1 33%;
}
.page-low-cost-detail .cost-table-type2 .th {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
  border-right: solid 1px #D2D3D3;
  border-bottom: solid 1px #D2D3D3;
  background: #EFF8F9;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  font-size: 2.1rem;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .cost-table-type2 .th {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 20%;
            flex: 0 1 20%;
    padding: 5px 10px;
    font-size: 1.1rem;
  }
}
.page-low-cost-detail .cost-table-type2 .td {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 80%;
          flex: 0 1 80%;
  border-right: solid 1px #D2D3D3;
  border-bottom: solid 1px #D2D3D3;
  padding: 10px 20px;
  font-size: 2.2rem;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .cost-table-type2 .td {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 80%;
            flex: 0 1 80%;
    padding: 5px 10px;
    font-size: 1.2rem;
  }
}
.page-low-cost-detail .case-detail-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .case-detail-header {
    display: block;
    text-align: center;
  }
}
.page-low-cost-detail .case-detail-header .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .case-detail-header .icon {
    margin-bottom: 10px;
  }
}
.page-low-cost-detail .case-detail-header .title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 2rem;
  padding-right: 80px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .case-detail-header .title {
    font-size: 1.8rem;
    padding-right: 0;
  }
}
.page-low-cost-detail .case-detail-middle {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 50px 20px;
  background: #E6F4F6;
}
.page-low-cost-detail .case-detail-middle__inner {
  max-width: 760px;
  margin: auto;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .case-detail-middle__inner {
    font-size: 1.4rem;
  }
}
.page-low-cost-detail .comparison-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-low-cost-detail .comparison-box .before,
.page-low-cost-detail .comparison-box .after {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}
.page-low-cost-detail .comparison-box .arrow {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .comparison-box .arrow {
    padding: 10px;
  }
  .page-low-cost-detail .comparison-box .arrow img {
    width: 20px;
  }
}
.page-low-cost-detail .table-note {
  font-size: 1.2rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 1024px) {
  .page-low-cost-detail .table-note {
    font-size: 1rem;
  }
}



.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media (max-width: 1024px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}



/*　採用ページ　 */

  .job-table {
    --border: #e5e7eb;
    --label-bg: #f8fafc;
    --text-sub: #6b7280;
    max-width: 980px;
    margin: 2rem auto;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.8;
  }
  .job-table .job-caption {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
  }
  .job-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  .job-table col.col-label { width: 22%; }
  .job-table col.col-value { width: auto; }

  .job-table th,
  .job-table td {
    padding: 14px 16px;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
  }
  .job-table tr:last-child th,
  .job-table tr:last-child td { border-bottom: none; }

  .job-table th {
    background: var(--label-bg);
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
  }
  .job-table td p { margin: 0.25rem 0; }
  .job-table td ul {
    margin: 0.25rem 0 0.25rem 1.2em;
  }
  .job-table td ul li { margin: 0.15rem 0; }
  .job-table .subnote,
  .job-table .notes { color: var(--text-sub); font-size: 0.92em; }
  .job-table .notes { margin-top: 0.25rem; }
  .job-table .notes li { list-style: "※ "; margin-left: 1em; }

  /* レスポンシブ（スマホ） */
  @media (max-width: 720px) {
    .job-table col.col-label { width: 100%; }
    .job-table th, .job-table td { display: block; width: 100%; }
    .job-table th {
      border-bottom: none;
      border-top: 1px solid var(--border);
    }
    .job-table tr:first-child th { border-top: none; }
    .job-table td { padding-top: 6px; }
  }



/* ================================
  Headings Theme (H1–H4)
  基本色は --brand / --accent を調整
================================== */
:root{
  --brand: #001f73;   /* メイン（紺） */
  --accent: #ffc700;  /* アクセント（イエロー） */
  --ink: #111827;     /* 見出し文字色 */
  --sub: #6b7280;     /* 補助テキスト色 */
}

/* ベース（共通）：太め・字間やや広め・余白大きめ */
.saiyo_h{
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .02em;
  margin: 4.2rem 0 3.2rem;
  font-feature-settings: "palt";
}

/* H1：左側バー＋下にアクセントライン＋英字強調を想定 */
.saiyo_h1{
  font-size: clamp(1.9rem, 3.2vw,4rem);
  padding-left: .9rem;
  border-left: .5rem solid #1bb5c4;
  position: relative;
}
.saiyo_h1::after{
  content: "";
  display: block;
  width: 82px;
  height: 4px;
  margin-top: .75rem;
  background: linear-gradient(90deg, var(--accent), color-mix(in oklab, var(--accent) 40%, white));
  border-radius: 999px;
}

/* H2：下線（太）＋細いサブ下線の二重ライン */
.saiyo_h2{
  font-size: clamp(1.6rem, 2.4vw, 3.1rem);
  padding-bottom: 1.55rem;
  border-bottom: 4px solid color-mix(in oklab, #1bb5c4 86%, white);
  position: relative;
}
.saiyo_h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 38%;
  max-width: 220px;
  height: 4px;
  background: #ffc700;
  border-radius: 999px;
}

/* H3：左に小さな角丸プレート＋テキスト */
.saiyo_h3{
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .6rem;
}
.saiyo_h3::before{
  content: "";
  width: .75rem;
  height: 1.2rem;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--brand), color-mix(in oklab, var(--brand) 70%, black));
  box-shadow: 0 2px 6px rgba(0,0,0,.08) inset;
}

/* H4：小見出しタグ風（カプセル） */
.saiyo_h4{
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .7rem;
  background: color-mix(in oklab, var(--brand) 9%, white);
  border: 1px solid color-mix(in oklab, var(--brand) 18%, white);
  border-radius: 999px;
  font-weight: 700;
}
.saiyo_button {
    margin-top: 40px;
}