@charset "UTF-8";
.aacHeader-placeholder {
  height: 130px;
}
@media (max-width: 781px) {
  .aacHeader-placeholder {
    height: 70px;
  }
}

.aacHeader {
  height: 130px;
  background-color: #005089 !important;
  width: 100%;
}
@media (max-width: 781px) {
  .aacHeader {
    height: 70px;
  }
}
.aacHeader.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(-100%);
}
.aacHeader.is-visible {
  animation: slideDown 1s ease forwards;
}
.aacHeader.is-hiding {
  animation: slideUp 1s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.aacHeader .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aacHeader .container.upper {
  height: 90px;
}
@media (max-width: 781px) {
  .aacHeader .container.upper {
    height: 100%;
  }
}
.aacHeader .container.upper h1 {
  height: auto;
  margin: auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.aacHeader .container.upper h1 a {
  max-width: 360px;
  display: flex;
  height: auto;
  align-items: center;
}
@media (max-width: 781px) {
  .aacHeader .container.upper h1 a {
    height: auto;
    width: 70dvw;
  }
}
.aacHeader .container.upper h1 .gifu {
  height: 50px;
  aspect-ratio: 27/33;
  margin-left: 10px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 781px) {
  .aacHeader .container.upper h1 .gifu {
    height: 40px;
    width: auto;
  }
}
.aacHeader .container.upper h1 .gifu img {
  width: 100%;
  height: auto;
  display: block;
}
.aacHeader .container.upper .subNav {
  display: flex;
  gap: 10px;
  margin: auto 0;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 781px) {
  .aacHeader .container.upper .subNav {
    display: none;
  }
}
.aacHeader .container.upper .subNav .snsLink {
  margin-right: 10px;
}
.aacHeader .container.upper .subNav .snsLink ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  height: 16px;
}
.aacHeader .container.upper .subNav .snsLink ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 16px;
}
.aacHeader .container.upper .subNav .snsLink ul li a {
  display: block;
  height: 16px;
  width: 16px;
  aspect-ratio: 1/1;
}
.aacHeader .container.upper .subNav .snsLink ul li a img {
  width: 16px;
  height: 16px;
}
.aacHeader .container.upper .subNav .langMenu {
  display: flex;
  align-items: center;
}
.aacHeader .container.upper .subNav .langMenu ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.aacHeader .container.upper .subNav .langMenu ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.aacHeader .container.upper .subNav .langMenu ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 0.7rem;
}
.aacHeader .container.upper .subNav .langMenu ul li a img {
  width: 16px;
  height: 16px;
}
.aacHeader .container.upper .subNav .left {
  display: flex;
  margin: auto 0;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.aacHeader .container.upper .subNav .left p {
  width: 100%;
  font-size: 16px;
  color: #fff;
  text-align: right;
  margin: 0 0 5px 0;
  padding: 0;
  line-height: 1em;
}
.aacHeader .container.upper .subNav .gifu {
  height: 50px;
  width: auto;
  margin-left: 3px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 781px) {
  .aacHeader .container.upper .subNav .gifu {
    height: 40px;
    width: auto;
  }
}
.aacHeader .container.upper .subNav .gifu img {
  height: 100%;
  width: auto;
  display: block;
}
.aacHeader .container.upper .btnTrigger {
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
  display: none;
  transition: all 0.5s;
  box-sizing: border-box;
}
@media (max-width: 781px) {
  .aacHeader .container.upper .btnTrigger {
    display: inline-block;
  }
}
.aacHeader .container.upper .btnTrigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.aacHeader .container.upper .btnTrigger span:nth-of-type(1) {
  top: 0;
}
.aacHeader .container.upper .btnTrigger span:nth-of-type(2) {
  top: 10px;
}
.aacHeader .container.upper .btnTrigger span:nth-of-type(3) {
  bottom: 0;
}
.aacHeader .container.upper .btnTrigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.aacHeader .container.upper .btnTrigger.active span:nth-of-type(2) {
  opacity: 0;
}
.aacHeader .container.upper .btnTrigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
.aacHeader .container.lower {
  height: calc(100% - 90px);
}
@media (max-width: 781px) {
  .aacHeader .container.lower {
    display: none;
    height: auto;
  }
}
.aacHeader .container.lower nav {
  height: 100%;
  width: 100%;
}
.aacHeader .container.lower nav ul {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
}
.aacHeader .container.lower nav ul li {
  grid-column: auto/span 2;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  height: 30px;
  border-right: 1px solid #6897b9;
}
.aacHeader .container.lower nav ul li:first-of-type {
  border-left: 1px solid #6897b9;
}
.aacHeader .container.lower nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  height: 100%;
  width: 100%;
  font-size: 18px;
}

