@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
  box-sizing: border-box;
  object-fit: cover;
}

em {
  font-style: normal;
}

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

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

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

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #000;
  --text: #434343;
  --accent: #059a46;
  --gray: #d9d9d9;
  --graybg: #f8f8f8;
  --darkgray: #707070;
  --subpage-head: #41af34;
  --bd-gray: #a2a2a2;
  --leading-trim: calc((1em - 1lh) / 2);
  --urbanist: "Urbanist", "Helvetica Neue", "Arial", sans-serif;
  --noto-sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "游ゴシック体", "YuGothic", "Helvetica Neue", "Arial", "Meiryo",
    sans-serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
  font-size: min(0.7320644217vw, 10px);
  /* @include mq(xlpc) {
    font-size: calc(10 / (1920 / 100) * 1vw);
  } */
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  font-family: var(--noto-sans);
  background-color: var(--white);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--text);
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    transition: 0.5s;
  }
}

.palt {
  font-feature-settings: "palt";
}

p,
h2,
h3,
h4,
span {
  font-weight: 400;
  color: var(--text);
}

svg {
  width: 100%;
  height: 100%;
}

.overflow-hidden {
  position: relative;
  overflow: hidden;
}

#wpadminbar {
  position: fixed;
  bottom: 0;
  top: auto;
}

.header {
  position: relative;
  width: 100%;
  padding-block: 0.3rem;
  z-index: 1004;
}
@media screen and (max-width: 768px) {
  .header {
    padding-block: 0rem;
    height: 6.5rem;
    position: sticky;
    top: 0rem;
    background: var(--white);
  }
  .header:has(+ .drawer.is-active) {
    background: transparent;
  }
}
.header__container {
  max-width: max(131.6rem, 1200px);
  width: calc(100% - 8rem);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .header__container {
    width: calc(100% - 5rem);
  }
}
@media screen and (max-width: 768px) {
  .header__container {
    width: calc(100% - 2.4rem);
    height: 100%;
  }
}
.header__logo {
  width: 29.7rem;
  height: 6.7rem;
}
.header__logo a {
  transition: all 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 22rem;
    height: 4.9rem;
  }
}
.header__navigation {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .header__navigation {
    display: none;
  }
}
.header__navigation::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #C5E7C1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.header__navigation > div {
  width: fit-content;
  margin-left: auto;
}
.header__navigation .menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
@media (max-width: 900px) {
  .header__navigation .menu {
    gap: 1rem;
  }
}
.header__navigation .menu > li {
  position: relative;
}
.header__navigation .menu > li > a {
  font-size: max(1.4rem, 12px);
  padding-block: 1.5rem;
  font-weight: 700;
  line-height: 1.4285714286;
  color: #000;
  display: flex;
  align-items: center;
}
.header__navigation .menu > li > a:has(+ .sub-menu) {
  gap: 0.5rem;
}
.header__navigation .menu > li > a:has(+ .sub-menu)::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("../images/chevron-bottom.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.header__navigation .menu > li > a:has(+ .sub-menu):hover {
  opacity: 0.6;
}
.header__navigation .menu > li > a:has(+ .sub-menu):hover::after {
  background-image: url("../images/chevron-bottom-white.svg");
}
.header__navigation .menu > li > a[href*=contact], .header__navigation .menu > li > a[href*=form] {
  gap: 0.6rem;
}
.header__navigation .menu > li > a[href*=contact]::before, .header__navigation .menu > li > a[href*=form]::before {
  content: "";
  display: block;
  width: 1.7rem;
  height: 1.2rem;
  background-image: url("../images/envelope-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header__navigation .menu .sub-menu {
  position: absolute;
  width: 26rem;
  transform: translateY(0.5rem);
  visibility: hidden;
  opacity: 0;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1rem 2rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.header__navigation .menu .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
  font-weight: 600;
  font-size: max(1.3rem, 10px);
  line-height: 1.4;
}
.header__navigation .menu .sub-menu li a::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #059A46;
  border-radius: 50%;
}
.header__navigation .menu .sub-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.header__navigation li a {
  opacity: 1;
}
.header__navigation li a:hover {
  opacity: 0.6;
}

.drawer {
  position: fixed;
  top: 0rem;
  right: 0rem;
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  width: 100%;
  height: 100dvh;
  padding-top: 6.5rem !important;
}
.drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.drawer__overflow {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.drawer__navigation {
  margin-top: 2rem !important;
  padding-bottom: 4rem;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    top: 0rem;
    right: 0rem;
    width: 6.5rem;
    height: 6.5rem;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #41AF34;
  }
}
.hamburger .hamburger__line {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  width: 2.5rem;
  height: 1.8rem;
}
.hamburger .hamburger__line span {
  width: 100%;
  height: 0.2rem;
  display: block;
  position: absolute;
  transition: 0.3s;
  left: 0;
  z-index: 30;
  background: var(--white);
}
.hamburger .hamburger__line span:nth-child(1) {
  top: 0rem;
}
.hamburger .hamburger__line span:nth-child(2) {
  top: 0.8rem;
}
.hamburger .hamburger__line span:nth-child(3) {
  bottom: 0rem;
  opacity: 1;
  animation-delay: 1s;
}
.hamburger.is-active .hamburger__line span:nth-child(1) {
  top: 0.8rem;
  transform: rotate(45deg);
}
.hamburger.is-active .hamburger__line span:nth-child(2) {
  top: 0.8rem;
  transform: rotate(-45deg);
}
.hamburger.is-active .hamburger__line span:nth-child(3) {
  bottom: 0rem;
  opacity: 0;
}

