@charset "UTF-8";
/* 初期化
----------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
}

main {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* HTML5
----------------------------------------------------------------*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: #191919;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
a:hover {
  opacity: 0.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.c-heading2 {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
  /* 黒フチ ＋ 右下影 */
  text-shadow: -0.0625rem 0rem 0 #191919, 0.0625rem 0rem 0 #191919, 0rem -0.0625rem 0 #191919, 0rem 0.0625rem 0 #191919, 0.25rem 0.25rem 0 #191919;
}
@media (max-width: 768px) {
  .c-heading2 {
    font-size: 2.5rem;
    text-shadow: -0.0625rem 0rem 0 #191919, 0.0625rem 0rem 0 #191919, 0rem -0.0625rem 0 #191919, 0rem 0.0625rem 0 #191919, 0.125rem 0.125rem 0 #191919;
  }
}

.c-about-card {
  background: #ffffff;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.c-about-profile-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.c-about-profile-wrap > div {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .c-about-profile-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-about-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}
.c-about-profile__text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.c-about-profile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
.c-about-profile__title {
  background: #831f88;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .c-about-profile__title {
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 0.3125rem;
  }
}
.c-about-profile__name {
  font-size: 1.25rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .c-about-profile__name {
    font-size: 1rem;
  }
}
.c-about-profile__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-ticket-card {
  border-radius: 1.5625rem;
  border: 0.25rem solid #191919;
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  width: 21.875rem;
}
.c-ticket-card__heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.c-ticket-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 0.0625rem solid #191919;
}
@media (max-width: 768px) {
  .c-ticket-card__list {
    gap: 0.5rem;
  }
}
.c-ticket-card__list:first-of-type {
  border-top: 0.0625rem solid #191919;
}
.c-ticket-card__title {
  width: 6.25rem;
  font-weight: 700;
}
.c-ticket-card__anchor {
  background-color: #191919;
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 3.125rem;
}
@media (max-width: 768px) {
  .c-ticket-card {
    width: 100%;
  }
}

.u-contents-width-800 {
  max-width: 50rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.pc-br {
  display: none;
}
@media (min-width: 769px) {
  .pc-br {
    display: inline;
  }
}

.sp-br {
  display: none;
}
@media (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}

.u-no-break {
  white-space: nowrap;
}

/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 200;
  background-color: #ffffff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .header {
    height: 3.4375rem;
  }
}