.spNavigation {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(-10px);
}
.spNavigation.active {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  height: calc(100dvh - 70px);
  background-color: rgba(0, 80, 137, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem 0;
  overflow-y: auto;
}
.spNavigation nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spNavigation nav ul li {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.spNavigation nav ul li:nth-child(1) {
  transition-delay: 0.05s;
}
.spNavigation nav ul li:nth-child(2) {
  transition-delay: 0.1s;
}
.spNavigation nav ul li:nth-child(3) {
  transition-delay: 0.15s;
}
.spNavigation nav ul li:nth-child(4) {
  transition-delay: 0.2s;
}
.spNavigation nav ul li:nth-child(5) {
  transition-delay: 0.25s;
}
.spNavigation nav ul li:nth-child(6) {
  transition-delay: 0.3s;
}
.spNavigation nav ul li:nth-child(7) {
  transition-delay: 0.35s;
}
.spNavigation nav ul li:nth-child(8) {
  transition-delay: 0.4s;
}
.spNavigation nav ul li:nth-child(9) {
  transition-delay: 0.45s;
}
.spNavigation nav ul li:nth-child(10) {
  transition-delay: 0.5s;
}
.spNavigation nav ul li a {
  display: block;
  padding: 1rem 2rem;
  text-align: center;
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  margin: 0 2rem;
  transition: color 0.3s ease;
  color: #fff;
}
.spNavigation nav ul li a:hover, .spNavigation nav ul li a:active {
  color: #005089;
}
.spNavigation .subNav {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.spNavigation .subNav .snsLink ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.spNavigation .subNav .snsLink ul li a {
  display: block;
  width: 30px;
  height: 30px;
}
.spNavigation .subNav .snsLink ul li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.spNavigation .subNav .langLing ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.spNavigation .subNav .langLing ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #fff;
}
.spNavigation .subNav .langLing ul li a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.spNavigation .subNav .langLing ul li a span {
  font-size: 0.8rem;
}
.spNavigation.active nav ul li {
  opacity: 1;
  transform: translateY(0);
}

.keyVisual {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #fff;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  background-color: #fff;
  /* 拡大した kvSlider が左右上下にはみ出ないようクリップ */
  overflow: hidden;
  /* isolation:isolate でスタッキングコンテキストのルートを明示。
     これにより、高い z-index を持つ子要素が GPU コンポジット層として
     overflow:hidden のクリップ領域外に描画されることを防ぐ。 */
  isolation: isolate;
}
.keyVisual .bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/keyvisual_yoko_whiteBG.svg);
  background-size: 100%;
  background-position: center top 250px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 1;
}
@media (max-width: 781px) {
  .keyVisual .bg-container {
    background-position: center center;
    background-size: contain;
  }
}
.keyVisual.is-bg-visible, .keyVisual.is-svg-visible {
  background-color: #fff;
}
.keyVisual.is-bg-visible .bg-container, .keyVisual.is-svg-visible .bg-container {
  opacity: 1;
}
@media (max-width: 781px) {
  .keyVisual {
    height: calc(100dvh - 80px);
    background-position: center center;
  }
}
.keyVisual #svg-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.keyVisual #svg-container #wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.keyVisual .mainkeyVisual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: clamp(240px, 52vw, 620px);
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  z-index: 30;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  filter: blur(20px);
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
}
.keyVisual .mainkeyVisual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.keyVisual.is-main-visible .mainkeyVisual {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
}
.keyVisual.is-main-hidden .mainkeyVisual {
  opacity: 0;
  filter: blur(20px);
  transform: translate(-50%, -50%) scale(1.04);
  pointer-events: none;
}
.keyVisual .contentArea {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  z-index: 30;
  pointer-events: none;
  /* 拡大中の kvSlider がはみ出せるよう overflow は visible のまま */
  overflow: visible;
}
.keyVisual .textInfo {
  position: relative;
  margin: 0;
  width: 520px;
  z-index: 25;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  filter: blur(12px);
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease, visibility 0s linear 1.2s;
}
@media (max-width: 781px) {
  .keyVisual .textInfo {
    width: 90%;
  }
}
.keyVisual .textInfo .catchcopy,
.keyVisual .textInfo .bosyu {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.keyVisual .textInfo .catchcopy {
  transition-delay: 0.05s;
  margin-bottom: 10px;
}
.keyVisual .textInfo .bosyu {
  background-color: #005089;
  color: #fff;
  padding: 8px 20px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 3px;
  transition-delay: 0.25s;
}
.keyVisual .textInfo .bosyu .bosyuTitle {
  background-color: transparent;
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}
@media (max-width: 781px) {
  .keyVisual .textInfo .bosyu .bosyuTitle {
    font-size: 1.5rem;
  }
}
.keyVisual .textInfo .bosyu .bosyuDate {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
}
@media (max-width: 781px) {
  .keyVisual .textInfo .bosyu .bosyuDate {
    font-size: 1rem;
  }
}
.keyVisual.is-text-visible .textInfo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease, visibility 0s linear 0s;
}
.keyVisual.is-text-visible .textInfo .catchcopy,
.keyVisual.is-text-visible .textInfo .bosyu {
  opacity: 1;
  transform: translateY(0);
}
.keyVisual.is-text-hidden .textInfo {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  filter: blur(14px);
  pointer-events: none;
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease, visibility 0s linear 0.9s;
}
.keyVisual.is-text-hidden .textInfo .catchcopy,
.keyVisual.is-text-hidden .textInfo .bosyu {
  opacity: 0;
  transform: translateY(-6px);
}
.keyVisual {
  /* スライダー全体を囲むラッパー。
     これがあることで、スライダー本体を absolute にして全画面に広げても
     他の要素（キャッチコピー等）の場所が確保され、配置が崩れない。 */
  /* スライダー全体を囲むラッパー。フロー配置を維持し、レイアウトを安定させる */
}
.keyVisual .kvSlider-wrap {
  position: relative;
  height: min(48vw, 100%);
  max-height: 100%;
  min-height: 220px;
  aspect-ratio: 1/1;
  width: auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.keyVisual .kvSlider {
  /* ラッパー（.kvSlider-wrap）の「中央」に配置。
     これにより、拡大時にも常に自身の「中心」を基準にサイズが変化する。 */
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 20;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* JSで制御する transform とサイズの transition */
  transform: translate(-50%, -50%);
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1), height 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease, opacity 1s ease, visibility 0s linear 1s;
  /* movie ホバー時: z-index と box-shadow のみ */
}
.keyVisual .kvSlider.is-hover-expanded {
  z-index: 50;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  border-radius: 0;
}
.keyVisual .kvSlider .kvSlide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 1s ease, visibility 1s ease, filter 1s ease;
}
.keyVisual .kvSlider .kvSlide.movie video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.keyVisual .kvSlider .kvSlide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.05) 100%), radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.keyVisual .kvSlider .kvSlide.is-active::after {
  opacity: 1;
}
.keyVisual .kvSlider .kvSlide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 5;
  animation: kvEntrance 3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.keyVisual .kvSlider .kvSlide.is-active img,