.footer,
.drawer {
  background-image: url("../images/footer-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .footer,
  .drawer {
    padding-top: 4.5rem;
    margin-top: -0.2rem;
    background-image: url("../images/footer-bg-sp.webp");
  }
}
.footer__container,
.drawer__container {
  max-width: max(100rem, 800px);
  width: calc(100% - 8rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__container,
  .drawer__container {
    width: calc(100% - 3rem);
  }
}
.footer__cards,
.drawer__cards {
  display: flex;
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  .footer__cards,
  .drawer__cards {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer__card,
.drawer__card {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2.5rem;
  padding: 0rem 4.4rem;
  border: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  flex: 1;
  width: 100%;
  height: 15.1875em;
  font-size: max(1.6rem, 14px);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer__card,
  .drawer__card {
    border-radius: 1rem;
    height: auto;
    padding: 2rem 2.4rem 2.5rem;
  }
  .footer__card--facility,
  .drawer__card--facility {
    padding-inline: 3.2rem;
  }
}
.footer__card-header,
.drawer__card-header {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer__card-content,
.drawer__card-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__card-content,
  .drawer__card-content {
    gap: 1.5rem;
  }
}
.footer__logo,
.drawer__logo {
  width: 36.2rem;
  height: 8.2rem;
}
@media screen and (max-width: 768px) {
  .footer__logo,
  .drawer__logo {
    width: 29.6rem;
    height: 6.7rem;
  }
}
.footer__title,
.drawer__title {
  font-size: max(2.8rem, 24px);
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .footer__title,
  .drawer__title {
    font-size: 2.5rem;
    line-height: 1.44;
  }
}
.footer__category,
.drawer__category {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer__category,
  .drawer__category {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0.05em;
  }
}
.footer__address,
.drawer__address {
  font-weight: normal;
  font-size: max(1.6rem, 14px);
  line-height: 1.5625;
  font-style: normal;
}
.footer__website,
.drawer__website {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}
.footer__website:hover,
.drawer__website:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .footer__website,
  .drawer__website {
    margin-top: 0rem;
  }
}
.footer__website-icon,
.drawer__website-icon {
  width: 2rem;
  height: 2rem;
  margin-top: 0.3rem;
}
.footer__website-text,
.drawer__website-text {
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 1.5;
}
.footer__social,
.drawer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.footer__social:hover,
.drawer__social:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .footer__social,
  .drawer__social {
    gap: 0.8rem;
  }
}
.footer__social-icon,
.drawer__social-icon {
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__social-icon,
  .drawer__social-icon {
    width: 2.1rem;
    height: 2.1rem;
  }
}
.footer__social-text,
.drawer__social-text {
  font-size: max(1.5rem, 13px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .footer__social-text,
  .drawer__social-text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.footer__navigation,
.drawer__navigation {
  margin-top: 5rem;
  margin-bottom: 5.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__navigation,
  .drawer__navigation {
    flex-direction: column;
    gap: 0rem;
    margin-top: 3.2rem;
    margin-bottom: 0;
  }
}
.footer__navigation > div,
.drawer__navigation > div {
  max-width: max(26.2rem, 220px);
  flex: 1;
}
@media screen and (max-width: 768px) {
  .footer__navigation > div,
  .drawer__navigation > div {
    display: contents;
  }
}
.footer__navigation .menu,
.drawer__navigation .menu {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .footer__navigation .menu#menu-footer-02, .footer__navigation .menu#menu-footer-03,
  .drawer__navigation .menu#menu-footer-02,
  .drawer__navigation .menu#menu-footer-03 {
    margin-top: 2.5rem;
  }
}
.footer__navigation .menu a,
.drawer__navigation .menu a {
  display: block;
}
.footer__navigation .menu > li > a,
.drawer__navigation .menu > li > a {
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #059a46;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__navigation .menu > li > a,
  .drawer__navigation .menu > li > a {
    font-size: 1.5rem;
    line-height: 1.4;
    padding-bottom: 1.6rem;
  }
}
.footer__navigation .menu > li > a::after,
.drawer__navigation .menu > li > a::after {
  content: "";
  display: block;
  margin-left: auto;
  width: min(2.4rem, 20px);
  height: min(2.4rem, 20px);
  background-image: url("../images/chevron-icon.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.footer__navigation .menu > li > a:hover::after,
.drawer__navigation .menu > li > a:hover::after {
  background-image: url("../images/chevron-icon-white.svg");
}
.footer__navigation .menu > li > a[href*=contact]::before, .footer__navigation .menu > li > a[href*=form]::before,
.drawer__navigation .menu > li > a[href*=contact]::before,
.drawer__navigation .menu > li > a[href*=form]::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 1.8rem;
  background-image: url("../images/envelope-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.9rem;
  margin-top: 0.3rem;
}
@media screen and (max-width: 768px) {
  .footer__navigation .menu > li > a[href*=contact]::before, .footer__navigation .menu > li > a[href*=form]::before,
  .drawer__navigation .menu > li > a[href*=contact]::before,
  .drawer__navigation .menu > li > a[href*=form]::before {
    margin-right: 1rem;
  }
}
.footer__navigation .menu > li:has(.sub-menu) + li,
.drawer__navigation .menu > li:has(.sub-menu) + li {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .footer__navigation .menu > li:has(.sub-menu) + li,
  .drawer__navigation .menu > li:has(.sub-menu) + li {
    margin-top: 2.5rem;
  }
}
.footer__navigation .menu > li + li,
.drawer__navigation .menu > li + li {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__navigation .menu > li + li,
  .drawer__navigation .menu > li + li {
    margin-top: 2rem;
  }
}
.footer__navigation .menu > li .sub-menu,
.drawer__navigation .menu > li .sub-menu {
  display: flex;
  flex-direction: column;
  margin-top: 1.8rem;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer__navigation .menu > li .sub-menu,
  .drawer__navigation .menu > li .sub-menu {
    padding-inline: 1rem;
  }
}
.footer__navigation .menu > li .sub-menu > li > a,
.drawer__navigation .menu > li .sub-menu > li > a {
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 1.4285714286;
  color: #646464;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__navigation .menu > li .sub-menu > li > a::before,
.drawer__navigation .menu > li .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #646464;
  border-radius: 50%;
}
.footer__navigation .menu li a,
.drawer__navigation .menu li a {
  opacity: 1;
}
.footer__navigation .menu li a:hover,
.drawer__navigation .menu li a:hover {
  opacity: 0.6;
}
.footer__copyright,
.drawer__copyright {
  padding-block: 4rem;
  text-align: center;
  font-size: max(1.5rem, 13px);
  font-weight: 400;
  line-height: 1.4;
  border-top: 1px solid #585858;
}
@media screen and (max-width: 768px) {
  .footer__copyright,
  .drawer__copyright {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    border-top: none;
  }
}

@media screen and (max-width: 768px) {
  .home .footer {
    margin-top: -1rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__navigation {
    gap: 2rem;
  }
}

.c-btn {
  margin-top: 1rem;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    margin-top: 0;
    min-width: 29.7rem;
  }
}
.c-btn__link {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 1.6rem 2rem;
  border: 1px solid var(--gray);
  border-radius: 1rem;
  transition: opacity 0.3s ease;
}
.c-btn__link:hover {
  opacity: 0.6;
}
.c-btn__link:hover .c-btn__link-icon {
  background-image: url(../images/link-icon-white.svg);
}
.c-btn__link:hover .festival-archive__link-icon {
  background-image: url(../images/icon-green-white.svg);
}
@media screen and (max-width: 768px) {
  .c-btn__link {
    padding-block: 1.4rem;
    gap: 2rem;
    justify-content: space-between;
  }
}
.c-btn__link-text {
  font-weight: 600;
  font-size: max(2rem, 18px);
  line-height: 1.54;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.c-btn__link-text:before {
  content: "";
  display: block;
  width: max(0.8rem, 8px);
  height: max(0.8rem, 8px);
  background: var(--subpage-head);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-btn__link-text {
    font-size: 1.8rem;
    line-height: 1.5555555556;
    gap: 1.1rem;
  }
}
.c-btn__link-icon {
  width: max(3.2rem, 26px);
  height: max(3.2rem, 26px);
  background-image: url(../images/link-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.festival-archive {
  padding-block: 7rem;
  width: 100cqi;
  margin-left: calc(50% - 50cqi);
  background: #f7f9f6;
}
.festival-archive__inner {
  max-width: min(1000px, 95%);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .festival-archive__inner {
    max-width: calc(100% - 3rem);
  }
}
.festival-archive__title {
  text-align: center;
  font-size: max(3.2rem, 26px);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .festival-archive__title {
    font-size: 2.8rem;
    line-height: 1.5384615385;
  }
}
.festival-archive__list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .festival-archive__list {
    margin-top: 3.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2rem;
  }
}
.festival-archive__list li {
  border: 1px solid var(--gray);
  border-radius: 1rem;
  background: var(--white);
  transition: opacity 0.3s ease;
}
.festival-archive__list li:hover {
  opacity: 0.6;
}
.festival-archive__list li:hover .festival-archive__link-icon {
  background-image: url(../images/icon-green-white.svg);
}
.festival-archive__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .festival-archive__link {
    padding: 1.6rem 2rem;
  }
}
.festival-archive__link-text {
  font-weight: 600;
  font-size: max(2.2rem, 18px);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  .festival-archive__link-text {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    gap: 1.2rem;
  }
}
.festival-archive__link-text:before {
  content: "";
  display: block;
  width: max(0.8rem, 8px);
  height: max(0.8rem, 8px);
  background: var(--accent);
  border-radius: 50%;
}
.festival-archive__link-icon {
  width: max(4rem, 32px);
  height: max(4rem, 32px);
  background-image: url(../images/icon-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .festival-archive__link-icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}

@media screen and (min-width: 769px) {
  .u-mobile {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.grenn-icon {
  width: min(2rem, 16px);
  height: min(2rem, 16px);
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
}
.grenn-icon:before {
  content: "";
  display: block;
  width: min(0.4806rem, 6.206px);
  height: min(0.4806rem, 6.206px);
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg) translateX(-0.1rem) translateY(0.1rem);
  transition: all 0.3s ease;
}

.green-icon-hover:hover {
  opacity: 0.7;
}
.green-icon-hover:hover .grenn-icon {
  background: var(--white);
  transition: all 0.3s ease;
}
.green-icon-hover:hover .grenn-icon:before {
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transition: all 0.3s ease;
}

.wrapper {
  max-width: 124rem;
  padding-inline: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
}

.fdc--row {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (min-width: 769px) {
  .fdc--row {
    flex-direction: row;
  }
}

.dib {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.mt3 {
  margin-top: 0.3rem;
}

.mt7 {
  margin-top: 0.7rem;
}

.mt32 {
  margin-top: 3.2rem;
}

.c-page {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .c-page {
    gap: 3rem;
  }
}
.c-page.page-template-front-page {
  gap: 0;
}

.section-inner {
  max-width: min(1000px, 75%);
  margin-inline: auto;
}

/* .wp-block-lazyblock-sectino-title + * {
  margin-top: rem(40);
} */
.section__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.section__heading-en {
  display: block;
  font-family: var(--urbanist);
  font-size: max(2rem, 16px);
  color: var(--accent);
  letter-spacing: 0.09em;
  line-height: 1.35;
}
.section__heading-ja {
  display: block;
  font-size: max(4rem, 26px);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .section__heading {
    gap: 0.4rem;
  }
  .section__heading-en {
    font-size: 1.6rem;
  }
  .section__heading-ja {
    font-size: 2.6rem;
    line-height: 1.4;
  }
}

.wp-block-group__inner-container,
.section-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .wp-block-group__inner-container,
  .section-container {
    gap: 3.5rem;
  }
}

.c-inner {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  padding-block: 7rem;
  overflow: hidden;
}
.c-inner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/c-top-bg.webp) no-repeat top center/cover;
  z-index: -1;
  width: 100cqw;
}
@media screen and (max-width: 768px) {
  .c-inner:before {
    background: url(../images/c-top-bg-sp.webp) no-repeat top center/cover;
  }
}

.c-note {
  font-size: max(1.8rem, 14px);
  line-height: 1.4222222222;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-note {
    font-size: 1.5rem;
  }
}

.wp-block-lazyblock-c-note + .wp-block-lazyblock-simple-grid-3column {
  margin-top: -3rem;
}
@media screen and (max-width: 768px) {
  .wp-block-lazyblock-c-note + .wp-block-lazyblock-simple-grid-3column {
    margin-top: -1.8rem;
  }
}

.c-note.minus-mb {
  margin-bottom: -1.3rem;
}
@media screen and (max-width: 768px) {
  .c-note.minus-mb {
    margin-bottom: -1.8rem;
  }
}

.c-subpage-style {
  padding-block: 5rem 7rem;
  margin-inline: auto;
  width: 100%;
  max-width: min(1000px, 95%);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .c-subpage-style {
    max-width: 100%;
    padding-block: 4rem 7rem;
    padding-inline: 1.5rem;
    gap: 3rem;
  }
}

.c-subpage-style.c-subpage-style--gap20 {
  gap: 2rem;
}

.subpage-head {
  padding-inline: 4rem;
  background: url(../images/subpage-head.webp) no-repeat top center/cover;
  width: 100cqw;
  aspect-ratio: 1366/260;
  height: 26rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .subpage-head {
    padding-inline: 3rem 1.5rem;
    height: 24rem;
    background: url(../images/subpage-head-sp.webp) no-repeat top center/cover;
    aspect-ratio: 375/240;
  }
}
.subpage-head__inner {
  max-width: 1000px;
  margin-inline: auto;
  width: 100%;
}
.subpage-head h1 {
  font-weight: 600;
  font-size: max(4rem, 32px);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.subpage-head h1:before {
  content: "";
  display: block;
  width: max(1.4rem, 10px);
  height: max(1.4rem, 10px);
  background: var(--subpage-head);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .subpage-head h1 {
    gap: 1.5rem;
    font-size: 2.8rem;
    line-height: 1.4;
  }
  .subpage-head h1:before {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.subsection-head,
h2.wp-block-heading {
  margin-top: 1rem;
  font-weight: 600;
  font-size: max(2.8rem, 22px);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--darkgray);
  width: 100%;
}
.subsection-head:before,
h2.wp-block-heading:before {
  content: "";
  display: block;
  width: max(0.8rem, 8px);
  height: max(0.8rem, 8px);
  background: var(--subpage-head);
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .subsection-head,
  h2.wp-block-heading {
    margin-top: 2rem;
    font-size: 2.4rem;
    line-height: 1.4;
    gap: 1.2rem;
    padding-bottom: 0.7rem;
  }
}

.subsection-head-h3,
h3.wp-block-heading {
  font-weight: 600;
  font-size: max(2.2rem, 16px);
  line-height: 1.4545454545;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: -1.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .subsection-head-h3,
  h3.wp-block-heading {
    margin-top: 1rem;
    margin-bottom: -1rem;
  }
}
.subsection-head-h3:before,
h3.wp-block-heading:before {
  content: "";
  display: block;
  width: max(0.8rem, 8px);
  height: max(0.8rem, 8px);
  background: var(--bd-gray);
  border-radius: 50%;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  div:has(> .subsection-head-h3) + div:has(> .subsection-head-h4) .subsection-head-h4,
  div:has(> .subsection-head-h3) + h4.wp-block-heading,
  h3.wp-block-heading + div:has(> .subsection-head-h4) .subsection-head-h4,
  h3.wp-block-heading + h4.wp-block-heading {
    margin-top: 0rem;
  }
}

.subsection-head-h4,
h4.wp-block-heading {
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: -1rem;
  margin-bottom: -2.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .subsection-head-h4,
  h4.wp-block-heading {
    margin-top: -1rem;
    margin-bottom: -2rem;
  }
}
.subsection-head-h4:before,
h4.wp-block-heading:before {
  content: "";
  display: block;
  width: max(0.6rem, 6px);
  height: max(0.6rem, 6px);
  background: var(--bd-gray);
  border-radius: 50%;
}

.subsection-head-h3-deep-green {
  font-size: max(2.5rem, 19px);
  line-height: 1.44;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  width: 100%;
  padding-block: 0.8rem;
  margin-block: -2rem;
  background: #275a23;
}
@media screen and (max-width: 768px) {
  .subsection-head-h3-deep-green {
    margin-block: -1rem;
    font-size: 2.2rem;
    line-height: 1.4545454545;
    padding-block: 0.9rem;
  }
}

.c-text,
p {
  font-size: max(1.6rem, 13px);
  line-height: 1.8;
  font-weight: 400;
}
.c-text span,
p span {
  color: #ff0000;
}
@media screen and (max-width: 768px) {
  .c-text,
  p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.wp-block-spacer {
  margin-bottom: -4rem;
}
@media screen and (max-width: 768px) {
  .wp-block-spacer {
    margin-bottom: -3rem;
  }
}

.large-img {
  width: 100%;
  aspect-ratio: 1000/500;
}
.large-img img {
  border-radius: 2rem;
}

.c-tab-link {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .c-tab-link {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .c-tab-link li {
    max-width: 30rem;
    width: 100%;
    margin-inline: auto;
  }
}
.c-tab-link li a {
  padding: 1.2rem;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-tab-link li a {
    width: 100%;
    padding: 1.5rem 1.9rem;
    gap: 1.5rem;
    justify-content: space-between;
  }
}
.c-tab-link li a span {
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  font-weight: 600;
}
.c-tab-link li a .c-tab-link__item-icon {
  width: max(2rem, 16px);
  height: max(2rem, 16px);
  background-image: url(../images/chevron-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.c-tab-link li a:hover {
  opacity: 0.6;
}
.c-tab-link li a:hover .c-tab-link__item-icon {
  background-image: url(../images/chevron-icon-white.svg);
}
.c-tab-link li a img {
  width: max(2rem, 16px);
  height: max(2rem, 16px);
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-inline: auto;
  width: 100%;
  max-width: min(1000px, 95%);
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-top: 1rem;
    max-width: calc(100% - 1.5rem);
    overflow: auto;
    margin-inline: 0rem;
    margin-left: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs > span:last-child {
    margin-right: 1.5rem;
  }
}
.breadcrumbs span,
.breadcrumbs a {
  font-size: 12px;
  line-height: 1.4166666667;
  color: #646464;
  min-width: fit-content;
  transition: all 0.3s ease;
}
.breadcrumbs span:hover,
.breadcrumbs a:hover {
  opacity: 0.7;
}
.breadcrumbs > span + span {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.breadcrumbs > span + span::before {
  content: "";
  display: block;
  width: max(0.6206rem, 6.206px);
  height: max(1.0412rem, 10.412px);
  background-image: url(../images/arrow-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .breadcrumbs > span + span::before {
    width: 6px;
    height: 10px;
  }
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  font-size: max(1.6rem, 13px);
  line-height: 1.4375;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td strong,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th strong {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.c-table01 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-table01 {
    max-width: 34.5rem;
    width: 100%;
    margin-inline: auto;
  }
}
.c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td, .c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td, .c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
    padding: 0.9rem 1rem;
  }
}
.c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  font-size: max(1.6rem, 13px);
  line-height: 1.4375;
  width: calc(100% - 10.625em);
}
@media screen and (max-width: 768px) {
  .c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    width: calc(100% - 10.7142857143em);
    border-left: none;
  }
}
.c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  font-size: max(1.6rem, 13px);
  line-height: 1.4375;
  width: 10.625em;
  background: #E6F2E1;
}
@media screen and (max-width: 768px) {
  .c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
    font-size: 1.5rem;
    line-height: 1.4;
    width: 10em;
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  .page-id-432 .c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td,
  .parent-pageid-58 .c-table01.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
    font-size: 1.5rem;
    line-height: 1.4;
    width: calc(100% - 10em);
  }
}

.c-table02 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-table02 {
    max-width: 34.5rem;
    width: 100%;
    margin-inline: auto;
    display: block;
  }
}
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  display: block;
}
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody {
    gap: 1.5rem;
  }
}
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr {
  display: flex;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
}
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr:nth-child(odd) {
  background-color: #e6f2e1;
}
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr:nth-child(even) {
  background-color: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr {
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    gap: 0.8rem;
  }
}
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background: transparent;
}
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th,
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  border: none;
  padding: 0;
}
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  font-size: max(1.8rem, 15px);
  line-height: 1.625;
  width: 8.7777777778em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
    font-size: 1.6rem;
    line-height: 1.5;
    width: 100%;
  }
}
.c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  font-size: max(1.6rem, 13px);
  line-height: 1.5625;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .c-table02.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
    font-size: 1.5rem;
    line-height: 1.4;
    flex: none;
    width: 100%;
  }
}

.c-table03 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-table03 {
    max-width: 34.5rem;
    width: 100%;
    margin-inline: auto;
  }
}
.c-table03.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background: #689657;
  color: var(--white);
}
.c-table03.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th, .c-table03.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  padding: 1.5rem 2.2rem;
  font-size: max(2rem, 16px);
  line-height: 1.45;
  border: 1px solid var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .c-table03.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th, .c-table03.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
    padding: 0.9rem 1.4rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.c-table03.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  border-right: none;
  border-bottom: none;
}
.c-table03.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th + th {
  border-right: 1px solid var(--bd-gray);
  border-left: 1px solid var(--white);
}
.c-table03.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  border-top: none;
}

