div#simple-head {
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0e417d;
}
div#simple-head div#logo {
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  div#simple-head div#logo {
    padding: 10px;
  }
}
@media only screen and (max-width: 768px) {
  div#simple-head div#logo {
    margin-bottom: 1em;
    padding: 10px;
  }
  div#simple-head div#logo img {
    margin: 0 auto;
    width: auto;
    height: 50px;
  }
}
div#simple-head div#logo img {
  margin: 0 auto;
  width: auto;
  height: 50px;
}
div#simple-head h1 {
  font-size: 2em;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  div#simple-head h1 {
    margin: 1em 0;
    font-size: 1.2em;
  }
}

.event-header {
  --color-white: white;
  --color-theme: #263357;
  position: relative;
  z-index: 1;
  padding-block: 13px;
  color: var(--color-white);
  font-size: 14px;
  background-color: var(--color-theme);
  backdrop-filter: blur(5.4px);
  /* GNAV */
}
.event-header .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 16px;
}
@media (width > 1200px) {
  .event-header .header-wrap {
    padding-inline: 0;
  }
}
.event-header a {
  color: currentColor;
  font-weight: bold;
}
.event-header .logo svg {
  width: 220px;
  aspect-ratio: 373/28;
  height: auto;
}
@media (width > 1200px) {
  .event-header .logo svg {
    width: 300px;
  }
}
.event-header .nav-pc {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .event-header .nav-pc {
    display: none;
  }
}
.event-header .nav-pc ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0 3px;
}
.event-header .nav-pc ul li {
  display: block;
}
.event-header .nav-pc ul li:last-of-type {
  --evt-header-button-color: #FFA830;
}
.event-header .nav-pc ul li a {
  padding: 12px 14px;
  text-align: center;
  display: block;
  line-height: 1;
  color: var(--color-theme);
  border: solid 1px var(--color-theme);
  background-color: var(--evt-header-button-color, #FFD800);
  border-radius: 4px;
  white-space: nowrap;
}
.event-header .nav-pc ul li a:hover {
  text-decoration: none;
}
@media (width > 1200px) {
  .event-header .nav-pc ul li a {
    min-width: 162px;
  }
}
.event-header .nav-pc ul li small {
  margin-left: 0.5em;
  font-size: 12px;
}
.event-header .nav-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .event-header .nav-sp {
    display: block;
  }
}
.event-header .nav-sp .menu-nav {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 14px;
}
.event-header .nav-sp .menu-nav .uk-button {
  padding: 0;
  background: none;
  min-width: unset;
  line-height: unset;
}
