@charset "UTF-8";
/* ==============================
   Main
============================== */
html, body {
  height: 100%;
  margin: 0;
}

.main {
  margin-top: 80px;
  flex: 1;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.news__label {
  display: inline-block;
  font-size: calc(10px + 0.3vw);
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 4px;
}

.news__label--info {
  background: #76A0FF;
  color: #fff;
}

.news__label--event {
  background: #FDD200;
  color: #fff;
}

.wp-block-list {
  list-style: decimal-leading;
}

.btn,
.ticket__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0067A9;
  color: #fff;
  position: relative;
  padding: 0.5rem 2.25rem 0.5rem 0.5rem;
  font-size: calc(13px + 0.5vw);
  width: 160px;
  height: 40px;
  border-radius: 6px;
}

.btn::after,
.ticket__btn::after {
  content: "";
  width: 1rem;
  height: 1.5rem;
  background-image: url(../images/btn-point.svg);
  background-size: cover;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.cnt__btn {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .cnt__btn {
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .btn,
  .ticket__btn {
    width: 360px;
    height: 40px;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

/* ==============================
   Header
============================== */
.header {
  background: #0067A9;
  color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0067A9;
  color: #fff;
  z-index: 1000;
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px;
  margin: 0 auto;
}

.header__logo {
  font-size: calc(16px + 0.5vw);
  font-weight: bold;
}

.header__list {
  margin: 0;
  border-top: 1px solid #fff;
}

.header__item a {
  color: #fff;
  display: block;
  padding: calc(14px + 0.3vw);
  font-size: calc(18px + 0.5vw);
  border-bottom: 1px solid #fff;
}
.header__item a:hover {
  background: #426AB3;
}

/* ハンバーガーメニュー開閉 */
.header__nav {
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  background: #0067A9;
  text-align: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.header__nav.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__menu-btn {
  position: relative;
  right: 10px;
  width: 36px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.header__menu-btn span {
  position: absolute;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__menu-btn span:nth-child(1) {
  top: 0;
}
.header__menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__menu-btn span:nth-child(3) {
  bottom: 0;
}
.header__menu-btn.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media (min-width: 1024px) {
  .header__menu-btn {
    display: none;
  }
  .header__nav {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: auto;
    background: none;
  }
  .header__list {
    display: flex;
    gap: 10px;
    border: none;
  }
  .header__item a {
    border: none;
    border-bottom: 1px solid transparent;
    padding: 0 calc(8px + 0.3vw);
    font-size: calc(11px + 0.5vw);
  }
  .header__item a:hover {
    background: none;
    border-bottom: solid 1px;
  }
  .header__item a.active {
    border-bottom-color: currentColor;
  }
}
/* ==============================
   Footer
============================== */
.footer {
  background: #0067A9;
  color: #fff;
  text-align: center;
  padding-top: calc(20px + 1vw);
}

.footer__name,
.footer__place,
.footer__org,
.footer__privacy {
  margin-bottom: calc(10px + 0.5vw);
}

.footer__place a {
  color: #fff;
  text-decoration: underline;
}

.footer__privacy {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
}

.footer__support {
  background: #fff;
  color: #000;
  padding: calc(10px + 0.5vw);
}

.footer__support-title {
  font-weight: bold;
  margin-bottom: calc(5px + 0.3vw);
}

.footer__support-item--sponsor ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__support-item--partner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__copy {
  padding: calc(2px + 0.5vw);
  font-size: calc(12px + 0.3vw);
}

/* ==============================
   To Top Button
============================== */
.footer {
  position: relative;
}

.to-top {
  position: absolute;
  top: -20px;
  right: 10px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0067A9;
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (min-width: 768px) {
  .to-top {
    right: 30px;
    bottom: 60px;
  }
}
/* ==============================
   ページネーション
============================== */
.pagination {
  margin: 2rem 0;
  text-align: center;
}
.pagination ul {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pagination li {
  display: inline-block;
}
.pagination li a,
.pagination li span {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination li a:hover,
.pagination li span:hover {
  background: #f0f0f0;
  border-color: #aaa;
}
.pagination li.current span {
  background: #333;
  color: #fff;
  border-color: #333;
}
.pagination li.disabled span {
  color: #bbb;
  border-color: #eee;
  background: #f9f9f9;
}
@media (min-width: 768px) {
  .pagination ul {
    gap: 0.75rem;
  }
  .pagination li a,
  .pagination li span {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .pagination li a,
  .pagination li span {
    padding: 0.7rem 1.4rem;
    font-size: 1.05rem;
  }
}/*# sourceMappingURL=common.css.map */