.c-table04 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-table04 {
    max-width: 34.5rem;
    width: 100%;
    margin-inline: auto;
  }
}
.c-table04.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background: #E6F2E1;
}
.c-table04.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th, .c-table04.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  padding: 0.8rem 2.2rem;
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  border: 1px solid var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .c-table04.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th, .c-table04.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
    padding: 0.9rem 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.c-table04.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  border-bottom: none;
}
.c-table04.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  border-top: none;
  width: 50%;
}

.c-table05 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-table05 {
    max-width: 34.5rem;
    width: 100%;
    margin-inline: auto;
  }
}
.c-table05.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background: #689657;
  color: var(--white);
}
.c-table05.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th, .c-table05.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  padding: 0.8rem 2.2rem;
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  border: 1px solid var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .c-table05.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th, .c-table05.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
    padding: 0.9rem 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.c-table05.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  border-bottom: none;
}
.c-table05.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  width: 50%;
}
.c-table05.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td:nth-child(1) {
  background: #E6F2E1;
}

.c-table06 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-table06 {
    max-width: 34.5rem;
    width: 100%;
    margin-inline: auto;
  }
}
.c-table06.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background: #689657;
  color: var(--white);
}
.c-table06.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td, .c-table06.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .c-table06.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td, .c-table06.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
    padding: 0.9rem 1rem;
  }
}
.c-table06.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  font-size: max(1.6rem, 13px);
  line-height: 1.4375;
  width: calc(100% - 10.625em);
}
@media screen and (max-width: 768px) {
  .c-table06.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
    font-size: 1.3rem;
    line-height: 1.5384615385;
    width: calc(100% - 11.5384615385em);
  }
}
.c-table06.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  font-size: max(1.6rem, 13px);
  line-height: 1.4375;
  width: 10.625em;
  background: #E6F2E1;
}
@media screen and (max-width: 768px) {
  .c-table06.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
    font-size: 1.5rem;
    line-height: 1.4;
    width: 10em;
  }
}

