@charset "UTF-8";
/* ---------------------------
  A Modern CSS Reset
----------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul {
  padding: 0;
}

ul, ol {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------------------
  variable
----------------------------- */
:root {
  --black: #000000;
  --blue: #0093E2;
  --skyBlue: #29ABE2;
  --lightBlue: #92D3EF;
  --orange: #E56D12;
  --lightOrange: #FFE7C7;
  --gray: #808080;
  --lightGray: #F2F2F2;
  --red: #ED1C24;
  --indigo: #003399;
  --green: #29B5B2;
  --bgColor: var(--lightGray);
  --fontMainColor: var(--black);
  --fontSubColor: #777777;
  --borderColor: #eeeeee;
  --mainFont: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", Meiryo, sans-serif;
  --enFont: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", Meiryo, sans-serif;
  --scroll-padding-top: 100px;
  --scroll-padding-top-sp: 80px;
}

/* ---------------------------
  mixin
----------------------------- */
/* ---------------------------
  function
----------------------------- */
/* ---------------------------
  base
----------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-padding-top: var(--scroll-padding-top);
}
@media screen and (max-width: 640px) {
  html {
    scroll-padding-top: var(--scroll-padding-top-sp);
  }
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  color: var(--fontMainColor);
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--mainFont);
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

html.is_not_scroll, body.is_not_scroll {
  overflow: hidden;
}

a {
  color: var(--fontMainColor);
  text-decoration: none;
}

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

button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}

/* ---------------------------
  utility
----------------------------- */
.wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 640px) {
  .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.inner {
  max-width: 960px;
  margin: 0 auto;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------------------------
  component
----------------------------- */
.c-circle {
  display: block;
  background-color: var(--blue);
  border-radius: 2.5em;
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  padding: 0.8em 2em;
  font-weight: bold;
}
.c-circle--gray {
  background-color: var(--gray);
}
.c-circle--black {
  background-color: var(--black);
}
.c-circle--border {
  border: 1px solid #ffffff;
}

a.c-circle {
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  a.c-circle:hover {
    opacity: 0.7;
  }
}

.c-round {
  display: block;
  background-color: var(--blue);
  color: #ffffff;
  border-radius: 3px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  padding: 1em;
  margin-inline: auto;
  max-width: 160px;
}
@media screen and (max-width: 640px) {
  .c-round {
    padding: 0.8em 1em;
  }
}

a.c-round {
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  a.c-round:hover {
    opacity: 0.7;
  }
}

.c-must {
  display: block;
  background-color: var(--red);
  text-align: center;
  font-size: 10px;
  font-weight: bold;
}

.c-head {
  line-height: 1;
  color: var(--blue);
  text-align: center;
  font-family: var(--enFont);
  font-weight: bold;
  font-size: 42px;
  margin-bottom: 0.6em;
  text-transform: uppercase;
}
@media screen and (max-width: 896px) {
  .c-head {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .c-head {
    font-size: 21px;
    margin-bottom: 0.8em;
  }
}
.c-head span {
  display: block;
  text-align: center;
  font-family: var(--mainFont);
  font-weight: normal;
  font-size: 13px;
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  .c-head span {
    font-size: 11px;
  }
}
.c-head--white {
  color: #ffffff;
}

.c-circle-head {
  background-color: var(--blue);
  color: #ffffff;
  border-radius: 2.5em;
  font-size: 21px;
  padding: 0.4em 0.5em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .c-circle-head {
    font-size: 18px;
  }
}

.c-round-head {
  background-color: var(--blue);
  color: #ffffff;
  border-radius: 3px;
  font-size: 18px;
  padding: 0.4em 0.5em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .c-round-head {
    font-size: 16px;
  }
}

:root .c-cat {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 11px;
  padding: 0.2em;
  width: 80px;
}
:root .c-cat--present {
  background-color: var(--red);
  color: #ffffff;
}
:root .c-cat--event {
  background-color: var(--green);
  color: #ffffff;
}
:root .c-cat--magazine {
  background-color: var(--indigo);
  color: #ffffff;
}
:root .c-cat--program {
  background-color: var(--orange);
  color: #ffffff;
}
:root .c-cat--information {
  background-color: var(--blue);
  color: #ffffff;
}
:root .c-cat--banshin {
  background-color: var(--skyBlue);
  color: #ffffff;
}
:root .c-cat--orange {
  background-color: var(--orange);
  color: #ffffff;
  width: fit-content;
  padding: 0.2em 0.6em;
}

/* ---------------------------
  header
----------------------------- */
.header {
  width: 100%;
  border-bottom: 1px solid var(--borderColor);
}
@media screen and (max-width: 896px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
  }
}
.header > .wrapper {
  max-width: 1520px;
}
@media screen and (max-width: 896px) {
  .header > .wrapper {
    padding-right: 0;
    padding-left: 10px;
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100px;
  position: relative;
  padding-left: 240px;
}
@media screen and (max-width: 1220px) {
  .header-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
  }
}
@media screen and (max-width: 896px) {
  .header-wrapper {
    height: 50px;
    padding-left: 0;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
  }
}

.header__logo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  padding-top: 8px;
}
@media screen and (max-width: 640px) {
  .header__logo {
    padding-top: 4px;
  }
}
@media screen and (max-width: 896px) {
  .header__logo img {
    width: 95px;
    height: 55px;
  }
}
.header__logo a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header__logo a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 896px) {
  .g-nav {
    display: none;
  }
}

.g-nav-list {
  display: flex;
  align-items: center;
}

.g-nav-list__item:not(:last-of-type) {
  border-right: 1px solid #999999;
}
.g-nav-list__item a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 0 1.4em;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .g-nav-list__item a {
    padding: 0 1em;
  }
}
@media screen and (max-width: 1080px) {
  .g-nav-list__item a {
    padding: 0 0.5em;
  }
}
@media screen and (max-width: 1280px) {
  .g-nav-list__item a {
    font-size: 13px;
  }
}

.header__link {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1220px) {
  .header__link {
    margin-right: 12px;
  }
}
@media screen and (max-width: 1400px) {
  .header__link a {
    padding: 0.8em 1em;
  }
}
@media screen and (max-width: 1280px) {
  .header__link a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1220px) {
  .header__link a {
    padding: 0.4em 1.8em;
  }
}
@media screen and (max-width: 896px) {
  .header__link a {
    font-size: 11px;
    padding: 0.6em 1.8em;
  }
}
@media screen and (max-width: 896px) {
  .header__link a:last-of-type {
    display: none;
  }
}

.sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--blue);
  padding: 70px 20px 0;
  overflow-y: auto;
}