.keyVisual .kvSlider .kvSlide.is-active video {
  animation: kvKenBurns 12s linear infinite alternate;
}
.keyVisual .kvSlider .kvSlide.movie {
  background-color: #000000;
}
.keyVisual .kvSlider .kvSlide.movie video {
  object-fit: cover;
  animation: none;
}
.keyVisual .kvSlider img,
.keyVisual .kvSlider video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
}
.keyVisual.is-slider-visible .kvSlider {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1), height 1.2s cubic-bezier(0.4, 0, 0.2, 1), max-width 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 1.2s ease, border-radius 1.2s ease, opacity 1s ease, visibility 0s linear 0s;
}

@keyframes kvEntrance {
  0% {
    opacity: 0;
    filter: blur(15px) brightness(1.1);
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
}
@keyframes kvIntroFadeIn {
  0% {
    opacity: 0;
    filter: blur(40px);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes kvIntroFadeOut {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(40px);
    transform: scale(1.05);
  }
}
@keyframes kvKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
span.logoSq {
  position: absolute;
  bottom: 0px;
  right: 10px;
  z-index: 40;
  display: flex;
  gap: 10px;
}
@media (max-width: 781px) {
  span.logoSq {
    width: 20dvw;
    bottom: 0px;
    right: 10px;
    gap: 5px;
  }
}
span.logoSq img {
  vertical-align: bottom;
  display: block;
}
span.logoSq .gifu {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: 9px;
  background-color: #005089;
  border-radius: 3px;
}
@media (max-width: 781px) {
  span.logoSq .gifu {
    padding: 5px;
    border-radius: 1px;
  }
}
span.logoSq .gifu img {
  aspect-ratio: 27/33;
  width: 100%;
  height: auto;
  display: block;
}
span.logoSq .logo {
  width: 100px;
  aspect-ratio: 1/1;
}
span.logoSq .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.judges .wp-block-cover__background {
  background-color: #005089 !important;
}
.judges .person-card .wp-block-image {
  width: 100%;
  height: auto;
}
.judges .person-card .wp-block-group {
  gap: 10px;
}
.judges .person-card .wp-block-group p {
  font-size: 0.8rem;
}
.judges .person-card .wp-block-group p strong {
  font-size: 0.9rem;
}
.judges .person-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

.site-footer {
  background-color: #005089 !important;
  background-image: url(../images/footerbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
@media (max-width: 781px) {
  .site-footer {
    background-size: contain;
  }
}
.site-footer .container {
  padding: 2rem 0 60px 0;
}
.site-footer .container .logo {
  width: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 781px) {
  .site-footer .container .logo {
    width: 80dvw;
    margin: 0 auto 1rem auto;
  }
}
.site-footer .container .logo img {
  width: 100%;
  height: auto;
}
.site-footer .container .logo .gifu {
  height: 50px;
  aspect-ratio: 27/33;
  margin-left: 10px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 781px) {
  .site-footer .container .logo .gifu {
    height: 40px;
    width: auto;
  }
}
.site-footer .container .logo .gifu img {
  width: 100%;
  height: auto;
  display: block;
}
.site-footer .container .sitemap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 781px) {
  .site-footer .container .sitemap {
    flex-wrap: wrap;
  }
}
@media (max-width: 781px) {
  .site-footer .container .sitemap nav {
    width: 100%;
    margin: 1rem auto;
  }
}
.site-footer .container .sitemap nav ul {
  padding: 0rem 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-direction: row;
  font-size: 0.8rem;
}
@media (max-width: 781px) {
  .site-footer .container .sitemap nav ul {
    flex-wrap: wrap;
    font-size: 1rem;
    gap: 0;
    border-top: 1px solid #4585B2;
  }
}
.site-footer .container .sitemap nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1em;
}
@media (max-width: 781px) {
  .site-footer .container .sitemap nav ul li {
    width: 50%;
    border-bottom: 1px solid #4585B2;
  }
  .site-footer .container .sitemap nav ul li:nth-child(even) {
    border-left: 1px solid #4585B2;
  }
}
.site-footer .container .sitemap nav ul li a {
  color: #fff;
}
@media (max-width: 781px) {
  .site-footer .container .sitemap nav ul li a {
    padding: 0.9rem 0;
    display: block;
    text-align: center;
  }
}
@media (max-width: 781px) {
  .site-footer .container .langMenu {
    width: 80dvw;
    margin: 0 auto 1rem auto;
  }
}
.site-footer .container .langMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-direction: row;
  font-size: 0.8rem;
  align-items: center;
}
@media (max-width: 781px) {
  .site-footer .container .langMenu ul {
    justify-content: center;
  }
}
.site-footer .container .langMenu ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1em;
}
.site-footer .container .langMenu ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
.site-footer .container .langMenu ul li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.site-footer .container .copyright {
  color: #fff;
  font-size: 0.8rem;
  text-align: right;
  margin-top: 20px;
}
@media (max-width: 781px) {
  .site-footer .container .copyright {
    text-align: center;
  }
}