.c-table07 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-table07 {
    overflow: auto;
  }
  .c-table07.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
    min-width: 60rem;
    width: auto;
  }
}
.c-table07.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background: #689657;
  color: var(--white);
}
.c-table07.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td, .c-table07.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--bd-gray);
  font-size: max(1.6rem, 13px);
  line-height: 1.4375;
  width: 33.3333333333%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-table07.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td, .c-table07.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
    padding: 0.9rem 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
    white-space: nowrap;
    width: fit-content !important;
  }
}
.c-table07.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th {
  border-right: none;
  border-bottom: none;
}
.c-table07.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th + th {
  border-left: 1px solid var(--white);
}

.officer__list {
  border-top: 1px solid var(--bd-gray);
  border-left: 1px solid var(--bd-gray);
}
.officer__list .officer__item--head h3,
.officer__list .officer__item--row dt,
.officer__list .officer__item--row dd {
  border-bottom: 1px solid var(--bd-gray);
  border-right: 1px solid var(--bd-gray);
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  padding: 0.8rem 2.2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .officer__list .officer__item--head h3,
  .officer__list .officer__item--row dt,
  .officer__list .officer__item--row dd {
    padding: 0.9rem 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.officer__list .officer__item--head {
  display: flex;
}
.officer__list .officer__item--head h3 {
  font-weight: 600;
  background: #689657;
  color: var(--white);
  border-right: 1px solid #fff;
}
.officer__list .officer__item--head h3:last-child {
  border-right: var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .officer__list .officer__item--head h3 {
    border-bottom: none;
  }
  .officer__list .officer__item--head h3:nth-of-type(2) {
    border-right: var(--bd-gray);
  }
  .officer__list .officer__item--head h3:nth-of-type(3), .officer__list .officer__item--head h3:nth-of-type(4) {
    display: none;
  }
}
.officer__list .officer__item--head h3:nth-of-type(odd) {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .officer__list .officer__item--head h3:nth-of-type(odd) {
    width: 50%;
  }
}
.officer__list .officer__item--head h3:nth-of-type(even) {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .officer__list .officer__item--head h3:nth-of-type(even) {
    flex: none;
    width: 50%;
  }
}
.officer__list .officer__item--row {
  display: flex;
  flex-wrap: wrap;
}
.officer__list .officer__item--row .officer__item-row {
  display: flex;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .officer__list .officer__item--row .officer__item-row {
    width: 100%;
  }
}
.officer__list .officer__item--row dt {
  width: 20rem;
  background: #E6F2E1;
}
@media screen and (max-width: 768px) {
  .officer__list .officer__item--row dt {
    width: 50%;
    border-right: none;
  }
}
.officer__list .officer__item--row dd {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .officer__list .officer__item--row dd {
    flex: none;
    width: 50%;
  }
}

.employee__list {
  border-top: 1px solid var(--bd-gray);
  border-left: 1px solid var(--bd-gray);
  position: relative;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .employee__list {
    margin-top: 3rem;
  }
}
.employee__list > p {
  border: none;
  background: transparent;
  font-size: max(1.8rem, 15px);
  line-height: 1.4444444444;
  padding: 0;
  position: absolute;
  top: -3.6rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .employee__list > p {
    font-size: 1.5rem;
    line-height: 1.4;
    top: -3.1rem;
  }
}
.employee__list .employee__item--head h3,
.employee__list .employee__item--row dt,
.employee__list .employee__item--row dd {
  border-bottom: 1px solid var(--bd-gray);
  border-right: 1px solid var(--bd-gray);
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  padding: 0.8rem 2.2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .employee__list .employee__item--head h3,
  .employee__list .employee__item--row dt,
  .employee__list .employee__item--row dd {
    padding: 0.9rem 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.employee__list .employee__item--head {
  display: flex;
}
.employee__list .employee__item--head h3 {
  font-weight: 600;
  background: #689657;
  color: var(--white);
  border-right: 1px solid #fff;
  text-align: center;
}
.employee__list .employee__item--head h3:last-child {
  border-right: var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .employee__list .employee__item--head h3 {
    border-bottom: none;
  }
  .employee__list .employee__item--head h3:nth-of-type(2) {
    border-right: var(--bd-gray);
  }
  .employee__list .employee__item--head h3:nth-of-type(3), .employee__list .employee__item--head h3:nth-of-type(4) {
    display: none;
  }
}
.employee__list .employee__item--head h3:nth-of-type(odd) {
  width: 8rem;
}
@media screen and (max-width: 768px) {
  .employee__list .employee__item--head h3:nth-of-type(odd) {
    width: 7.4rem;
  }
}
.employee__list .employee__item--head h3:nth-of-type(even) {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .employee__list .employee__item--head h3:nth-of-type(even) {
    text-align: left;
  }
}
.employee__list .employee__item--row {
  display: flex;
  flex-wrap: wrap;
}
.employee__list .employee__item--row .employee__item-row {
  display: flex;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .employee__list .employee__item--row .employee__item-row {
    width: 100%;
  }
}
.employee__list .employee__item--row dt {
  width: 8rem;
  background: #E6F2E1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .employee__list .employee__item--row dt {
    width: 7.4rem;
    border-right: none;
  }
}
.employee__list .employee__item--row dd {
  flex: 1;
}

.class__list {
  border-top: 1px solid var(--bd-gray);
  border-left: 1px solid var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .class__list {
    border: none;
  }
}
.class__list .class__item--head h3,
.class__list .class__item--row h3,
.class__list .class__item--row p {
  border-bottom: 1px solid var(--bd-gray);
  border-right: 1px solid var(--bd-gray);
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  padding: 0.8rem 2.2rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .class__list .class__item--head h3,
  .class__list .class__item--row h3,
  .class__list .class__item--row p {
    padding: 0.9rem 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
    border: none;
  }
}
.class__list .class__item--head {
  display: flex;
}
@media screen and (max-width: 768px) {
  .class__list .class__item--head {
    display: none;
  }
}
.class__list .class__item--head h3 {
  font-weight: 600;
  background: #689657;
  color: var(--white);
  border-right: 1px solid #fff;
}
.class__list .class__item--head h3:nth-of-type(1) {
  width: 27.8rem;
}
.class__list .class__item--head h3:nth-of-type(2) {
  flex: 1;
}
.class__list .class__item--head h3:nth-of-type(3) {
  width: 15.8rem;
  border-right: var(--bd-gray);
}
.class__list .class__item--row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .class__list .class__item--row {
    flex-direction: column;
    gap: 4rem;
  }
}
.class__list .class__item--row .class__item-row {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .class__list .class__item--row .class__item-row {
    flex-direction: column;
    border: 1px solid var(--bd-gray);
  }
}
.class__list .class__item--row p:nth-of-type(1),
.class__list .class__item--row h3:nth-of-type(1) {
  width: 27.8rem;
}
@media screen and (max-width: 768px) {
  .class__list .class__item--row p:nth-of-type(1),
  .class__list .class__item--row h3:nth-of-type(1) {
    width: 100%;
  }
}
.class__list .class__item--row p:nth-of-type(2),
.class__list .class__item--row h3:nth-of-type(2) {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .class__list .class__item--row p:nth-of-type(2),
  .class__list .class__item--row h3:nth-of-type(2) {
    flex: none;
    width: 100%;
  }
}
.class__list .class__item--row p:nth-of-type(3),
.class__list .class__item--row h3:nth-of-type(3) {
  width: 15.8rem;
}
@media screen and (max-width: 768px) {
  .class__list .class__item--row p:nth-of-type(3),
  .class__list .class__item--row h3:nth-of-type(3) {
    width: 100%;
  }
}
.class__list .class__item--row p a,
.class__list .class__item--row h3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.class__list .class__item--row p a span,
.class__list .class__item--row h3 a span {
  font-weight: 600;
  color: var(--text);
  transition: opacity 0.3s ease;
}
.class__list .class__item--row p a img,
.class__list .class__item--row h3 a img {
  width: 2rem;
  height: 2rem;
}
.class__list .class__item--row p a .class__item-icon,
.class__list .class__item--row h3 a .class__item-icon {
  width: max(2.1rem, 17px);
  height: max(2.1rem, 17px);
  background-image: url(../images/chevron-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  display: inline-block;
}
.class__list .class__item--row p a:hover span,
.class__list .class__item--row h3 a:hover span {
  opacity: 0.6;
}
.class__list .class__item--row p a:hover .class__item-icon,
.class__list .class__item--row h3 a:hover .class__item-icon {
  background-image: url(../images/chevron-icon-white.svg);
}
.class__list .class__item--row h3 {
  display: none;
}
@media screen and (max-width: 768px) {
  .class__list .class__item--row h3 {
    display: block;
    font-weight: 600;
    background: #689657;
    color: var(--white);
  }
}

.summary-list {
  width: 100%;
  border-top: 1px solid var(--bd-gray);
  border-left: 1px solid var(--bd-gray);
}
.summary-list__item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--bd-gray);
  border-right: 1px solid var(--bd-gray);
}
.summary-list__item dt,
.summary-list__item dd {
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  padding: 0.8rem 2.2rem;
}
@media screen and (max-width: 768px) {
  .summary-list__item dt,
  .summary-list__item dd {
    padding: 0.9rem 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.summary-list__item dt {
  width: 17rem;
  font-weight: 600;
  background: #E6F2E1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .summary-list__item dt {
    width: 15rem;
  }
}
.summary-list__item dd {
  flex: 1;
}
.summary-list__item dd iframe {
  width: 100%;
  height: 30.9rem;
  background: #F0F0F0;
  border: none;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .summary-list__item dd iframe {
    height: 12.5rem;
  }
}
.summary-list__item dd iframe + p {
  margin-top: 0.9rem;
}

.document-list {
  border-top: 1px solid var(--bd-gray);
  border-left: 1px solid var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .document-list {
    border: none;
  }
}
.document-list .document-list__item--head h3,
.document-list .document-list__item--row h3,
.document-list .document-list__item--row p {
  border-bottom: 1px solid var(--bd-gray);
  border-right: 1px solid var(--bd-gray);
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  padding: 0.8rem 2.2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .document-list .document-list__item--head h3,
  .document-list .document-list__item--row h3,
  .document-list .document-list__item--row p {
    padding: 0.9rem 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
    border: none;
  }
}
.document-list .document-list__item--head {
  display: flex;
}
@media screen and (max-width: 768px) {
  .document-list .document-list__item--head {
    display: none;
  }
}
.document-list .document-list__item--head h3 {
  font-weight: 600;
  background: #689657;
  color: var(--white);
  border-right: 1px solid #fff;
  text-align: center;
}
.document-list .document-list__item--head h3:nth-of-type(1) {
  width: 20rem;
}
.document-list .document-list__item--head h3:nth-of-type(2) {
  flex: 1;
}
.document-list .document-list__item--head h3:nth-of-type(3) {
  width: 11.6rem;
  border-right: var(--bd-gray);
}
.document-list .document-list__item--row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .document-list .document-list__item--row {
    flex-direction: column;
    gap: 2rem;
  }
}
.document-list .document-list__item--row .document-list__item-row {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .document-list .document-list__item--row .document-list__item-row {
    flex-direction: column;
    border: 1px solid var(--bd-gray);
  }
}
.document-list .document-list__item--row p:nth-of-type(1),
.document-list .document-list__item--row h3:nth-of-type(1) {
  width: 20rem;
  background: #E6F2E1;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .document-list .document-list__item--row p:nth-of-type(1),
  .document-list .document-list__item--row h3:nth-of-type(1) {
    width: 100%;
    text-align: center;
  }
}
.document-list .document-list__item--row p:nth-of-type(2),
.document-list .document-list__item--row h3:nth-of-type(2) {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .document-list .document-list__item--row p:nth-of-type(2),
  .document-list .document-list__item--row h3:nth-of-type(2) {
    flex: none;
    width: 100%;
    text-align: center;
  }
}
.document-list .document-list__item--row p:nth-of-type(3),
.document-list .document-list__item--row h3:nth-of-type(3) {
  width: 11.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .document-list .document-list__item--row p:nth-of-type(3),
  .document-list .document-list__item--row h3:nth-of-type(3) {
    width: 100%;
  }
}
.document-list .document-list__item--row p a,
.document-list .document-list__item--row h3 a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.document-list .document-list__item--row p a img,
.document-list .document-list__item--row h3 a img {
  width: max(2.1rem, 17px);
  height: max(2.1rem, 17px);
}
.document-list .document-list__item--row p a .document-list__item-icon,
.document-list .document-list__item--row h3 a .document-list__item-icon {
  width: max(2.1rem, 17px);
  height: max(2.1rem, 17px);
  background-image: url(../images/chevron-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  display: inline-block;
}
.document-list .document-list__item--row p a:hover .document-list__item-icon,
.document-list .document-list__item--row h3 a:hover .document-list__item-icon {
  background-image: url(../images/chevron-icon-white.svg);
}
.document-list .document-list__item--row h3 {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .document-list .document-list__item--row h3 {
    display: flex !important;
    font-weight: 600;
    background: #689657 !important;
    color: var(--white);
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .document-list .document-list__item--row p:nth-of-type(1) {
    background: var(--white) !important;
    justify-content: center;
  }
}
.document-list:not(:has(.pdf-column)) .document-list__item--row p:nth-of-type(1),
.document-list:not(:has(.pdf-column)) .document-list__item--row h3:nth-of-type(1) {
  background: #E6F2E1 !important;
}
@media screen and (max-width: 768px) {
  .document-list:not(:has(.pdf-column)) .document-list__item--head {
    display: flex;
  }
  .document-list:not(:has(.pdf-column)) .document-list__item--head h3:nth-of-type(1) {
    width: 7.4rem;
  }
  .document-list:not(:has(.pdf-column)) .document-list__item--head h3:nth-of-type(2) {
    flex: 1;
  }
  .document-list:not(:has(.pdf-column)) .document-list__item--row {
    gap: 0;
  }
  .document-list:not(:has(.pdf-column)) .document-list__item--row h3 {
    display: none !important;
  }
  .document-list:not(:has(.pdf-column)) .document-list__item--row .document-list__item-row {
    flex-direction: row;
  }
  .document-list:not(:has(.pdf-column)) .document-list__item--row .document-list__item-row + .document-list__item-row {
    border-top: none;
  }
  .document-list:not(:has(.pdf-column)) .document-list__item--row p:nth-of-type(1),
  .document-list:not(:has(.pdf-column)) .document-list__item--row h3:nth-of-type(1) {
    width: 7.4rem;
    justify-content: center;
    background: #E6F2E1 !important;
  }
  .document-list:not(:has(.pdf-column)) .document-list__item--row p:nth-of-type(2),
  .document-list:not(:has(.pdf-column)) .document-list__item--row h3:nth-of-type(2) {
    flex: 1;
    text-align: left;
  }
}

.mt10 {
  margin-top: 1rem;
}

.mt25 {
  margin-top: 2.5rem;
}

.mt30-15 {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .mt30-15 {
    margin-top: 1.5rem;
  }
}

.editor-sidebar {
  font-size: 14px;
}
.editor-sidebar svg {
  width: auto;
  height: auto;
}

.components-popover {
  font-size: 16px;
}
.components-popover svg {
  width: auto;
  height: auto;
}

.interface-navigable-region {
  font-size: 16px;
}
.interface-navigable-region svg {
  width: fit-content;
}
.interface-navigable-region:not(:has(.lzb-block-builder-controls-item-repeater-toggle)) svg {
  width: auto;
  height: auto;
}

.block-editor-block-list__block a {
  pointer-events: none;
}

.wp-admin {
  font-size: 16px;
}
.wp-admin span {
  color: inherit;
}
.wp-admin svg {
  width: auto;
  height: auto;
}

.about {
  position: relative;
}
@media screen and (max-width: 768px) {
  .about {
    padding-inline: 1.5rem;
  }
}
.about__grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.5rem;
  row-gap: 4rem;
  max-width: min(880px, 95%);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 0rem;
    row-gap: 3rem;
    padding-inline: 1.5rem;
  }
}
.about__card {
  border-bottom: 1px solid var(--darkgray);
  /*   &:hover {
    transform: translateY(rem(-4));
  } */
}
.about__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.about__link:focus {
  outline: 0.2rem solid var(--accent);
  outline-offset: 0.2rem;
}
.about__link:hover {
  opacity: 0.8;
}
.about__image-wrapper {
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .about__image-wrapper {
    border-radius: 1.5rem;
  }
}
.about__content {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.about__title {
  font-size: 2.4rem;
  font-weight: 600;
  flex: 1;
  line-height: 1.4;
  position: relative;
  padding-left: 2.4rem;
  display: flex;
  align-items: center;
}
.about__title::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--accent);
  border-radius: 50%;
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: inherit;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 1.8rem;
    padding-left: 2.2rem;
  }
}
.about__icon {
  width: 2.3rem;
  height: 2.3rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .about__icon {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.news {
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 2.5rem;
    padding-inline: 1.5rem;
  }
}
.news__list {
  max-width: min(1000px, 95%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .news__list {
    gap: 1.5rem;
  }
}
.news__item {
  position: relative;
  background-color: var(--graybg);
  border: 0.1rem solid var(--gray);
  border-radius: 2rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .news__item:has(.news__content):hover {
    opacity: 0.6;
  }
}
.news__item:has(.news__details[open]) {
  opacity: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .news__item {
    border-radius: 1.5rem;
  }
}
.news__item .grenn-icon {
  pointer-events: none;
}
.news__details {
  width: 100%;
}
.news__summary {
  padding-inline: 4rem;
  padding-block: 3rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background-color 0.2s ease;
}
.news__summary::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 768px) {
  .news__summary {
    padding-block: 2rem 1.4rem;
    padding-inline: 1.5rem;
  }
  .news__summary--has-content {
    padding-bottom: 5rem;
  }
}
.news__date {
  font-family: var(--urbanist);
  font-size: max(1.8rem, 12px);
  color: var(--accent);
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 1.6rem;
  }
}
.news__title {
  font-size: max(1.8rem, 13px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.news__content {
  padding-inline: 4rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border-top: 0.1rem solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .news__content {
    border-top: 0.1rem solid var(--accent);
    padding-top: 1.4rem;
    padding-bottom: 0rem;
    padding-inline: 1.5rem;
  }
}
.news__text {
  font-size: max(1.6rem, 12px);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .news__text {
    font-size: 1.5rem;
  }
}
.news__icon {
  transition: transform 0.3s ease;
  display: none;
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .news__icon {
    display: grid;
  }
}

.news__details[open] {
  padding-bottom: 1.4rem;
}
@media screen and (max-width: 768px) {
  .news__details[open] {
    padding-bottom: 5rem;
  }
}
.news__details[open] .news__summary {
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .news__details[open] .news__summary {
    padding-bottom: 1.4rem;
  }
}
.news__details[open] .news__content {
  animation: slideDown 0.3s ease-out;
}

.news__item:has(.news__details[open]) .news__icon {
  transform: translateX(-50%) rotate(-90deg);
  transition: transform 0.3s ease;
}

.news__item:has(.news__details.is-disabled) .sp-only {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-rem(10));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.heros {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .heros {
    gap: 3rem;
    padding-inline: 1.5rem;
  }
}

.hero {
  position: relative;
  max-width: min(1000px, 95%);
  width: 100%;
  min-height: 41.4rem;
  overflow: hidden;
  border-radius: 2rem;
  margin-inline: auto;
  transition: transform 0.3s ease;
  /*  &:hover {
    background-color: $white;
    transform: translateY(rem(-2));
    box-shadow: 0 rem(6) rem(20) rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    .hero__action-icon {
      transform: translateX(rem(4));
      transition: transform 0.3s ease;
    }
  } */
}
@media screen and (max-width: 768px) {
  .hero {
    width: 100%;
    min-height: 33rem;
    border-radius: 1.5rem;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  --webkit-backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.22);
}
.hero__link {
  width: 100%;
  height: 100%;
  display: grid;
}
.hero__link:hover .hero__bg-image {
  opacity: 0.6;
}
.hero__link:hover .hero__action-text {
  opacity: 0.6;
}
.hero__link:hover .hero__action-icon {
  background-image: url("../images/aboutus-icon.svg");
}
.hero__content {
  min-height: 41.4rem;
  display: flex;
  flex-direction: column;
  padding: 6rem;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .hero__content {
    padding: 4.5rem 1.5rem;
    min-height: 33rem;
    gap: 2rem;
  }
}
.hero__heading {
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-bottom: 0.1rem solid var(--white);
}
@media screen and (max-width: 768px) {
  .hero__heading {
    padding-bottom: 2rem;
    gap: 0.4rem;
  }
}
.hero__heading-en {
  font-family: var(--urbanist);
  font-size: max(2rem, 16px);
  color: var(--white);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .hero__heading-en {
    font-size: 1.6rem;
  }
}
.hero__heading-ja {
  font-size: max(4rem, 28px);
  line-height: 1.5;
  color: var(--white);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .hero__heading-ja {
    font-size: 2.6rem;
    line-height: 1.4;
  }
}
.hero__text {
  padding-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .hero__text {
    padding-top: 0rem;
  }
}
.hero__description {
  font-size: max(1.8rem, 14px);
  color: var(--white);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .hero__description {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.hero__action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .hero__action {
    gap: 1.2rem;
  }
}
.hero__action-text {
  white-space: nowrap;
  font-size: max(1.8rem, 16px);
  color: var(--white);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hero__action-text {
    font-size: 1.6rem;
  }
}
.hero__action-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  background-image: url("../images/circle-icon-white.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .hero__action-icon {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.rectangle-cards {
  padding-top: 1rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .rectangle-cards {
    padding-inline: 1.5rem;
  }
}
.rectangle-cards__list {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__list {
    gap: 2rem;
  }
}
.rectangle-cards__item {
  border-bottom: 1px solid var(--darkgray);
  padding-bottom: 3rem;
}
.rectangle-cards__link {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__link {
    flex-direction: column;
    gap: 2rem;
  }
}
.rectangle-cards__image-wrapper {
  width: max(24.7rem, 247px);
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 247/180;
}
.rectangle-cards__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__image-wrapper {
    width: 100%;
  }
}
.rectangle-cards__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__content {
    gap: 1.3rem;
    display: contents;
  }
}
.rectangle-cards__title {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__title {
    gap: 0.4rem;
    text-align: center;
  }
}
.rectangle-cards__title-en {
  font-family: var(--urbanist);
  font-size: max(1.6rem, 14px);
  color: var(--accent);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__title-en {
    font-size: 1.4rem;
  }
}
.rectangle-cards__title-ja {
  font-size: max(2.4rem, 20px);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__title-ja {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.rectangle-cards__description {
  font-size: max(1.6rem, 14px);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__description {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.rectangle-cards__action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__action {
    gap: 1.2rem;
    margin-top: -0.7rem;
    align-self: flex-end;
  }
}
.rectangle-cards__action:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.rectangle-cards__action:hover .rectangle-cards__action-icon {
  background-image: url("../images/aboutus-icon-white.svg");
}
.rectangle-cards__action-text {
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  color: #020202;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__action-text {
    font-size: 1.6rem;
    color: var(--text);
    line-height: 1.9375;
  }
}
.rectangle-cards__action-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  background-image: url("../images/aboutus-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__action-icon {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.home .rectangle-cards__action {
  margin-top: -2rem;
}
@media screen and (max-width: 768px) {
  .home .rectangle-cards__action {
    margin-top: -0.5rem;
  }
}

.page-id-66 .rectangle-cards__item {
  padding-bottom: 3rem;
}
.page-id-66 .rectangle-cards__action {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .page-id-66 .rectangle-cards__list {
    gap: 3rem;
  }
  .page-id-66 .rectangle-cards__item {
    padding-bottom: 2rem;
  }
  .page-id-66 .rectangle-cards__title {
    order: 0;
    text-align: left;
    width: 100%;
  }
  .page-id-66 .rectangle-cards__title-ja {
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
  .page-id-66 .rectangle-cards__action {
    margin-top: -0.5rem;
  }
}

.rectangle-cards__item--02 {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__item--02 {
    flex-direction: column;
    gap: 3rem;
  }
}
.rectangle-cards__item--02 .rectangle-cards__image-wrapper {
  width: max(26.1rem, 261px);
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .rectangle-cards__item--02 .rectangle-cards__image-wrapper {
    width: 100%;
  }
}

.seo-message .rectangle-cards__image-wrapper {
  aspect-ratio: 261/330;
}

.rectangle-cards__list--02 .rectangle-cards__content {
  gap: 1.5rem;
}
.rectangle-cards__list--02 .rectangle-cards__action {
  margin-top: 2.5rem;
}

.fv {
  position: relative;
}
.fv__container {
  position: relative;
  max-width: 192rem;
  width: 100%;
  margin-inline: auto;
}
.fv__caption {
  position: absolute;
  top: 27rem;
  left: 7rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .fv__caption {
    top: 25rem;
    left: 1.5rem;
  }
}
.fv__caption-title {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .fv__caption-title {
    gap: 1rem;
  }
}
.fv__caption-title span {
  font-size: clamp(32px, 2.9282576867vw, 70px);
  font-weight: 600;
  line-height: 1.45;
  background: var(--white);
  width: fit-content;
  padding-inline: 1rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .fv__caption-title span {
    font-size: 2.6rem;
    line-height: 1.4230769231;
    padding-block: 0.1rem;
    padding-inline: 1rem;
  }
}
.fv__caption-sub-title {
  font-family: var(--urbanist);
  font-weight: 600;
  font-size: min(1.317715959vw, 26px);
  line-height: 1;
  letter-spacing: 0.31em;
  text-align: left;
  color: #059a46;
  margin-top: 2.3rem;
}
@media screen and (max-width: 768px) {
  .fv__caption-sub-title {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }
}

.c-card-list01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 900px) {
  .c-card-list01 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-card-list01 {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    gap: 2rem;
  }
}
.c-card-list01 li {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-card-list01 li {
    gap: 0.8rem;
  }
}
.c-card-list01__image {
  border-radius: 1.5rem;
  aspect-ratio: 313/222;
  background: #E5E5E5;
  object-fit: contain;
}
.c-card-list01__title {
  font-weight: 700;
  font-size: max(1.8rem, 13px);
  padding-bottom: 1.2rem;
}
.c-card-list01__title--mt14 {
  margin-top: 0.2rem;
  padding-bottom: 0;
}
.c-card-list01__title--pb12 {
  padding-bottom: 1.2rem;
}
.c-card-list01__title:has(+ .c-card-list01__text) {
  border-bottom: 1px solid var(--darkgray);
}
@media screen and (max-width: 768px) {
  .c-card-list01__title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.c-card-list01__text {
  font-weight: 400;
  font-size: max(1.6rem, 12px);
}
.c-card-list01__text > span {
  color: inherit;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-card-list01__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.c-card-list01--media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .c-card-list01--media {
    width: 100%;
    padding: 0;
  }
}
.c-card-list01--media li {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .c-card-list01--media li {
    flex-direction: column;
  }
}
.c-card-list01--media .c-card-list01__image {
  border-radius: 1.5rem;
  flex: 1;
  width: 31.3rem;
}
@media screen and (max-width: 768px) {
  .c-card-list01--media .c-card-list01__image {
    border-radius: 1rem;
    width: 100%;
  }
}
.c-card-list01--media .c-card-list01__title {
  flex: 2;
}
.c-card-list01--media .c-card-list01__title strong {
  margin-top: 1.4rem;
  display: inline-block;
}

.c-card-list01--col-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem 3.6rem;
}
@media screen and (max-width: 768px) {
  .c-card-list01--col-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    max-width: 31.3rem;
    margin-inline: auto;
    width: 100%;
  }
}
.c-card-list01--col-2 .c-card-list01__image {
  border: none;
  aspect-ratio: 482/341;
}
@media screen and (max-width: 768px) {
  .c-card-list01--col-2 .c-card-list01__image {
    aspect-ratio: 313/222;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .c-card-list01--col-2 .c-card-list01__title {
    font-size: 1.6rem;
    line-height: 1.4;
    padding-bottom: 1.2rem;
  }
}
.c-card-list01--col-2 .c-card-list01__text {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-card-list01--col-2 .c-card-list01__text {
    line-height: 1.8;
  }
}

/* 加盟団体 ページ余白調整*/
.page-id-42 .wp-block-lazyblock-c-note + div {
  margin-top: -1.3rem;
}
@media screen and (max-width: 768px) {
  .page-id-42 .c-card-list01 {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .page-id-42 .c-card-list01 li {
    gap: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-id-42 .c-card-list01__title {
    padding-bottom: 1.2rem;
  }
}
.page-id-42 .c-card-list01__text::before {
  content: "加盟年度";
  font-weight: 600;
}
.page-id-42 .c-card-list01__text > span::before {
  content: "/";
  margin-inline: 0.8rem 0.4rem;
  color: #c3c3c3;
}

/* 区民スポーツ大会　ページ余白調整 */
/* .page-id-42 {
  .wp-block-lazyblock-subsection-head {
    + div {
      margin-top: rem(13);
    }
  }
} */
.c-card-list02 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 1rem;
  row-gap: 3rem;
}
@media (max-width: 900px) {
  .c-card-list02 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .c-card-list02 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-card-list02 {
    column-gap: 0.8rem;
    row-gap: 1.5rem;
  }
}
.c-card-list02 li {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.c-card-list02__image {
  border-radius: 1rem;
  aspect-ratio: 192/130;
}
.c-card-list02__title {
  font-weight: 600;
  font-size: max(1.8rem, 13px);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-card-list02__title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.c-card-list02__text {
  font-weight: 400;
  font-size: max(1.4rem, 11px);
}
@media screen and (max-width: 768px) {
  .c-card-list02__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

@media screen and (max-width: 768px) {
  .parent-pageid-50 .c-card-list02__title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .parent-pageid-50 .c-btn__link {
    margin-top: 1rem;
  }
}

.c-card-list03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.5rem;
  row-gap: 4rem;
  max-width: max(88rem, 880px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-card-list03 {
    row-gap: 2rem;
  }
}
@media (max-width: 600px) {
  .c-card-list03 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-card-list03 li {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-card-list03 li {
    gap: 0.8rem;
  }
}
.c-card-list03__image {
  border-radius: 1.5rem;
  aspect-ratio: 423/246;
  width: inherit;
}
.c-card-list03__title {
  font-weight: 600;
  font-size: max(1.8rem, 13px);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-card-list03__title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.c-link-list01 {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #a2a2a2;
}
.c-link-list01 li {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  border-bottom: 1px solid #a2a2a2;
}
@media screen and (max-width: 768px) {
  .c-link-list01 li {
    gap: 3rem;
  }
}
.c-link-list01 li:hover .c-link-list01__link img {
  transform: translateX(0.3rem);
  transition: transform 0.3s ease;
}
.c-link-list01__title, .c-link-list01__link-text {
  font-size: max(1.6rem, 14px);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-link-list01__title, .c-link-list01__link-text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.c-link-list01__title {
  flex: 1;
}
.c-link-list01__link-text {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-link-list01__link-text {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.c-link-list01__link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.5rem;
}
.c-link-list01__link img {
  width: max(2rem, 16px);
  height: max(2rem, 16px);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-link-list01__link {
    gap: 1.2rem;
  }
}
.c-link-list01__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-link-list01__icon {
    width: 16px;
    height: 16px;
  }
}

.linkbtn-grid__3column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 4rem;
  column-gap: 3rem;
}
@media screen and (max-width: 768px) {
  .linkbtn-grid__3column {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3rem;
  }
}
.linkbtn-grid__card {
  display: block;
  width: 100%;
}
.linkbtn-grid__permalink {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  justify-content: space-between;
}
.linkbtn-grid__permalink:hover .green-icon-hover {
  opacity: 0.7;
}
.linkbtn-grid__permalink:hover .green-icon-hover .grenn-icon {
  background: var(--white);
  transition: all 0.3s ease;
}
.linkbtn-grid__permalink:hover .green-icon-hover .grenn-icon:before {
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .linkbtn-grid__permalink {
    gap: 1.2rem;
  }
}
.linkbtn-grid__content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
@media screen and (max-width: 768px) {
  .linkbtn-grid__content {
    gap: 1.2rem;
  }
}
.linkbtn-grid__title {
  font-size: max(1.8rem, 16px);
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .linkbtn-grid__title {
    font-size: 1.8rem;
  }
}
.linkbtn-grid__image-wrapper {
  position: relative;
}
.linkbtn-grid__image-wrapper::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 70.9265175719%;
}
.linkbtn-grid__image-wrapper img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.linkbtn-grid__image {
  border-radius: 1.5rem;
}
.linkbtn-grid__link {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  border: 1px solid var(--gray);
  background: var(--white);
  border-radius: 1rem;
}
.linkbtn-grid__link-text {
  font-size: max(1.6rem, 13px);
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .linkbtn-grid__link-text {
    font-size: 1.6rem;
  }
}
.linkbtn-grid__icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .linkbtn-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery__main {
  background: #e5e5e5;
  border-radius: 2rem;
}

.gallery__main-image {
  width: 100%;
  overflow: hidden;
  object-fit: contain;
  border-radius: 2rem;
  max-height: 50rem;
}

.gallery__text {
  margin-top: 1.4rem;
  font-size: max(1.8rem, 16px);
  font-weight: 600;
  line-height: 1.6;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(19.2rem, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.9rem;
    margin-top: 2rem;
  }
}

.gallery__thumbnail {
  background: #e5e5e5;
  width: 100%;
  aspect-ratio: 192/130;
  border-radius: 1rem;
  object-fit: contain;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .gallery__thumbnail {
    object-fit: cover;
  }
}

.gallery__thumbnail:hover {
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.gallery__thumbnail.is-active {
  border: 2px solid var(--main);
}

.simbol-mark {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .simbol-mark {
    gap: 3rem;
  }
}

.simbol-mark__image {
  display: flex;
  flex-direction: column;
  gap: 4.4rem;
}
@media screen and (max-width: 768px) {
  .simbol-mark__image {
    gap: 3rem;
  }
}

.simbol-mark__image-logo {
  width: 42rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .simbol-mark__image-logo {
    width: 24.8rem;
  }
}

.simbol-mark__image-list {
  display: flex;
  justify-content: center;
  gap: 3.6rem;
  width: 33.3rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .simbol-mark__image-list {
    gap: 2.34rem;
    width: 28.7rem;
  }
}

.simbol-mark__image-item {
  width: 15.5rem;
}
@media screen and (max-width: 768px) {
  .simbol-mark__image-item {
    width: 10rem;
  }
}

.simbol-mark__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 60rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .simbol-mark__content {
    gap: 3rem;
    width: 34.5rem;
  }
}

.simbol-mark__box-wrapper {
  max-width: 100%;
  width: fit-content;
  margin-inline: auto;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .simbol-mark__box-wrapper {
    max-width: 100%;
    width: 100%;
  }
}

.simbol-mark__box {
  width: 60rem;
  margin-inline: auto;
}

.simbol-mark__box-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-block: 1.1rem;
  padding-left: 0.9rem;
}
.simbol-mark__box-item + .simbol-mark__box-item {
  border-top: 0.1rem solid #A2A2A2;
}
.simbol-mark__box-item::before {
  content: "";
  background: inherit;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  display: block;
  background: var(--color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.simbol-mark__box-item:nth-child(1) {
  --color: #0068B7;
  color: var(--color);
}
.simbol-mark__box-item:nth-child(2) {
  --color: #43B134;
  color: var(--color);
}
.simbol-mark__box-item:nth-child(3) {
  --color: #E8470A;
  color: var(--color);
}
.simbol-mark__box-item p:first-child {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.2173913043;
  width: 7.4rem;
  color: inherit;
  letter-spacing: 0.24em;
  text-align: center;
}
.simbol-mark__box-item p:nth-child(2) {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.2173913043;
  width: 15.8rem;
  letter-spacing: 0.1em;
}
.simbol-mark__box-item p:last-child {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4545454545;
  color: inherit;
  flex: 1;
  margin-left: 3.6rem;
}

.simbol-mark__text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .simbol-mark__text br {
    display: none;
  }
}

.simple-grid-3column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--bd-gray);
  border-bottom: none;
}
.simple-grid-3column li {
  font-size: max(1.6rem, 12px);
  line-height: 1.6;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--bd-gray);
}
.simple-grid-3column li:not(:nth-of-type(3n)) {
  border-right: 1px solid var(--bd-gray);
}
@media screen and (max-width: 768px) {
  .simple-grid-3column {
    grid-template-columns: repeat(1, 1fr);
  }
  .simple-grid-3column li {
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 0.9rem 1rem;
  }
  .simple-grid-3column li:empty {
    display: none;
  }
  .simple-grid-3column li:not(:nth-of-type(3n)) {
    border-right: none;
  }
}

.sports-youth-club-list {
  margin-top: -2rem;
}

.relations-magazine {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .relations-magazine {
    gap: 3rem;
  }
}
.relations-magazine .relations-magazine__item {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .relations-magazine .relations-magazine__item {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
}
.relations-magazine .relations-magazine__item-image {
  width: 38.6rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .relations-magazine .relations-magazine__item-image {
    width: 24.3rem;
    gap: 1rem;
  }
}
.relations-magazine .relations-magazine__item-image-wrapper {
  width: 100%;
}
.relations-magazine .relations-magazine__item-image-link {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  font-size: max(1.6rem, 13px);
  line-height: 1.5;
  font-weight: 600;
  color: var(--text);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .relations-magazine .relations-magazine__item-image-link {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.relations-magazine .relations-magazine__item-image-link .relations-magazine__item-image-icon {
  width: max(2rem, 16px);
  height: max(2rem, 16px);
  background-image: url(../images/chevron-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  display: inline-block;
}
.relations-magazine .relations-magazine__item-image-link:hover {
  opacity: 0.6;
}
.relations-magazine .relations-magazine__item-image-link:hover .relations-magazine__item-image-icon {
  background-image: url(../images/chevron-icon-white.svg);
}
.relations-magazine .relations-magazine__item-body {
  flex: 1;
  padding: 2.8rem;
  background: #F8F8F8;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
@media screen and (max-width: 768px) {
  .relations-magazine .relations-magazine__item-body {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
}
.relations-magazine .relations-magazine__item-media {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .relations-magazine .relations-magazine__item-media {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.relations-magazine .relations-magazine__item-media-image {
  width: 24.6rem;
}
.relations-magazine .relations-magazine__item-media-title {
  font-size: max(1.8rem, 15px);
  line-height: 1.4444444444;
  font-weight: 600;
  color: var(--text);
}
@media screen and (max-width: 768px) {
  .relations-magazine .relations-magazine__item-media-title {
    font-size: 1.8rem;
  }
}
.relations-magazine .relations-magazine__item-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.relations-magazine .relations-magazine__item-content-description, .relations-magazine .relations-magazine__item-content-name {
  font-size: max(1.4rem, 11px);
  line-height: 1.5714285714;
  font-weight: 400;
  color: var(--text);
}
@media screen and (max-width: 768px) {
  .relations-magazine .relations-magazine__item-content-description, .relations-magazine .relations-magazine__item-content-name {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.wp-block-lazyblock-card-list04 + .wp-block-lazyblock-c-text {
  margin-top: -1rem;
}

.wp-block-lazyblock-card-list04--media + .wp-block-lazyblock-c-text {
  margin-top: -1rem;
}

.wp-block-lazyblock-card-list04 + .wp-block-lazyblock-card-list04--media {
  margin-top: -1rem;
}

.wp-block-lazyblock-card-list04--media + .wp-block-lazyblock-card-list04 {
  margin-top: -1rem;
}

.wp-block-lazyblock-c-text + .wp-block-lazyblock-card-list04 {
  margin-top: -1rem;
}

.wp-block-lazyblock-tab-link + .wp-block-lazyblock-tab-link {
  margin-top: -2.5rem;
}

@media screen and (max-width: 768px) {
  .wp-block-group__inner-container > .subsection-head:first-child,
  .wp-block-group__inner-container > h2.wp-block-heading:first-child {
    margin-top: 0rem;
  }
}

.page-404 {
  padding-block: 23.4rem 22.2rem;
  background-image: url(../images/404-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .page-404 {
    padding-block: 13.2rem 12.5rem;
    background-image: url(../images/404-bg-sp.webp);
  }
}

.title-404 {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--urbanist);
  text-align: center;
  color: var(--accent);
}
@media screen and (max-width: 768px) {
  .title-404 {
    font-size: 4rem;
    line-height: 1.025;
  }
}

.description-404 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .description-404 {
    font-size: 1.7rem;
    line-height: 1.7333333333;
  }
}

.link-btn-404 {
  width: fit-content;
  margin-inline: auto;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .link-btn-404 {
    margin-top: 4rem;
    gap: 1.2rem;
  }
}
.link-btn-404::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background-image: url(../images/icon-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}
@media screen and (max-width: 768px) {
  .link-btn-404::after {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.link-btn-404:hover {
  color: rgba(0, 0, 0, 0.6);
}
.link-btn-404:hover::after {
  background-image: url(../images/icon-green-white.svg);
}

/*# sourceMappingURL=style.css.map */