.sp-nav__main {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}

.sp-nav-link__item {
  margin-bottom: 15px;
}
.sp-nav-link__item a {
  padding: 1em;
  font-size: 14px;
}

.sp-nav-list {
  margin-top: 35px;
}

.sp-nav-list__item {
  border-bottom: 1px solid var(--blue);
}
.sp-nav-list__item:first-of-type {
  border-top: 1px solid var(--blue);
}
.sp-nav-list__item--secondary {
  border-top: 1px solid var(--blue);
  margin-top: 50px;
}
.sp-nav-list__item a {
  display: block;
  color: var(--blue);
  font-weight: bold;
  font-size: 14px;
  padding: 1em 0.8em;
  padding-right: 32px;
  background-image: url(../img/common/right_chevron_blue.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 7px;
}

.sp-nav__foot {
  margin-top: 20px;
  padding-bottom: 80px;
}
.sp-nav__foot img {
  margin-inline: auto;
}
.sp-nav__foot address {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-weight: bold;
  color: #ffffff;
  font-size: 13px;
  font-style: normal;
  margin-top: 16px;
}
.sp-nav__foot dl {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 38px auto;
  gap: 0 10px;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
}
.sp-nav__foot dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  font-family: var(--enFont);
  text-transform: uppercase;
  color: #ffffff;
}
.sp-nav__foot dd {
  font-weight: bold;
  font-size: 21px;
  font-family: var(--enFont);
  white-space: nowrap;
  color: #ffffff;
}

/* ---------------------------
  hamb
----------------------------- */
.hamburger {
  display: none;
  width: 50px;
  height: 50px;
  padding: 16px 12px;
  background-color: var(--blue);
  cursor: pointer;
  position: relative;
  z-index: 10000;
}
@media screen and (max-width: 896px) {
  .hamburger {
    display: block;
  }
}
.hamburger.is_active .hamburger__inner {
  transform: translateX(4px);
}
.hamburger.is_active .hamburger__inner span:nth-of-type(1) {
  transform: rotate(41deg);
}
.hamburger.is_active .hamburger__inner span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is_active .hamburger__inner span:nth-of-type(3) {
  transform: rotate(-41deg);
}

.hamburger__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}
.hamburger__inner span {
  display: block;
  width: 100%;
  height: 1px;
  opacity: 1;
  background-color: #fff;
  transform-origin: left;
  transition: 0.3s ease-in-out;
}

/* ---------------------------
  aside
----------------------------- */
.aside-section {
  padding: 40px 0 50px;
  border-top: 1px solid var(--borderColor);
}
@media screen and (max-width: 640px) {
  .aside-section {
    padding: 20px 0;
  }
}
.aside-section--nopd {
  padding: 0;
}