.header-inner {
  width: 100%;
  max-width: 50rem;
  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;
  height: 6rem;
}
@media (max-width: 768px) {
  .header-inner {
    height: 3.4375rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 0 1.5rem;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .nav.active {
    right: 0;
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media (max-width: 768px) {
  .header-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 768px) {
  .hamburger {
    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;
    gap: 0.375rem;
    width: 3.125rem;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 250;
  }
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 0.1875rem;
  background: #191919;
  border-radius: 0.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger-text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.hamburger-text--close {
  display: none;
}

.hamburger.active .hamburger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(12px);
          transform: rotate(45deg) translateY(12px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-12px);
          transform: rotate(-45deg) translateY(-12px);
}
.hamburger.active .hamburger-text--open {
  display: none;
}
.hamburger.active .hamburger-text--close {
  display: block;
  padding-right: 1rem;
}

.header-logo {
  width: 9.375rem;
}
@media (max-width: 768px) {
  .header-logo {
    width: 6.25rem;
  }
}

.mainvisual-inner {
  padding-top: 6rem;
}
.mainvisual-inner img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .mainvisual-inner {
    padding-top: 3.4375rem;
  }
}

@media (max-width: 768px) {
  .mainvisual-pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .mainvisual-sp {
    display: none;
  }
}

.about {
  background-image: url("/assets/img/about_bg.webp");
  width: 100%;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.about-content > p {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 3.3;
}

.about-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8125rem;
}
@media (max-width: 768px) {
  .about-card-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-content > p {
    font-size: 1rem;
    line-height: 2;
  }
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-comedian {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.about-comedian__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.about-art {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.about-art__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.about-art__discription {
  background-color: #ffffff;
  padding: 1rem;
}
.about-art__discription h4 {
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.5rem;
}

.about-poster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-poster img {
  width: 45%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .about-poster {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .about-poster img {
    width: 100%;
  }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal__content {
  position: absolute;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal__img {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .modal__img {
    width: 100%;
  }
}

.modal__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 101;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.news {
  background: url("/assets/img/about_bg.webp") no-repeat center/cover;
}

.news-inner {
  border-radius: 3.75rem 3.75rem 0 0;
  background-color: #ede9f2;
  overflow: hidden;
  padding: 6rem 0;
  width: 100%;
}
@media (max-width: 768px) {
  .news-inner {
    padding: 4rem 1rem;
    border-radius: 2.8125rem 2.8125rem 0 0;
  }
}

.news-list {
  border: 0.25rem solid #191919;
  max-width: 800px;
  margin: 1rem auto 0;
  background-color: #ffffff;
}
.news-list__items {
  padding: 1.5rem;
  padding-top: 0;
  height: 18.75rem;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .news-list__items {
    height: 15rem;
  }
}
.news-list__item {
  padding: 1rem 0;
  border-bottom: 0.0625rem solid #191919;
}
.news-list__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .news-list__article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.25rem;
  }
}
.news-list__date {
  font-weight: 700;
  color: #ffffff;
  background-color: #831f88;
  padding: 1rem;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .news-list__date {
    padding: 0.5rem;
    margin-right: 0;
  }
}
.news-list__text {
  color: #191919;
  width: 37.5rem;
}
@media (max-width: 768px) {
  .news-list__text {
    width: 100%;
  }
}

/* ------------------------------
  ticket section
------------------------------ */
.ticket {
  position: relative;
  overflow: hidden;
  background-color: #ede9f2;
}
@media (max-width: 768px) {
  .ticket {
    background-attachment: scroll;
  }
}

/* ------------------------------
  inner
------------------------------ */
.ticket-inner {
  padding: 6rem 0;
  background-image: url("/assets/img/ticket-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  clip-path: ellipse(120% 100% at 50% 100%);
  background-attachment: scroll;
}
@media screen and (min-width: 1024px) {
  @supports (-webkit-touch-callout: none) {
    .ticket-inner {
      background-attachment: fixed;
    }
  }
}
@media (max-width: 768px) {
  .ticket-inner {
    clip-path: none;
    background-size: cover;
    padding: 4rem 0;
  }
}

/* ------------------------------
  ticket-price table
------------------------------ */
.ticket-price__table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
}
@media (max-width: 768px) {
  .ticket-price__head {
    display: none;
  }
}
.ticket-price__head-cell {
  padding: 1rem;
  text-align: center;
  border: 0.125rem solid #191919;
  background-color: #ffcc00;
  font-weight: bold;
}
@media (max-width: 768px) {
  .ticket-price__head-cell {
    display: block;
    width: auto;
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .ticket-price__body {
    display: block;
  }
}
@media (max-width: 768px) {
  .ticket-price__row {
    display: block;
    border: 0.125rem solid #191919;
    margin-bottom: 1rem;
  }
}
.ticket-price__cell {
  padding: 1.5rem;
  text-align: center;
  line-height: 1.8;
  background-color: #ffffff;
  border: 0.125rem solid #191919;
}
@media (max-width: 768px) {
  .ticket-price__cell {
    display: block;
    position: relative;
    padding: 1.5rem;
    text-align: center;
  }
  .ticket-price__cell::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 0.25rem;
    background-color: #ffcc00;
    padding: 0.25rem;
  }
}

.ticket-card-warp {
  display: grid;
  grid-template-columns: 21.875rem 21.875rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .ticket-card-warp {
    grid-template-columns: 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ticket-attention h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 2rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .ticket-attention h3 {
    font-size: 1.25rem;
  }
}

.ticket-attention h3::before,
.ticket-attention h3::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 0.0625rem;
  background-color: #191919;
}

.overview {
  background-image: url("/assets/img/overview-bg.webp");
  width: 100%;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .overview {
    padding: 4rem 0;
  }
}

.overview-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  background: #ffffff;
  border: 0.0625rem solid #191919;
}
@media (max-width: 768px) {
  .overview-table__row {
    display: block;
    border: 0.0625rem solid #191919;
  }
}
.overview-table__head {
  width: 11.25rem;
  background: #e9e9e9;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  padding: 1rem;
  border: 0.0625rem solid #191919;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .overview-table__head {
    display: block;
    width: 100%;
    text-align: center;
    background: #e9e9e9;
  }
}
.overview-table__data {
  padding: 1rem;
  border: 0.0625rem solid #191919;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .overview-table__data {
    display: block;
    border-top: none;
    text-align: center;
  }
}

.access {
  background: #ffffff;
}
.access .material-symbols-outlined {
  color: #ffffff;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1rem;
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
@media (max-width: 768px) {
  .access-inner {
    grid-template-columns: 1fr;
  }
}

.access-left {
  text-align: left;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  background: #0492b3;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .access-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 0;
    padding: 2rem 0;
  }
}

.access-left-inner {
  width: 25rem;
  padding: 6rem 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .access-left-inner {
    width: 100%;
    padding: 2rem 1rem;
  }
}

.access-left h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.access-left p {
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.access-left a {
  text-decoration: underline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: #ffffff;
}

.access-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.access-right iframe {
  width: 100%;
  height: 100%;
  min-height: 22.5rem;
  display: block;
}
@media (max-width: 768px) {
  .access-right iframe {
    min-height: 18.75rem;
  }
}

.contact {
  width: 100%;
  padding: 6rem 0;
  text-align: center;
}
.contact img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }
}

.contact .contact-inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem 0 0.5rem;
}

.contact-tel {
  font-size: 1.25rem;
}

.cooperation-wrap {
  padding-top: 4rem;
}
.cooperation-wrap > h4 {
  font-size: 1.25rem;
  font-weight: 700;
}
.cooperation-wrap > .cooperation-img {
  width: 20%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cooperation-wrap > .cooperation-img {
    width: 60%;
  }
}

footer {
  background: #f39800;
}
footer .material-symbols-outlined {
  color: #191919;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1rem;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .footer-inner {
    padding: 1.5rem 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.footer-logo {
  width: 20%;
}
@media (max-width: 768px) {
  .footer-logo {
    width: 7.5rem;
  }
}

.footer-nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 768px) {
  .footer-nav-wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer-nav-wrap nav {
  font-weight: 700;
}
.footer-nav-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-nav-wrap ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.footer-nav-wrap a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer small {
  display: block;
  padding-top: 1.5rem;
  text-align: center;
}