@keyframes waterFlow {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -60px, 0);
  }
}
@keyframes shimmering {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}
html {
  background-color: #fff !important;
}

body.page:not(.home),
body.wp-singular:not(.home) {
  background-color: transparent !important;
  position: relative;
}
body.page:not(.home) .site-body,
body.page:not(.home) .site-main,
body.page:not(.home) .mainSection,
body.page:not(.home) .main-section,
body.page:not(.home) .main-section-primary,
body.page:not(.home) #main,
body.page:not(.home) .container,
body.page:not(.home) .row,
body.page:not(.home) article,
body.page:not(.home) section,
body.page:not(.home) .entry-content,
body.wp-singular:not(.home) .site-body,
body.wp-singular:not(.home) .site-main,
body.wp-singular:not(.home) .mainSection,
body.wp-singular:not(.home) .main-section,
body.wp-singular:not(.home) .main-section-primary,
body.wp-singular:not(.home) #main,
body.wp-singular:not(.home) .container,
body.wp-singular:not(.home) .row,
body.wp-singular:not(.home) article,
body.wp-singular:not(.home) section,
body.wp-singular:not(.home) .entry-content {
  background-color: transparent !important;
}
body.page:not(.home) .site-body .site-body-container.container,
body.wp-singular:not(.home) .site-body .site-body-container.container {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
body.page:not(.home)::before,
body.wp-singular:not(.home)::before {
  content: "";
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  z-index: -1;
  background-image: url(../images/pageBG_right@2x.webp);
  background-position: right 0 top 0;
  background-repeat: no-repeat;
  background-size: 350px auto;
  pointer-events: none;
  backface-visibility: hidden;
  perspective: 1000;
  animation: waterFlow 20s ease-in-out infinite alternate, shimmering 15s ease-in-out infinite;
  opacity: 0.7;
}
@media (max-width: 781px) {
  body.page:not(.home)::before,
  body.wp-singular:not(.home)::before {
    background-size: 180px auto;
    background-position: right 0 top 0;
    opacity: 0.5;
  }
}

.page-header {
  background-color: transparent !important;
  text-align: left;
}
@media (max-width: 781px) {
  .page-header {
    align-items: flex-start;
    height: 100px !important;
  }
}
.page-header .page-header-title {
  background-color: #005089 !important;
  padding: 0.5rem 1rem;
  margin: auto auto auto 0;
  width: fit-content;
  font-weight: 400;
  color: #fff;
  font-size: 1.5rem;
}
@media (max-width: 781px) {
  .page-header .page-header-title {
    padding: 0.5rem 1rem;
    margin: 0 auto auto 0;
    font-size: 1.5rem;
  }
}

.site-header {
  background-color: #005089 !important;
}

.wp-block-cover {
  background-color: #005089;
  margin-bottom: 1.5rem;
  padding: 1.5em 1em;
}
.wp-block-cover p {
  color: #fff;
  margin-bottom: 0.5rem !important;
}
.wp-block-cover .wp-block-cover__background {
  opacity: 0 !important;
}
.wp-block-cover table {
  border-top: 2px solid #fff;
  margin: 2rem 0;
}
.wp-block-cover table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.wp-block-cover table tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.wp-block-cover table tr th {
  color: #fff;
}
@media (max-width: 781px) {
  .wp-block-cover table tr th {
    color: #fff;
  }
}
.wp-block-cover table tr td {
  color: #fff;
}
.wp-block-cover table tr td a {
  color: #fff;
}
.wp-block-cover table tr:last-child {
  border-bottom: 2px solid #fff;
}

table,
table.has-fixed-layout {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-top: 2px solid #005089;
}
table tr,
table.has-fixed-layout tr {
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s ease;
}
table tr:hover,
table.has-fixed-layout tr:hover {
  background-color: rgba(0, 80, 137, 0.02);
}
table tr th,
table tr td,
table.has-fixed-layout tr th,
table.has-fixed-layout tr td {
  padding: 1.8rem 1rem;
}
@media (max-width: 781px) {
  table tr th,
  table tr td,
  table.has-fixed-layout tr th,
  table.has-fixed-layout tr td {
    padding: 0.8rem 0.8rem 0.8rem 0.8rem;
  }
}
table tr th,
table.has-fixed-layout tr th {
  width: 240px;
  font-weight: 700;
  color: #005089;
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
@media (max-width: 781px) {
  table tr th,
  table.has-fixed-layout tr th {
    display: block;
    width: 100%;
    font-size: 0.8rem;
    color: rgb(0, 109.7810218978, 188);
  }
}
table tr td,
table.has-fixed-layout tr td {
  vertical-align: top;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 781px) {
  table tr td,
  table.has-fixed-layout tr td {
    display: block;
    width: 100%;
    font-size: 0.8rem;
    vertical-align: top;
  }
}
table tr:last-child,
table.has-fixed-layout tr:last-child {
  border-bottom: 2px solid #ddd;
}

.flow table.has-fixed-layout {
  margin: 0 auto;
  border: none !important;
}
.flow table.has-fixed-layout tr {
  border: none !important;
}
@media (max-width: 781px) {
  .flow table.has-fixed-layout tr {
    display: flex;
    margin-bottom: 30px;
  }
}
.flow table.has-fixed-layout tr td {
  border: none !important;
}
.flow table.has-fixed-layout tr td:first-child {
  width: 100px;
  padding: 0;
}
@media (max-width: 781px) {
  .flow table.has-fixed-layout tr td:first-child {
    width: 50px;
  }
}
.flow table.has-fixed-layout tr td:last-child {
  width: calc(100% - 100px);
  padding: 0 0 0 1rem;
  vertical-align: top;
  line-height: 1.6em;
}
@media (max-width: 781px) {
  .flow table.has-fixed-layout tr td:last-child {
    width: calc(100% - 50px);
  }
}
.flow table.has-fixed-layout tr td:last-child a {
  color: red !important;
  text-decoration: none;
}
.flow table.has-fixed-layout tr td:last-child a:hover {
  text-decoration: underline;
}

.frowBtn {
  max-width: 640px;
  margin: 0 auto;
}

.wp-block-cover table.has-fixed-layout {
  border-top: 1px solid #fff;
}
.wp-block-cover table.has-fixed-layout tr th {
  color: #fff;
}
.wp-block-cover table.has-fixed-layout tr td {
  color: #fff;
}

.wp-block-image img {
  margin-bottom: 10px;
}

.wp-block-image.judgePhoto img {
  width: 100%;
  height: auto;
}

h2.wp-block-heading:not(.is-style-vk-heading-plain) {
  position: relative;
  padding: 0.7em 0 0.6em 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2B2B2B;
  border-left: 8px solid #005089;
  border-bottom: 1px solid #D6D6D6;
  background: linear-gradient(90deg, rgba(0, 80, 137, 0.05) 0%, rgba(0, 80, 137, 0) 50%);
  margin-bottom: 2rem;
  line-height: 1.3;
}
@media (max-width: 781px) {
  h2.wp-block-heading:not(.is-style-vk-heading-plain) {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
h2.wp-block-heading:not(.is-style-vk-heading-plain)::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -1px;
  width: 120px;
  height: 3px;
  background-color: #005089;
}

h3.wp-block-heading:not(.is-style-vk-heading-plain) {
  position: relative;
  padding: 0.5em 0 0.4em 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2B2B2B;
  border-bottom: 1px dashed #D6D6D6;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
h3.wp-block-heading:not(.is-style-vk-heading-plain)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1.2em;
  background-color: #005089;
  border-radius: 2px;
}

.vk_faq .vk_faq_title {
  padding: 1.6rem 0.8rem 1.6rem 3rem;
}
.vk_faq .vk_faq_title::before {
  top: 1.4rem;
}

.vk_accordion-trigger,
.vk_accordion-target {
  padding: 0;
}