.aside-big-bnr {
  max-width: 1110px;
  margin-inline: auto;
  position: relative;
  padding: 0 55px;
}
@media screen and (max-width: 1080px) {
  .aside-big-bnr {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 640px) {
  .aside-big-bnr {
    padding: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.aside-big-bnr .swiper-slide img {
  aspect-ratio: 320/180;
  width: 100%;
  object-fit: cover;
  margin-inline: auto;
}
.aside-big-bnr .swiper-slide a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .aside-big-bnr .swiper-slide a:hover {
    opacity: 0.7;
  }
}
.aside-big-bnr .swiper-button-next,
.aside-big-bnr .swiper-button-prev {
  position: absolute;
  top: 0;
  cursor: pointer;
  width: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .aside-big-bnr .swiper-button-next,
  .aside-big-bnr .swiper-button-prev {
    display: none;
  }
}
.aside-big-bnr .swiper-button-next {
  left: auto;
  right: 0;
}
.aside-big-bnr .swiper-button-prev {
  left: 0;
  right: auto;
}

.aside-small-bnr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 896px) {
  .aside-small-bnr {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .aside-small-bnr {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

.aside-small-bnr__item img {
  width: 100%;
  aspect-ratio: 280/90;
  object-fit: cover;
}
.aside-small-bnr__item a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .aside-small-bnr__item a:hover {
    opacity: 0.7;
  }
}

.aside-club {
  background-image: url(../img/common/bg_wave_left.svg), url(../img/common/bg_wave_right.svg);
  background-repeat: no-repeat;
  background-size: 182px;
  background-position: top left, bottom right;
  padding: 50px 0;
}
@media screen and (max-width: 896px) {
  .aside-club {
    background-size: 100px;
  }
}
@media screen and (max-width: 640px) {
  .aside-club {
    background: none;
    padding: 20px 0;
  }
}

.aside-club__head {
  text-align: center;
  margin-bottom: 1em;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .aside-club__head {
    margin-bottom: 0.5em;
  }
}

.aside-club__img {
  margin-inline: auto;
}

.aside-club__more {
  margin-top: 32px;
  max-width: 280px;
  margin-inline: auto;
  font-size: 14px;
  padding: 1em;
}
@media screen and (max-width: 640px) {
  .aside-club__more {
    margin-top: 16px;
    max-width: 180px;
  }
}

/* ---------------------------
  footer
----------------------------- */
.footer {
  background-color: var(--blue);
  color: #ffffff;
}
@media screen and (max-width: 896px) {
  .footer {
    padding-bottom: 56px;
  }
}

.footer-body {
  padding: 80px 0;
  max-width: 1024px;
  margin-inline: auto;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .footer-body {
    padding: 64px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 640px) {
  .footer-body {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .footer-body__meta img {
    width: 60%;
    margin-inline: auto;
  }
}
.footer-body__meta address {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  margin: 2em 0 1em;
}
@media screen and (max-width: 896px) {
  .footer-body__meta address {
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .footer-body__meta address {
    font-size: 12px;
  }
}
.footer-body__meta dl {
  display: grid;
  grid-template-columns: 38px auto;
  gap: 0 10px;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
}
.footer-body__meta dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  font-family: var(--enFont);
  text-transform: uppercase;
}
.footer-body__meta dd {
  font-weight: bold;
  font-size: 21px;
  font-family: var(--enFont);
  white-space: nowrap;
}

.footer-nav {
  margin-top: 32px;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .footer-nav {
    margin-top: 24px;
  }
}
.footer-nav li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
.footer-nav a {
  display: block;
  padding-left: 1.5em;
  background-image: url(../img/common/right_chevron_white.svg);
  background-position: center left;
  background-size: 5px;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover {
    text-decoration: underline;
  }
}

.footer-info__hz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}
.footer-info__hz strong {
  font-family: var(--enFont);
  font-size: 36px;
}
.footer-info__hz span {
  display: inline-block;
  margin-left: 0.2em;
  font-weight: bold;
  font-family: var(--enFont);
  font-size: 0.5em;
}

.footer-info__area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 13px;
  margin-top: 10px;
}
.footer-info__area li {
  font-size: 13px;
}

.footer-body__link li:not(:last-of-type) {
  margin-bottom: 10px;
}
.footer-body__link a {
  width: 200px;
}

.footer-foot {
  text-align: center;
  border-top: 1px solid #ffffff;
  padding: 0.8em;
}
@media screen and (max-width: 640px) {
  .footer-foot {
    padding: 0;
    padding-top: 0.1em;
    padding-bottom: 0.3em;
  }
}
.footer-foot small {
  font-size: 11px;
}
@media screen and (max-width: 640px) {
  .footer-foot small {
    font-size: 10px;
  }
}

.sp-bottom-menu {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
@media screen and (max-width: 896px) {
  .sp-bottom-menu {
    display: block;
  }
}
.sp-bottom-menu ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}
.sp-bottom-menu li {
  background-color: #003399;
}
.sp-bottom-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  height: 55px;
}
.sp-bottom-menu span {
  color: #ffffff;
  font-weight: bold;
  line-height: 1.3;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .sp-bottom-menu span {
    font-size: 11px;
  }
}

/* ---------------------------
  post
----------------------------- */
.post > *,
.wp-editor > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.post > *:first-child,
.wp-editor > *:first-child {
  margin-top: 0 !important;
}
.post > *:last-child,
.wp-editor > *:last-child {
  margin-bottom: 0 !important;
}
.post h1:not([class]),
.wp-editor h1:not([class]) {
  font-size: 32px;
  font-weight: bold;
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .post h1:not([class]),
  .wp-editor h1:not([class]) {
    font-size: 28px;
  }
}
.post h2:not([class]),
.wp-editor h2:not([class]) {
  font-size: 28px;
  font-weight: bold;
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .post h2:not([class]),
  .wp-editor h2:not([class]) {
    font-size: 24px;
  }
}
.post h3:not([class]),
.wp-editor h3:not([class]) {
  margin-top: 2em;
  font-size: 20px;
  font-weight: bold;
  color: var(--fontSubColor);
}
.post h4:not([class]),
.wp-editor h4:not([class]) {
  margin-top: 1.5em;
  font-size: 18px;
  font-weight: bold;
}
.post h5:not([class]),
.wp-editor h5:not([class]) {
  font-size: 16px;
  font-weight: bold;
}
.post h6:not([class]),
.wp-editor h6:not([class]) {
  font-size: 14px;
  font-weight: bold;
}
.post p:not([class]),
.wp-editor p:not([class]) {
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .post p:not([class]),
  .wp-editor p:not([class]) {
    font-size: 14px;
  }
}
.post strong, .post strong > *,
.wp-editor strong,
.wp-editor strong > * {
  font-weight: bold;
}
.post em, .post em > *,
.wp-editor em,
.wp-editor em > * {
  font-style: italic;
}
.post blockquote,
.wp-editor blockquote {
  padding: 0.5em;
  background-color: #f2f2f2;
}
.post a:not([class]),
.wp-editor a:not([class]) {
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
  color: var(--fontSubColor);
}
@media (hover: hover) and (pointer: fine) {
  .post a:not([class]):hover,
  .wp-editor a:not([class]):hover {
    text-decoration: none;
  }
}
.post ul:not([class]),
.wp-editor ul:not([class]) {
  list-style: disc;
  margin: 2em 0;
  padding-left: 1.5em;
}
.post ul:not([class]) li,
.wp-editor ul:not([class]) li {
  font-size: 16px;
  margin: 1em 0;
}
@media screen and (max-width: 640px) {
  .post ul:not([class]) li,
  .wp-editor ul:not([class]) li {
    font-size: 15px;
  }
}
.post ul:not([class]) li::marker,
.wp-editor ul:not([class]) li::marker {
  color: #ccc;
  font-size: 1em;
}
.post ol:not([class]),
.wp-editor ol:not([class]) {
  list-style: decimal;
  margin: 2em 0;
  padding-left: 1.5em;
}
.post ol:not([class]) li,
.wp-editor ol:not([class]) li {
  font-size: 16px;
  margin: 1em 0;
}
@media screen and (max-width: 640px) {
  .post ol:not([class]) li,
  .wp-editor ol:not([class]) li {
    font-size: 15px;
  }
}
.post .aligncenter,
.wp-editor .aligncenter {
  text-align: center;
}
.post .alignleft,
.wp-editor .alignleft {
  text-align: left;
}
.post .alignright,
.wp-editor .alignright {
  text-align: right;
}
.post img,
.wp-editor img {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.post img.aligncenter,
.wp-editor img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post img.alignleft,
.wp-editor img.alignleft {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.post img.alignright,
.wp-editor img.alignright {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

/* ---------------------------
  hero
----------------------------- */
.hero {
  position: relative;
  background-image: url(../img/top/hero_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 896px) {
  .hero {
    margin-top: 50px;
  }
}
.hero::after {
  content: "";
  width: 100%;
  height: 5vw;
  background-image: url(../img/top/bg_blue_top.svg);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 10;
}
/* @media screen and (max-width: 896px) {
  .hero::after {
    display: none;
  }
} */
.hero__headline {
  width: fit-content;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  z-index: 1000;
  background-color: var(--orange);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 0.35em 2.2em;
  border-radius: 2em;
  white-space: nowrap;
}
@media screen and (max-width: 896px) {
  .hero__headline {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .hero__headline {
    font-size: 13px;
    translate: -50% 11px;
  }
}
.hero .swiper {
  padding: 32px 0;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 640px) {
  .hero .swiper {
    padding: 48px 0 25px;
  }
}
.hero .swiper-slide {
  scale: 0.9;
  transition: scale .2s ease-in;
}
.hero .swiper-slide.swiper-slide-active {
  scale: 1;
}
.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1280 / 720;
}
.hero .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0 20px;
}
@media screen and (max-width: 640px) {
  .hero .swiper-pagination {
    gap: 8px;
  }
}
.hero .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #fff;
  opacity: 1;
  margin: 0!important;
}
.hero .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  background-color: var(--orange);
}
@media screen and (max-width: 640px) {
  .hero .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
  .hero .swiper-pagination-bullet-active {
    width: 7px;
    height: 7px;
  }
}
.hero .swiper-button-prev,
.hero .swiper-button-next {
  width: 60px;
  height: 60px;
  transition: .2s opacity ease-in;
}
@media screen and (max-width: 896px) {
  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 640px) {
  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    display: none;
  }
}
.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  opacity: 0.8;
}
.hero .swiper-button-prev {
  left: 40px;
}
@media screen and (max-width: 896px) {
  .hero .swiper-button-prev {
    left: 20px;
  }
}
.hero .swiper-button-next {
  right: 40px;
}
@media screen and (max-width: 896px) {
  .hero .swiper-button-next {
    right: 20px;
  }
}

/* ---------------------------
  news
----------------------------- */
.top-news-section {
  position: relative;
  background: linear-gradient(to bottom, rgb(0, 147, 226) 20%, rgb(41, 171, 226) 80%);
  padding-top: 30px;
  padding-bottom: 120px;
}
@media screen and (max-width: 896px) {
  .top-news-section {
    padding-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .top-news-section {
    padding-top: 22px;
    padding-bottom: 20px;
  }
}
.top-news-section::after {
  content: "";
  width: 100%;
  height: 5vw;
  background-image: url(../img/top/bg_white_bottom.svg);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 896px) {
  .top-news-section::after {
    display: none;
  }
}

.top-news-layout {
  display: grid;
  grid-template-columns: 7.4fr 2.6fr;
  gap: 30px;
}
@media screen and (max-width: 896px) {
  .top-news-layout {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .top-news-layout {
    gap: 20px;
  }
}

.top-news-layout__news {
  height: 100%;
}

@media screen and (max-width: 896px) {
  .top-news-layout__other {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.top-nowonair {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.top-nowonair__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--orange);
  padding: 10px;
}
.top-nowonair__head span {
  color: #ffffff;
  font-weight: bold;
  font-size: 21px;
  font-family: var(--enFont);
  text-transform: uppercase;
}
@media screen and (max-width: 1080px) {
  .top-nowonair__head span {
    font-size: 16px;
  }
}

.top-nowonair__body {
  padding: 16px 16px 20px;
}
.top-nowonair__body .c-circle {
  padding: 0.5em;
  font-size: 11px;
}
.top-nowonair__body a {
  display: block;
  text-align: center;
  margin-top: 0.8em;
  font-size: 14px;
  font-weight: bold;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .top-nowonair__body a:hover {
    text-decoration: underline;
  }
}
.top-nowonair__body .noprogram {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

#soundwave {
	height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
/*     background: black; */
}

.bar {
    background: var(--blue);
    bottom: 1px;
    height: 3px;
    width: 6px;
    margin: 0px 6px;
    border-radius: 3px;
    animation: sound 0ms -600ms linear infinite alternate;
}

@keyframes sound {
    0% {
       opacity: .35;
        height: 3px;
    }
    100% {
        opacity: 1;
        height: 30px;
    }
}

.bar:nth-child(1)  { left: 1px; animation-duration: 474ms; }
.bar:nth-child(2)  { left: 15px; animation-duration: 433ms; }
.bar:nth-child(3)  { left: 29px; animation-duration: 407ms; }
.bar:nth-child(4)  { left: 43px; animation-duration: 458ms; }
.bar:nth-child(5)  { left: 57px; animation-duration: 400ms; }
.bar:nth-child(6)  { left: 71px; animation-duration: 427ms; }
.bar:nth-child(7)  { left: 85px; animation-duration: 441ms; }
.bar:nth-child(8)  { left: 99px; animation-duration: 419ms; }
.bar:nth-child(9)  { left: 113px; animation-duration: 487ms; }
.bar:nth-child(10) { left: 127px; animation-duration: 442ms; }

.top-bnr {
  margin-top: 20px;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}
.top-bnr img {
  width: 100%;
}

.top-news-control {
  display: flex;
  gap: 1px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 896px) {
  .top-news-control {
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  .top-news-control {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .top-news-control {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.top-news-control__button {
  max-width: 100px;
  width: 100%;
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  padding: 0.8em 0.5em;
  background-color: #E6E6E6;
  color: var(--black);
  cursor: pointer;
}
.top-news-control__button.is_active {
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .top-news-control__button {
    font-size: 10px;
    padding: 1em 0;
    width: 16.6666666667%;
  }
}
@media screen and (max-width: 480px) {
  .top-news-control__button {
    width: fit-content;
    padding: 1.2em 0.5em;
  }
}

.top-news-display {
  height: calc(100% - 40px);
  background-color: #fff;
  padding: 32px 40px 48px;
  border-radius: 8px;
}
@media screen and (max-width: 640px) {
  .top-news-display {
    padding: 6px 10px 16px;
  }
}

.top-news-display__item {
  display: none;
}
.top-news-display__item.is_active {
  display: block;
}

.top-news-more {
  margin-top: 32px;
}
@media screen and (max-width: 640px) {
  .top-news-more {
    margin-top: 15px;
  }
}

/* ---------------------------
  program
----------------------------- */
.top-program-section {
  padding-top: 10px;
  padding-bottom: 48px;
}
@media screen and (max-width: 896px) {
  .top-program-section {
    padding-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .top-program-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.top-program .swiper-wrapper {
  transition-timing-function: linear !important;
}

.top-program__item {
  width: 340px;
  min-width: 340px;
}
@media screen and (max-width: 640px) {
  .top-program__item {
    width: auto;
    min-width: inherit;
  }
}
.top-program__item a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .top-program__item a:hover {
    opacity: 0.7;
  }
}
.top-program__item img {
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .top-program__item img {
    width: 100%;
  }
}
.top-program__item .time {
  font-size: 11px;
  text-align: left;
  width: fit-content;
  margin-top: 1em;
  padding: 0.4em 1.5em;
  margin-left: 10px;
}
.top-program__item .title {
  font-weight: bold;
  font-size: 16px;
  padding-left: 10px;
  margin-top: 0.5em;
}
@media screen and (max-width: 640px) {
  .top-program__item .title {
    font-size: 14px;
  }
}

/* ---------------------------
  topics
----------------------------- */
.top-topics-section {
  padding: 48px 0;
  border-top: 1px solid var(--borderColor);
}
@media screen and (max-width: 640px) {
  .top-topics-section {
    padding: 20px 0;
  }
}

.topics-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}
@media screen and (max-width: 1080px) {
  .topics-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 896px) {
  .topics-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .topics-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 640px) {
  .topics-list__item:nth-of-type(5), .topics-list__item:nth-of-type(6), .topics-list__item:nth-of-type(7), .topics-list__item:nth-of-type(8) {
    display: none;
  }
}
.topics-list__item a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .topics-list__item a:hover {
    opacity: 0.7;
  }
}
.topics-list__item img {
  border-radius: 8px;
}
.topics-list__item .tag {
  background-color: var(--orange);
  color: #ffffff;
  font-weight: bold;
  width: fit-content;
  padding: 0.2em 1em;
  font-size: 12px;
  margin-top: 1.2em;
}
@media screen and (max-width: 640px) {
  .topics-list__item .tag {
    margin-top: 0.8em;
  }
}
.topics-list__item .title {
  font-weight: bold;
  font-size: 14px;
  margin-top: 0.8em;
}
@media screen and (max-width: 640px) {
  .topics-list__item .title {
    font-size: 13px;
    margin-top: 0.5em;
  }
}

.top-topics-more {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .top-topics-more {
    margin-top: 15px;
  }
}

/* ---------------------------
  single
----------------------------- */
.single-common-layout {
  display: grid;
  gap: 60px;
  grid-template-columns: 4fr 6fr;
  padding: 60px;
  background-color: var(--bgColor);
  border-radius: 8px;
}
@media screen and (max-width: 1280px) {
  .single-common-layout {
    padding: 40px;
    gap: 40px;
  }
}
@media screen and (max-width: 896px) {
  .single-common-layout {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .single-common-layout {
    padding: 24px 20px;
    gap: 20px;
  }
}

.single-common-layout__content {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 40px 40px;
}
@media screen and (max-width: 640px) {
  .single-common-layout__content {
    padding: 24px 20px 24px;
  }
}

.single-common-layout__thumb img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.single-common-back {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .single-common-back {
    gap: 16px;
  }
}
.single-common-back a {
  width: 50%;
  max-width: 200px;
}
@media screen and (max-width: 640px) {
  .single-common-back a {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ---------------------------
  page - common
----------------------------- */
.cover {
  background-color: var(--skyBlue);
  background-image: url(../img/common/cover_bg.svg);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 130px;
}
@media screen and (max-width: 896px) {
  .cover {
    margin-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .cover {
    height: 100px;
  }
}

.cover__title {
  color: #ffffff;
  font-weight: bold;
  font-size: 28px;
  padding-top: 32px;
}
@media screen and (max-width: 896px) {
  .cover__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .cover__title {
    font-size: 20px;
    padding-top: 1.5em;
  }
}

.page-wrapper {
  padding: 30px 0 50px;
}
@media screen and (max-width: 640px) {
  .page-wrapper {
    padding: 24px 0 40px;
  }
}

/* ---------------------------
  about
----------------------------- */
.about-logo img {
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .about-logo img {
    width: 60%;
  }
}

.about-lead {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 2em;
  margin-top: 1em;
}
@media screen and (max-width: 896px) {
  .about-lead {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .about-lead {
    font-size: 18px;
  }
}

.about-2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 896px) {
  .about-2cols {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.about-2cols + .about-2cols {
  margin-top: 32px;
}
.about-2cols h3 {
  color: var(--blue);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  .about-2cols h3 {
    font-size: 16px;
  }
}
.about-2cols p, .about-2cols li {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
}
.about-2cols figcaption {
  font-size: 12px;
  width: 100%;
  max-width: 240px;
  margin-inline: auto;
  margin-top: 16px;
}
.about-2cols img {
  margin-inline: auto;
  width: 100%;
}

.about-child-section {
  margin-top: 50px;
  padding: 30px 60px;
  border: 10px solid var(--lightBlue);
  border-radius: 8px;
}
@media screen and (max-width: 896px) {
  .about-child-section {
    padding: 30px 40px;
    border-width: 5px;
  }
}
@media screen and (max-width: 640px) {
  .about-child-section {
    margin-top: 40px;
    padding: 30px 20px;
  }
}

.about-info {
  display: grid;
  grid-template-columns: 120px auto;
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  .about-info {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-info dt, .about-info dd {
  padding: 1em;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid var(--borderColor);
}
@media screen and (max-width: 640px) {
  .about-info dt, .about-info dd {
    font-size: 13px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .about-info dt {
    border: none;
    padding-bottom: 0;
  }
}

.about-how-lead {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1.5em;
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .about-how-lead {
    font-size: 16px;
  }
}

.about-how {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 780px;
  margin-inline: auto;
}
@media screen and (max-width: 896px) {
  .about-how {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
.about-how img {
  margin-inline: auto;
}
.about-how h4 {
  font-size: 21px;
  text-align: center;
  font-weight: bold;
  color: var(--orange);
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  .about-how h4 {
    font-size: 18px;
  }
}
.about-how p {
  margin-top: 0.5em;
  max-width: 300px;
  margin-inline: auto;
  font-size: 14px;
  font-weight: bold;
}
.about-how a {
  color: var(--blue);
  font-weight: bold;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .about-how a:hover {
    text-decoration: underline;
  }
}

/* ---------------------------
  club
----------------------------- */
.club-section {
  padding: 30px 60px;
  border: 10px solid var(--lightBlue);
  border-radius: 8px;
}
@media screen and (max-width: 1280px) {
  .club-section {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 896px) {
  .club-section {
    border-width: 5px;
  }
}
@media screen and (max-width: 640px) {
  .club-section {
    padding: 24px 16px;
  }
}
.club-section + .club-section {
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .club-section + .club-section {
    margin-top: 20px;
  }
}
.club-section .c-circle-head {
  margin-bottom: 1.5em;
}

.club-2cols {
  display: grid;
  grid-template-columns: 240px auto;
  gap: 40px;
}
@media screen and (max-width: 896px) {
  .club-2cols {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
@media screen and (max-width: 640px) {
  .club-2cols {
    gap: 24px;
  }
}
.club-2cols > div > *:first-child {
  margin-top: 0 !important;
}
.club-2cols h3 {
  color: var(--blue);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0.5em;
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .club-2cols h3 {
    font-size: 17px;
  }
}
.club-2cols p:not([class]) {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.75;
}
.club-2cols .c-round {
  margin-top: 28px;
  font-size: 18px;
  max-width: 330px;
  padding: 1.2em 1em;
}
@media screen and (max-width: 640px) {
  .club-2cols .c-round {
    font-size: 15px;
    padding: 1em;
    margin-top: 24px;
  }
}
.club-2cols img {
  margin-inline: auto;
}
.club-2cols figcaption {
  margin-top: 20px;
  font-size: 12px;
  max-width: 240px;
  margin-inline: auto;
}

.club-chart {
  margin-top: 32px;
}
@media screen and (max-width: 640px) {
  .club-chart {
    margin-top: 20px;
  }
}
.club-chart img {
  margin-inline: auto;
}

h3 + .club-merit {
  margin-top: 0;
}

.club-merit {
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .club-merit {
    margin-top: 1em;
  }
}
.club-merit li {
  background-color: var(--lightOrange);
  border: 5px solid var(--orange);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  padding: 0.9em 1em;
}
@media screen and (max-width: 896px) {
  .club-merit li {
    border-width: 3px;
    font-size: 13px;
  }
}
.club-merit li:not(:last-of-type) {
  margin-bottom: 10px;
}

.club-price {
  font-size: 21px;
  color: var(--blue);
  font-weight: bold;
  margin-inline: auto;
  border: 3px solid var(--blue);
  border-radius: 2.5em;
  padding: 0.3em 1em;
  width: fit-content;
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .club-price {
    font-size: 18px;
  }
}

.club-price-notice {
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  margin-top: 1.2em;
}

/* ---------------------------
  form
----------------------------- */
.form-wrapper {
  background-color: var(--bgColor);
  padding: 60px;
  border-radius: 8px;
}
@media screen and (max-width: 1280px) {
  .form-wrapper {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .form-wrapper {
    padding: 24px 20px;
  }
}

.form-head {
  margin-bottom: 1.5em;
  padding: 1em;
}

.form-lead {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .form-lead {
    font-size: 13px;
  }
}
.form-lead span {
  font-weight: bold;
  color: var(--red);
}

.form-link {
  width: fit-content;
  margin-inline: auto;
  margin-top: 1.5em;
}

.form-container {
  background-color: #fff;
  margin-top: 30px;
  padding: 40px;
  border-radius: 8px;
}
@media screen and (max-width: 640px) {
  .form-container {
    padding: 20px 16px 24px;
    margin-top: 24px;
  }
}

.form {
  max-width: 400px;
  margin-inline: auto;
}
.form input[type=text],
.form input[type=email],
.form textarea,
.form select {
  display: block;
  width: 100%;
  border: 3px solid #E6E6E6;
  border-radius: 5px;
  padding: 0.5em 1em;
  font-size: 16px;
  height: 50px;
}
.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form textarea::placeholder,
.form select::placeholder {
  color: #B3B3B3;
  font-weight: normal;
  font-family: var(--mainFont);
}
.form select {
  color: #1A1A1A;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url(../img/common/select.svg);
  background-size: 8px;
  background-position: right 16px center;
  background-repeat: no-repeat;
}
.form textarea {
  height: 180px;
  resize: vertical;
}
.form dt {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.form dt span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 20px;
  background-color: var(--red);
  font-weight: bold;
  color: #ffffff;
  font-size: 10px;
  border-radius: 3px;
  white-space: nowrap;
}
.form dd {
  margin-bottom: 20px;
}
.form .half {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.form .short {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form .short input {
  max-width: 70px;
}
.form .short span {
  font-size: 14px;
}
.form .middle input {
  max-width: 115px;
}
.form .radio {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form .radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form .radio input[type=radio] {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 20px;
  height: 20px;
  border: 3px solid #E6E6E6;
  border-radius: 50%;
  background-color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
}
.form .radio input[type=radio]:checked::after {
  content: "";
  display: block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background-color: var(--blue);
}
.form .submit {
  max-width: 200px;
  width: 100%;
  padding: 1.2em;
  margin-top: 32px;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .form .submit:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 640px) {
  .form .submit {
    margin-top: 24px;
  }
}

.form-input-screen:has(+ .mw_wp_form_complete) {
  display: none;
}

.mw_wp_form_complete h2 {
  text-align: center;
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .mw_wp_form_complete h2 {
    font-size: 20px;
  }
}
.mw_wp_form_complete p {
  text-align: center;
  font-size: 14px;
  line-height: 2;
}
.mw_wp_form_complete .c-circle {
  margin-top: 32px;
  max-width: 200px;
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .mw_wp_form_complete .c-circle {
    margin-top: 24px;
  }
}

/* ---------------------------
  message
----------------------------- */
.message-2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1080px) {
  .message-2cols {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
@media screen and (max-width: 1080px) {
  .message-2cols > div:first-of-type {
    order: 2;
  }
}

.message-head {
  max-width: 260px;
  margin-inline: auto;
  margin-bottom: 2.3em;
}
@media screen and (max-width: 640px) {
  .message-head {
    margin-bottom: 1.5em;
  }
}

.message-fax {
  width: fit-content;
  margin-inline: auto;
  font-weight: bold;
  font-family: var(--enFont);
  font-size: 32px;
  line-height: 1;
  padding-left: 42px;
  background-image: url(../img/common/fax.svg);
  background-size: 32px;
  background-position: left center;
  background-repeat: no-repeat;
}

.message-fax-notice {
  text-align: center;
  margin-top: 1.2em;
  font-size: 13px;
  font-weight: bold;
}

/* ---------------------------
  404
----------------------------- */
.page404 h2 img {
  margin-inline: auto;
}
.page404 h3 {
  margin-top: 1.5em;
  text-align: center;
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  .page404 h3 {
    font-size: 18px;
  }
}
.page404 p {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .page404 p {
    font-size: 14px;
  }
}
.page404 a {
  max-width: 120px;
  margin-inline: auto;
  margin-top: 32px;
}

.privacy h2 {
  padding-left: 0.5em;
  line-height: 1.2;
  border-left: 4px solid var(--blue);
  margin-bottom: 1em;
  margin-top: 2em;
  font-size: 16px;
}
.privacy p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 1em;
}

/* ---------------------------
  news - archive
----------------------------- */
.news-list__item {
  border-bottom: 1px solid var(--borderColor);
}
.news-list__item a {
  display: grid;
  grid-template-columns: 100px 80px auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
@media screen and (max-width: 896px) {
  .news-list__item a {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 640px) {
  .news-list__item a {
    display: flex;
    flex-wrap: wrap;
    padding: 12px 10px;
    gap: 8px 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-list__item a:hover .title {
    text-decoration: underline;
  }
}
.news-list__item time {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .news-list__item time {
    font-size: 12px;
  }
}
.news-list__item .title {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .news-list__item .title {
    font-size: 13px;
    width: 100%;
  }
}

.news-category {
  display: flex;
  gap: 1px;
  padding-left: 40px;
}
@media screen and (max-width: 640px) {
  .news-category {
    padding-left: 10px;
  }
}

.news-category__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  background-color: #E6E6E6;
  font-weight: bold;
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .news-category__item a {
    font-size: 10px;
    width: fit-content;
    padding: 0 0.5em;
  }
}
.news-category__item.current a {
  background-color: var(--skyBlue);
  color: #ffffff;
}

.news-list-container {
  border: 1px solid var(--borderColor);
  padding: 20px 40px 40px;
  border-radius: 8px;
}
@media screen and (max-width: 640px) {
  .news-list-container {
    padding: 20px 16px;
    padding-top: 10px;
  }
}

/* ---------------------------
  page navi
----------------------------- */
.wp-pagenavi {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi {
    margin-top: 20px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border: 1px solid var(--gray);
  transition: 0.3s ease-in-out;
  margin: 0;
}
.wp-pagenavi span.current {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--skyBlue);
}
.wp-pagenavi a {
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi a:hover {
    opacity: 0.7;
  }
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 5px;
  background-position: center;
}
.wp-pagenavi .previouspostslink {
  background-image: url(../img/common/post_prev.svg);
}
.wp-pagenavi .nextpostslink {
  background-image: url(../img/common/post_next.svg);
}

/* ---------------------------
  news - single
----------------------------- */
.news-single__head {
  margin-bottom: 20px;
}
.news-single__head h1 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: bold;
  padding-left: 0.5em;
  border-left: 5px solid var(--blue);
  margin-bottom: 1em;
}
.news-single__head .meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-single__head time {
  font-size: 14px;
  font-weight: bold;
}

.news-single__body {
  border-bottom: 1px solid var(--borderColor);
  border-top: 1px solid var(--borderColor);
  padding: 20px 0 60px;
}

.news-single__back {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.news-single__back a {
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .news-single__back a:hover {
    opacity: 0.7;
  }
}
.news-single__back .archive {
  background-color: var(--blue);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  font-size: 13px;
  padding: 0.5em 1em;
}
.news-single__back .prev, .news-single__back .next {
  border: 1px solid var(--gray);
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-size: 4px;
  background-position: center;
}
.news-single__back .prev {
  background-image: url(../img/common/post_prev.svg);
}
.news-single__back .next {
  background-image: url(../img/common/post_next.svg);
}

/* ---------------------------
  program - archive
----------------------------- */
.program-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 896px) {
  .program-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .program-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.program-list__item {
  border: 5px solid var(--lightGray);
  border-radius: 5px;
  padding: 16px 16px 24px;
}
@media screen and (max-width: 896px) {
  .program-list__item {
    border-width: 3px;
  }
}
@media screen and (max-width: 640px) {
  .program-list__item {
    max-width: 380px;
    margin-inline: auto;
  }
}
.program-list__item article {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.program-list__item img {
  border-radius: 5px;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 1280/720;
}
@media screen and (max-width: 896px) {
  .program-list__item img {
    width: 100%;
  }
}
.program-list__item h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--blue);
  text-align: center;
  line-height: 1.2;
  margin-top: 1em;
}
@media screen and (max-width: 896px) {
  .program-list__item h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .program-list__item h2 {
    font-size: 18px;
  }
}
.program-list__item .sponsor {
  margin-bottom: 2em;
  font-size: 13px;
  font-weight: bold;
}
.program-list__item .sponsor a {
  font-size: 13px;
  font-weight: bold;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .program-list__item .sponsor a:hover {
    text-decoration: underline;
  }
}
.program-list__item .sponsor span {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 11px;
  padding: 0.5em 1.2em;
  margin-bottom: 0.5em;
  background-color: var(--black);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  border-radius: 2.5em;
}
.program-list__item .time {
  display: inline-block;
  font-size: 11px;
  margin-top: 1.2em;
  margin-bottom: 2em;
  padding: 0.5em 1.5em;
  background-color: var(--black);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  border-radius: 2.5em;
}
.program-list__item .more {
  margin-top: auto;
  max-width: 200px;
  width: 100%;
}

/* ---------------------------
  program - single
----------------------------- */
.program-single {
  padding-left: 14px;
}
@media screen and (max-width: 640px) {
  .program-single {
    padding-left: 0;
  }
}
.program-single h1 {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  .program-single h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .program-single h1 {
    font-size: 18px;
  }
}
.program-single .time {
  display: inline-block;
  font-size: 11px;
  margin-top: 1.2em;
  padding: 0.5em 1.5em;
  background-color: var(--black);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  border-radius: 2.5em;
}
.program-single .personality {
  margin-top: 30px;
  padding-left: 32px;
  background-image: url(../img/common/mic.svg);
  background-repeat: no-repeat;
  background-size: 21px;
  background-position: left center;
  display: flex;
  gap: 10px;
}
.program-single .personality a {
  font-size: 12px;
  padding: 0.5em 1.5em;
}
.program-single .text {
  padding: 1em;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.8;
  margin: 1em 0;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  margin-left: -14px;
}
@media screen and (max-width: 640px) {
  .program-single .text {
    margin-left: 0;
    font-size: 13px;
    padding-left: 0;
    padding-right: 0;
  }
}
.program-single .sponsor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.7em;
  font-size: 13px;
  font-weight: bold;
}
.program-single .sponsor a {
  font-size: 13px;
  font-weight: bold;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .program-single .sponsor a:hover {
    text-decoration: underline;
  }
}
.program-single .sponsor span {
  display: inline-block;
  font-size: 11px;
  padding: 0.5em 1.2em;
  background-color: var(--black);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  border-radius: 2.5em;
}
.program-single .message {
  margin-top: 32px;
  max-width: 200px;
  width: 100%;
  margin-inline: auto;
}

/* ---------------------------
  personality - archive
----------------------------- */
.personality-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 896px) {
  .personality-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .personality-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.personality-list__item {
  border: 5px solid var(--lightGray);
  border-radius: 5px;
  padding: 16px 16px 24px;
}
@media screen and (max-width: 896px) {
  .personality-list__item {
    border-width: 3px;
  }
}
@media screen and (max-width: 640px) {
  .personality-list__item {
    max-width: 380px;
    margin-inline: auto;
  }
}
.personality-list__item img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 340/212;
}
.personality-list__item h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 1em;
}
@media screen and (max-width: 896px) {
  .personality-list__item h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .personality-list__item h2 {
    font-size: 18px;
  }
}
.personality-list__item .en {
  font-size: 13px;
  text-align: center;
  margin-top: 0.2em;
}
@media screen and (max-width: 640px) {
  .personality-list__item .en {
    font-size: 11px;
  }
}
.personality-list__item .more {
  margin-top: 24px;
  max-width: 200px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .personality-list__item .more {
    margin-top: 20px;
  }
}

/* ---------------------------
  personality - single
----------------------------- */
.personality-single h1 {
  font-size: 24px;
  font-weight: bold;
  padding-left: 14px;
}
@media screen and (max-width: 896px) {
  .personality-single h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .personality-single h1 {
    font-size: 18px;
    padding-left: 0;
  }
}
.personality-single .en {
  font-size: 13px;
  font-weight: normal;
  padding-left: 14px;
  color: #777777;
  margin-top: 0.4em;
}
@media screen and (max-width: 640px) {
  .personality-single .en {
    font-size: 11px;
    padding-left: 0;
  }
}
.personality-single .text {
  padding: 1em;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 1em;
  border-bottom: 1px solid var(--borderColor);
  border-top: 1px solid var(--borderColor);
}
@media screen and (max-width: 640px) {
  .personality-single .text {
    padding-left: 0;
    padding-right: 0;
    font-size: 13px;
  }
}
.personality-single dl {
  display: grid;
  grid-template-columns: 118px auto;
}
@media screen and (max-width: 640px) {
  .personality-single dl {
    grid-template-columns: 80px auto;
  }
}
.personality-single dt, .personality-single dd {
  padding: 1em;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid var(--borderColor);
}
@media screen and (max-width: 640px) {
  .personality-single dt, .personality-single dd {
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
  }
}

/* ---------------------------
  timetable
----------------------------- */
.timetable-wrapper {
  background-color: var(--bgColor);
  padding: 60px;
}
@media screen and (max-width: 1280px) {
  .timetable-wrapper {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .timetable-wrapper {
    padding: 20px 16px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 480px) {
  .timetable-wrapper {
    padding: 20px 10px;
  }
}

.timetable-tablist {
  padding-left: 158px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}
@media screen and (max-width: 896px) {
  .timetable-tablist {
    padding-left: 100px;
  }
}
@media screen and (max-width: 640px) {
  .timetable-tablist {
    padding-left: 0;
    margin-bottom: 24px;
  }
}
.timetable-tablist button {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 21px;
  font-weight: bold;
  cursor: pointer;
  background-color: #999999;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 896px) {
  .timetable-tablist button {
    font-size: 16px;
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .timetable-tablist button {
    font-size: 12px;
    height: 40px;
  }
}
.timetable-tablist button.is_active {
  background-color: var(--red);
}
.timetable-tablist button.is_active::after {
  content: "";
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 15px solid var(--red);
  border-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 99%);
}
@media screen and (max-width: 640px) {
  .timetable-tablist button.is_active::after {
    border-right-width: 6px;
    border-left-width: 6px;
    border-top-width: 9px;
  }
}

.timetable-tabpanel {
  display: none;
}
.timetable-tabpanel.is_active {
  display: block;
}
.timetable-tabpanel dl {
  display: grid;
  gap: 5px 40px;
  grid-template-columns: 120px auto;
}
@media screen and (max-width: 896px) {
  .timetable-tabpanel dl {
    grid-template-columns: 80px auto;
    gap: 5px 20px;
  }
}
@media screen and (max-width: 640px) {
  .timetable-tabpanel dl {
    grid-template-columns: 56px auto;
    gap: 5px 10px;
  }
}
.timetable-tabpanel dd .timetable-item:last-of-type {
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  .timetable-tabpanel dd .timetable-item:last-of-type {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .timetable-tabpanel dd .timetable-item:last-of-type {
    margin-bottom: 20px;
  }
}
.timetable-tabpanel dt {
  width: 120px;
  min-height: 190px;
  padding-top: 48px;
  font-size: 21px;
  font-weight: bold;
  font-family: var(--enFont);
  text-align: center;
  background-color: var(--blue);
  color: #ffffff;
}
@media screen and (max-width: 896px) {
  .timetable-tabpanel dt {
    font-size: 17px;
    width: 100%;
    min-height: inherit;
    padding-top: 1.8em;
  }
}
@media screen and (max-width: 640px) {
  .timetable-tabpanel dt {
    font-size: 14px;
  }
}

.timetable-item {
  background-color: #fff;
  padding: 30px;
}
@media screen and (max-width: 640px) {
  .timetable-item {
    padding: 16px;
  }
}
.timetable-item + .timetable-item {
  margin-top: 10px;
}
.timetable-item h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--blue);
}
@media screen and (max-width: 896px) {
  .timetable-item h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .timetable-item h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .timetable-item h2 {
    font-size: 14px;
  }
}
.timetable-item h2 a {
  font-size: 24px;
  font-weight: bold;
  color: var(--blue);
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .timetable-item h2 a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 896px) {
  .timetable-item h2 a {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .timetable-item h2 a {
    font-size: 16px;
  }
}
.timetable-item .sponsor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.7em;
  font-size: 13px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .timetable-item .sponsor {
    font-size: 12px;
  }
}
.timetable-item .sponsor a {
  font-size: 13px;
  font-weight: bold;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .timetable-item .sponsor a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 640px) {
  .timetable-item .sponsor a {
    font-size: 12px;
  }
}
.timetable-item .sponsor span {
  display: inline-block;
  font-size: 11px;
  padding: 0.5em 1.2em;
  background-color: var(--black);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  border-radius: 2.5em;
}
@media screen and (max-width: 640px) {
  .timetable-item .sponsor span {
    font-size: 10px;
  }
}
.timetable-item .time {
  display: inline-block;
  font-size: 11px;
  margin-bottom: 1em;
  padding: 0.5em 1.5em;
  background-color: var(--black);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  border-radius: 2.5em;
}
@media screen and (max-width: 640px) {
  .timetable-item .time {
    font-size: 10px;
  }
}

#soundwave {
	height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
/*     background: black; */
}

.bar {
    background: #0593ff;
    bottom: 1px;
    height: 3px;
    width: 6px;
    margin: 0px 6px;
    border-radius: 3px;
    animation: sound 0ms -600ms linear infinite alternate;
}

@keyframes sound {
    0% {
       opacity: .35;
        height: 3px;
    }
    100% {
        opacity: 1;
        height: 30px;
    }
}

.bar:nth-child(1)  { left: 1px; animation-duration: 474ms; }
.bar:nth-child(2)  { left: 15px; animation-duration: 433ms; }
.bar:nth-child(3)  { left: 29px; animation-duration: 407ms; }
.bar:nth-child(4)  { left: 43px; animation-duration: 458ms; }
.bar:nth-child(5)  { left: 57px; animation-duration: 400ms; }
.bar:nth-child(6)  { left: 71px; animation-duration: 427ms; }
.bar:nth-child(7)  { left: 85px; animation-duration: 441ms; }
.bar:nth-child(8)  { left: 99px; animation-duration: 419ms; }
.bar:nth-child(9)  { left: 113px; animation-duration: 487ms; }
.bar:nth-child(10) { left: 127px; animation-duration: 442ms; }


@media screen and (max-width: 640px) {
  .grecaptcha-badge {
    bottom: 95px !important;
  }
}
