@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Roboto:ital,wght@0,300;0,500;0,700;0,900;1,300;1,500;1,700;1,900&display=swap);
:root {
  --app-layout-bg: #282b28;
  --app-bg-color: #f5f5f5;
  --app-header-color: #433929;
  --app-nav-color: #9ccc65;
  --app-footer-bg: #484147;
  --app-footer-color: #c6c1b3;
  --hero-description-bg-clor: rgba(32,26,28,0.85);
  --text-color: #333;
  --link-color: #689f38;
  --link-hover-color: #8bc34a;
  --post-link-color: #689f38;
  --content-max-width: 74rem;
}
.q-tab {
  outline: none;
}
html {
  font-size: 10px;
  overflow-x: hidden;
}
body {
  font: 300 1.6rem/1.2 normal normal;
  font-family: 'Roboto', 'Noto Sans TC', 'PingFang TC', 'Heiti TC', 'Microsoft JhengHei', 'Droid Sans Fallback', serif;
  text-rendering: optimizeLegibility;
  background-color: var(--app-layout-bg);
  color: var(--text-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  letter-spacing: 0.035em;
}
p {
  letter-spacing: 0.025em;
}
small {
  font-size: 0.7em;
}
b {
  font-weight: 500;
}
::selection {
  background-color: var(--link-color);
  color: #fff !important;
}
figure {
  margin: 0;
}
.q-page-container {
  background-color: var(--app-bg-color);
}
.c {
  width: 100%;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 450px) {
  .c {
    width: 84%;
    max-width: 640px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 980px) {
  .c {
    width: 94%;
    max-width: 1280px;
  }
}
@media (min-width: 1900px) {
  .c {
    max-width: 1600px;
  }
}
.c.q-pa-none,
.c.q-px-none {
  padding-left: 0;
  padding-right: 0;
}
.c.q-pa-none {
  padding-top: 0;
  padding-bottom: 0;
}
a {
  text-decoration: none;
  color: var(--link-color);
}
.q-page-scroller > div {
  z-index: 1000;
}
.text-bold-500 {
  font-weight: 500;
}
.q-table__card {
  color: var(--text-color);
}
.q-table tbody td,
.q-table th {
  font-size: 1.6rem;
  line-height: 1.5;
}
/* Enter and leave animations can use different */
/* durations and timing functions.              */
.slide-fade-enter-active {
  transition: all 0.3s cubic-bezier(0.5, 0.25, 0, 1);
}
.slide-fade-leave-active {
  transition: all 0.4s cubic-bezier(0.5, 0.25, 0, 1);
}
.slide-fade-enter,
.slide-fade-leave-to {
  transform: translateX(10px);
  opacity: 0;
}
/*# sourceMappingURL=src/css/app.css.map */
/* HEADER / PAGE-CONTAINER FIX */
.q-page-container {
  padding-top: 80px !important;
}
@media (min-width: 600px) {
.q-page-container {
    padding-top: 90px !important;
}
}
@media (min-width: 1200px) {
.q-page-container {
    padding-top: 120px !important;
}
}
#head {
  background: transparent;
  color: #fff;
  transition-duration: 250ms !important;
}
#head .q-toolbar {
  height: 60px;
  margin: 0 0 20px;
  background-color: var(--app-layout-bg);
  max-width: 1600px;
}
#head .q-toolbar::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  background-color: var(--app-layout-bg);
  z-index: -1;
}
@media (min-width: 600px) {
#head .q-toolbar {
    height: 48px;
    margin: 20px 16px;
    border-radius: 60px;
}
#head .q-toolbar::before {
    display: none;
}
}
@media (min-width: 1200px) {
#head .q-toolbar {
    height: 60px;
    margin: 30px 18px;
}
}
#head .main-nav {
  align-self: center;
  margin-right: 8px;
}
.header-logo {
  border-radius: 50%;
  background: var(--link-color);
  transition: all 0.6s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  width: 6rem;
}
@media (min-width: 1200px) {
.header-logo {
    width: 8rem;
}
}
.header-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  padding-left: 1rem;
}
.header-title small {
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1;
}
@media (min-width: 360px) {
.header-title {
    font-size: 1.6rem;
}
}
@media (min-width: 600px) {
.header-title {
    padding-top: 3px;
    font-size: 1.8rem;
    letter-spacing: 2px;
}
}
@media (min-width: 1200px) {
.header-title {
    font-size: 2.1rem;
    padding-left: 1.6rem;
}
}
#footer {
  background-color: var(--app-footer-bg);
  color: var(--app-footer-color);
}
#footer * {
  color: var(--app-footer-color);
}
@media (max-width: 800px) {
.footer {
    display: block !important;
}
}
.footer-info,
.footer-description {
  width: 100%;
  flex: 10000 1 0%;
}
.footer-description > div {
  padding-top: 46px;
  text-align: right;
  margin-left: auto;
}
@media (max-width: 800px) {
.footer-description > div {
    max-width: 360px;
    margin-right: auto;
    padding-top: 10px;
    text-align: center;
}
}
.footer-description p {
  font-size: 1.3rem;
  line-height: 1.35;
  letter-spacing: 0.7px;
}
@media (max-width: 800px) {
.footer-info {
    max-width: 360pxr;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}
}
.footer-title {
  letter-spacing: 0.7px;
}
.contact-link {
  color: #ddd;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}
.contact-link .q-avatar {
  height: 0.8em;
}
.contact-link .q-item__section--side {
  color: #ddd;
}
/* Page Container */
.q-page-container {
  transition: background-color 0.7s ease;
}
/*# sourceMappingURL=src/layouts/MainLayout.css.map */
.home-header-slide {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
  padding-top: 12rem;
  padding-bottom: 3rem;
  isolation: isolate;
  height: 100%;
}
.home-header-slide__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 101vw;
  height: 100%;
  height: calc(100% + 90px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #aaa;
  z-index: -1;
}
.home-header__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 980px) {
.home-header__inner {
    width: 94%;
    max-width: 1280px;
}
}
@media (min-width: 1900px) {
.home-header__inner {
    max-width: 1600px;
}
}
/*# sourceMappingURL=src/components/HomeHeaderCarousel/HomeHeaderCarouselSlide.css.map */
[data-v-5fa08243] .home-header__background {
  opacity: 0.75;
  filter: blur(12px);
}
[data-v-5fa08243] .cover-wrapper {
  display: block;
  background-image: url("/imgs/activities/2025/frog-week.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
}
@media (min-width: 600px) {
[data-v-5fa08243] .cover-wrapper {
    height: auto;
    aspect-ratio: 1200/626;
}
}
[data-v-5fa08243] .q-btn {
  color: #4a3f20 !important;
  text-shadow: 1px 1px #fff;
}
[data-v-5fa08243] .q-btn.q-btn--outline >>> .q-btn__wrapper:before {
  border: 3px solid currentColor;
  background-color: rgba(255,202,40,0.5);
}
/*# sourceMappingURL=src/components/HomeHeaderCarousel/slides/HomeHeaderSlide2501.css.map */
[data-v-3015b5f8] .home-header__background {
  opacity: 0.75;
  filter: blur(12px);
}
[data-v-3015b5f8] .cover-wrapper {
  display: block;
  background-image: url("/imgs/home-header/2403/poster.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #e4ecf6;
  height: 100%;
}
@media (min-width: 600px) {
[data-v-3015b5f8] .cover-wrapper {
    height: auto;
    aspect-ratio: 16/9;
}
}
[data-v-3015b5f8] .q-btn {
  color: #4a3f20 !important;
  text-shadow: 1px 1px #fff;
}
[data-v-3015b5f8] .q-btn.q-btn--outline >>> .q-btn__wrapper:before {
  border: 3px solid currentColor;
  background-color: rgba(255,202,40,0.5);
}
/*# sourceMappingURL=src/components/HomeHeaderCarousel/slides/HomeHeaderSlide2403.css.map */
[data-v-f093ae94] .home-header__background {
  opacity: 0.75;
  filter: blur(12px);
}
[data-v-f093ae94] .cover-wrapper {
  display: block;
  background: url("/imgs/home-header/2502/poster-transparent.png") center center/cover no-repeat, url("/imgs/home-header/2502/bg-tile.jpg") center center/200px repeat, #fff;
  height: 100%;
}
@media (min-width: 600px) {
[data-v-f093ae94] .cover-wrapper {
    height: auto;
    aspect-ratio: 16/9;
}
}
[data-v-f093ae94] .q-btn {
  color: #4a3f20 !important;
  text-shadow: 1px 1px #fff;
}
[data-v-f093ae94] .q-btn.q-btn--outline >>> .q-btn__wrapper:before {
  border: 3px solid currentColor;
  background-color: rgba(255,202,40,0.5);
}
/*# sourceMappingURL=src/components/HomeHeaderCarousel/slides/HomeHeaderSlide2502.css.map */
.home-header-carousel {
  width: 100%;
  height: 76vh;
  aspect-ratio: 16/12;
  max-height: 80vh;
  min-height: 360px;
  margin-top: -12rem;
}
@media (min-width: 600px) {
.home-header-carousel {
    height: auto;
    min-height: 540px;
}
}
.home-header-carousel::after {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  bottom: -1px;
  background: #fff;
  height: 2px;
  z-index: 1;
  box-shadow: 0 0 16px 3px rgba(0,0,0,0.5);
}
.home-header-carousel .q-carousel__slide {
  padding: 0;
}
.hero-controller.--active .q-btn__wrapper {
  outline-width: 2px;
  outline-style: solid;
  outline-color: #757575;
}
/*# sourceMappingURL=src/components/HomeHeaderCarousel/HomeHeaderCarousel.css.map */
.home-header {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
  margin-top: -12rem;
  padding-top: 12rem;
  height: 76vh;
  min-height: 360px;
  padding-bottom: 3rem;
}
@media (min-width: 600px) {
.home-header {
    height: 80vh;
    min-height: 540px;
}
}
@media (min-width: 800px) {
.home-header {
    height: 80vh;
}
}
.home-header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 101vw;
  height: 100%;
  height: calc(100% + 90px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #aaa;
  z-index: -1;
}
.home-header__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 980px) {
.home-header__inner {
    width: 94%;
    max-width: 1280px;
}
}
@media (min-width: 1900px) {
.home-header__inner {
    max-width: 1600px;
}
}
/*# sourceMappingURL=src/components/HomeHeader/HomeHeader.css.map */
.cover-title[data-v-7680f0ed] {
  width: 100%;
  height: 100%;
  position: relative;
  color: #004d40;
  transform: translateY(-25px);
  flex-direction: column;
}
.cover-title h2[data-v-7680f0ed] {
  display: inline-block;
}
.cover-title .title-avatar[data-v-7680f0ed] {
  border-radius: 16px;
  border-radius: 20% 80% 12% 88%/88% 20% 80% 12%;
  font-size: 1.8rem;
  line-height: 1.15;
  padding: 8px 10px 10px 12px;
  margin-right: 10px;
}
.cover-title .title-avatar small[data-v-7680f0ed] {
  font-size: 0.82em;
}
.cover-title .title-hero[data-v-7680f0ed] {
  font-size: 3.5rem;
  text-shadow: 2px 2px #fff;
}
.cover-title .title-sub[data-v-7680f0ed] {
  font-size: 0.6em;
  text-shadow: 0 0 4px rgba(255,255,255,0.7);
}
.cover-title .q-btn[data-v-7680f0ed] {
  font-size: 16px;
  text-shadow: 1px 1px #fff;
  animation: vibrate-7680f0ed 3s linear 2s infinite both;
}
@media (min-width: 600px) {
.cover-title[data-v-7680f0ed] {
    transform: translateY(-35px);
}
.cover-title .title-avatar[data-v-7680f0ed] {
    font-size: 2.4rem;
}
.cover-title .title-hero[data-v-7680f0ed] {
    font-size: 5rem;
}
.cover-title .title-sub[data-v-7680f0ed] {
    font-size: 0.8em;
}
.cover-title .q-btn[data-v-7680f0ed] {
    font-size: 18px;
}
}
@media (min-width: 1600px) {
.cover-title[data-v-7680f0ed] {
    transform: translateY(-45px);
}
.cover-title .title-hero[data-v-7680f0ed] {
    font-size: 6rem;
}
}
.cover-info[data-v-7680f0ed] {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  transform: translateX(120px) translateY(60px);
  color: #f1f8e9;
  text-shadow: 0 0 4px rgba(0,0,0,0.65);
}
@media (min-width: 600px) {
.cover-info[data-v-7680f0ed] {
    display: block;
    font-size: 1.6rem;
}
}
@media (min-width: 800px) {
.cover-info[data-v-7680f0ed] {
    width: 200px;
    font-size: 1.8rem;
    transform: translateX(200px) translateY(60px);
}
}
@media (min-width: 1100px) {
.cover-info[data-v-7680f0ed] {
    font-size: 2rem;
}
}
@keyframes vibrate-7680f0ed {
0%, 34% {
    transform: translate(0);
    text-shadow: 1px 1px #fff;
}
2%, 14%, 24% {
    transform: translate(-2px, 2px);
    text-shadow: 1px 1px #fff;
}
4%, 16%, 26% {
    transform: translate(-2px, -2px);
    text-shadow: -3px 2px #fff;
}
6%, 18%, 28% {
    transform: translate(2px, 2px);
    text-shadow: -3px -3px #fff;
}
8%, 20%, 30% {
    transform: translate(2px, -2px);
    text-shadow: 2px 2px #fff;
}
10%, 22%, 32% {
    transform: translate(0);
    text-shadow: 3px -3px #fff;
}
12%, 21%, 31% {
    text-shadow: 1px 1px #fff;
}
}
/*# sourceMappingURL=src/components/HomeHeader/HomeHeader2102.css.map */
.intro-box__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.intro-box__bg .intro-box__bg-solid {
  background-color: #e6e6e6;
  width: 100%;
  height: calc(100% - 40px);
  margin: 20px auto;
  border-radius: 6px;
  position: relative;
}
.intro-box__bg .intro-box__bg-solid::before,
.intro-box__bg .intro-box__bg-solid::after {
  content: "";
  background-color: var(--app-bg-color);
  position: absolute;
  bottom: -58px;
  transform: rotate(-45deg);
}
.intro-box__bg .intro-box__bg-solid::before {
  width: 7px;
  height: 240px;
  left: -7px;
}
.intro-box__bg .intro-box__bg-solid::after {
  width: 21px;
  height: 340px;
  left: -28px;
}
.intro-box__bg .intro-box__bg-solid.intro-box__bg-solid--even::before,
.intro-box__bg .intro-box__bg-solid.intro-box__bg-solid--even::after {
  transform: rotate(45deg);
}
.intro-box__bg .intro-box__bg-solid.intro-box__bg-solid--even::before {
  left: auto;
  right: -7px;
}
.intro-box__bg .intro-box__bg-solid.intro-box__bg-solid--even::after {
  left: auto;
  right: -28px;
}
.intro-box .wrapper {
  width: 860px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 150px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1100px) {
.intro-box .wrapper {
    width: auto;
    max-width: 660px;
    padding: 80px 50px !important;
}
}
@media (max-width: 480px) {
.intro-box .wrapper {
    padding: 50px 25px !important;
}
}
.intro-box h3 {
  margin: 0;
  font-size: 2em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
.intro-box h3 {
    font-size: 2.7rem;
}
}
.intro-box p {
  line-height: 1.85;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
.intro-box-pix {
  position: absolute;
  bottom: 50%;
  right: 50%;
  margin-bottom: -244px;
  margin-right: 40px;
  width: 780px;
}
.intro-box-pix .q-img__content > div {
  background-color: transparent;
}
@media (max-width: 1100px) {
.intro-box-pix {
    position: relative;
    left: auto !important;
    right: auto !important;
    bottom: auto;
    margin: 0 !important;
    max-width: 100%;
    height: auto;
}
}
.intro-box--monitor .wrapper,
.intro-box--education .wrapper {
  padding-right: 420px;
}
.intro-box--monitor .intro-box-pix,
.intro-box--education .intro-box-pix {
  left: 50%;
  margin-left: 40px;
}
.intro-box--reservation .wrapper {
  padding-left: 420px;
}
.pix__frog {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.intro-pix-wrapper {
  margin-top: -1.2rem;
  margin-bottom: 1.2rem;
  margin-left: -3rem;
  margin-right: -3rem;
}
.intro-pix-wrapper .q-img {
  overflow: visible !important;
}
.intro-pix-wrapper .q-img .q-img__content {
  overflow: visible;
}
.intro-box--education .layer-1,
.intro-box--education .layer-2 {
  position: absolute;
  width: 70%;
  border-radius: 8px;
  border: 10px solid #eee;
}
.intro-box--education .layer-1 {
  transform: rotate(9deg);
  top: 18%;
  right: 4%;
}
.intro-box--education .layer-2 {
  transform: rotate(-9deg);
  top: 10%;
  right: 28%;
}
/*# sourceMappingURL=src/components/Home/HomeIntro.css.map */
.section-title {
  padding: 0 1rem;
  margin-bottom: 2.2rem;
  max-width: var(--content-max-width);
}
@media (min-width: 650px) {
.section-title {
    padding: 0 2rem;
}
}
.section-title h3 {
  font-weight: bold;
}
/*# sourceMappingURL=src/components/commons/SectionTitle.css.map */
.content-paragraph {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2.2rem;
  text-align: justify;
}
@media (min-width: 640px) {
.content-paragraph {
    padding-left: 2rem;
    padding-right: 2rem;
}
}
.content-paragraph .content-paragraph__inner {
  max-width: var(--content-max-width);
}
.content-paragraph .content-paragraph__inner.full-width {
  max-width: 100%;
}
.content-paragraph h3 {
  margin: 3.6rem 0 1.6rem;
}
.content-paragraph p {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin: 1.5em auto;
}
.content-paragraph p:first-child {
  margin-top: 0;
}
@media (min-width: 640px) {
.content-paragraph p {
    line-height: 1.85;
}
}
.content-paragraph a {
  background-image: linear-gradient(#222b40, #222b40), linear-gradient(#b0fbbc, #b0fbbc), linear-gradient(#feb2b2, #feb2b2);
  background-size: 20px 2px, 100% 2px, 0 2px;
  background-position: calc(20px * -1) 100%, 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 2s linear, background-position 2s linea;
}
.content-paragraph a:hover {
  background-size: 20px 2px, 0 2px, 100% 2px;
  background-position: calc(100% + 20px) 100%, 100% 100%, 0 100%;
}
.content-paragraph .content-paragraph__inner > img,
.content-paragraph figure img {
  display: block;
  margin-bottom: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 72vh;
}
@media (min-width: 980px) {
.content-paragraph .content-paragraph__inner > img,
  .content-paragraph figure img {
    margin-left: 0;
}
}
.content-paragraph figure {
  margin: 3.2rem 0;
}
.content-paragraph figure img {
  margin: 0 auto;
}
.content-paragraph .full-width img {
  margin-left: 0;
}
.content-paragraph figcaption {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: #999;
}
.content-paragraph figcaption::before {
  content: "▲";
  font-size: 0.8em;
  line-height: 0.8;
  margin-left: 1rem;
  display: inline-block;
  margin-right: 6px;
}
/*# sourceMappingURL=src/components/commons/ContentParagraph.css.map */
.join-us-section h4 {
  font-size: 2rem;
  font-weight: lighter;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.join-us-section .btn-join-us {
  width: 200px;
  letter-spacing: 0.07em;
}
.join-us-section .btn-join-us:hover >>> i.q-icon {
  animation: spinAround 3s linear infinite;
}
.join-us-section .question-title {
  padding-top: 2rem;
  padding-bottom: 1.6rem;
  padding-left: 1.8rem;
  font-weight: 500;
  font-size: 1.8rem;
}
.q-expansion-item--expanded .join-us-section .question-title {
  background-color: rgba(0,0,0,0.06);
}
@media (min-width: 650px) {
.join-us-section .question-title {
    padding-left: 2.8rem;
}
}
.join-us-section .answer-text {
  margin-bottom: 0;
}
@media (min-width: 650px) {
.join-us-section .answer-text {
    padding-left: 7rem;
}
}
@keyframes spinAround {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
/*# sourceMappingURL=src/components/JoinUsSection.css.map */
#love-frog-declaration {
  margin-top: -5rem;
  padding-top: 5rem;
  background-color: var(--app-footer-bg);
  color: #eee;
}
#love-frog-declaration h4 {
  display: inline-block;
  font-size: 2.4rem;
}
#love-frog-declaration .row {
  max-width: 60rem;
  flex-wrap: wrap;
}
#love-frog-declaration .row p {
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin: 0.9rem 0.6rem;
}
/*# sourceMappingURL=src/components/LoveFrogsDeclaration.css.map */
.content-row {
  display: flex;
}
.content-row .content-row__item > div {
  height: 100%;
  padding: 10px;
}
@media (min-width: 650px) {
.content-row .content-row__item > div {
    padding: 20px;
}
}
.content-row .content-row__item h4 {
  font-weight: 500;
  font-size: 1.8rem;
}
.content-row .content-row__item-text {
  line-height: 1.45;
  letter-spacing: 0.05em;
}
.content-row .post-card .post-card__title-link {
  transition: color 0.3s ease;
  color: var(--text-color);
}
.content-row .post-card:hover .post-card__title-link {
  color: var(--post-link-color);
}
/*# sourceMappingURL=src/components/commons/ContentRow.css.map */
.post-card.post-card--pinned .q-card__section {
  padding: 22px 24px 0;
}
@media (margin: 600px) {
.post-card.post-card--pinned .q-card__section {
    padding: 28px 24px 0;
}
}
@media (min-width: 1100px) {
.post-card.post-card--pinned .q-card__section {
    padding: 7% 28px 0;
}
}
.post-card.post-card--pinned h4 {
  font-size: 2.2rem;
}
@media (min-width: 600px) {
.post-card.post-card--pinned h4 {
    font-size: 2rem;
}
}
@media (min-width: 640px) {
.post-card.post-card--pinned h4 {
    font-size: 2.2rem;
}
}
@media (min-width: 1100px) {
.post-card.post-card--pinned h4 {
    margin-bottom: 1rem;
    font-size: 2.4rem;
}
}
.post-card.post-card--pinned .content-row__item-text {
  font-size: 1.8rem;
}
@media (min-width: 600px) {
.post-card.post-card--pinned .content-row__item-text {
    font-size: 1.6rem;
}
}
@media (min-width: 640px) {
.post-card.post-card--pinned .content-row__item-text {
    font-size: 1.8rem;
}
}
@media (min-width: 1100px) {
.post-card.post-card--pinned .content-row__item-text {
    font-size: 1.9rem;
}
}
.home-pinned__overlay {
  background: linear-gradient(100deg, rgba(33,33,33,0.4) 58%, rgba(0,0,0,0) 76%);
}
/*# sourceMappingURL=src/components/Home/HomePinnedPost.css.map */
.content-row.home-pinned {
  overflow-x: auto;
}
.content-row.home-pinned::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f5f5f5;
}
.content-row.home-pinned::-webkit-scrollbar {
  width: 8px;
  height: 10px;
  background-color: #f5f5f5;
}
.content-row.home-pinned::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #bbb;
}
.content-row.home-pinned .content-row__item {
  min-width: 340px;
  max-width: 400px;
}
@media (max-width: 600px) {
.content-row.home-pinned .content-row__item {
    width: 80vw;
}
}
@media (min-width: 1024px) {
.content-row.home-pinned .content-row__item {
    max-width: 368px;
}
}
.content-row.home-pinned .content-row__item:first-child {
  margin-left: auto;
}
.content-row.home-pinned .content-row__item:last-child {
  margin-right: auto;
}
.content-row.home-pinned .content-row__item > div {
  padding: 10px !important;
}
/*# sourceMappingURL=src/components/Home/HomePinnedPosts.css.map */
.block-button {
  width: 100%;
  max-width: 600px;
  margin: 1.2rem 0;
}
/*# sourceMappingURL=src/components/commons/BlockButton.css.map */
.content-title {
  max-width: var(--content-max-width);
  margin: 3.6rem 0 1.6rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
.content-title {
    padding-left: 2rem;
    padding-right: 2rem;
}
}
/*# sourceMappingURL=src/components/commons/ContentTitle.css.map */
.q-table__container[data-v-258dba14] {
  max-height: clamp(400px, 60vh, 800px);
  max-width: 100%;
}
.q-table__container[data-v-258dba14] td:first-child {
  background-color: #c1f4cd !important;
}
.q-table__container[data-v-258dba14] tr th {
  position: sticky;
  z-index: 2;
  background-color: #fff;
}
.q-table__container[data-v-258dba14] thead tr:last-child th {
  top: 48px;
  z-index: 3;
}
.q-table__container[data-v-258dba14] thead tr:first-child th {
  top: 0;
  z-index: 1;
}
.q-table__container[data-v-258dba14] tr:first-child th:first-child {
  z-index: 3;
}
.q-table__container[data-v-258dba14] td:first-child {
  z-index: 1;
}
.q-table__container[data-v-258dba14] td:first-child,
.q-table__container[data-v-258dba14] th:first-child {
  position: sticky;
  left: 0;
}
[data-v-258dba14] .expert-fields {
  min-width: 250px;
  word-wrap: break-word;
  white-space: normal;
}
/*# sourceMappingURL=src/pages/About/ExpertAdvisory.css.map */
.ul--pl-none[data-v-421f42a3] {
  padding-left: 2.4rem;
}
.directors-and-supervisors td[data-v-421f42a3]:first-child {
  font-weight: 500;
  width: 180px;
  position: sticky;
  left: 0;
  background-color: #fff;
  z-index: 1;
}
/*# sourceMappingURL=src/pages/About/ExecutiveTeams.css.map */
.q-table__container[data-v-95ae8a54] {
  max-height: 500px;
  max-width: 100%;
}
.q-table__container[data-v-95ae8a54] td:first-child {
  background-color: #c1f4cd !important;
}
.q-table__container[data-v-95ae8a54] tr th {
  position: sticky;
  z-index: 2;
  background-color: #fff;
}
.q-table__container[data-v-95ae8a54] thead tr:last-child th {
  top: 48px;
  z-index: 3;
}
.q-table__container[data-v-95ae8a54] thead tr:first-child th {
  top: 0;
  z-index: 1;
}
.q-table__container[data-v-95ae8a54] tr:first-child th:first-child {
  z-index: 3;
}
.q-table__container[data-v-95ae8a54] td:first-child {
  z-index: 1;
}
.q-table__container[data-v-95ae8a54] td:first-child,
.q-table__container[data-v-95ae8a54] th:first-child {
  position: sticky;
  left: 0;
}
[data-v-95ae8a54] .expert-fields {
  min-width: 250px;
  word-wrap: break-word;
  white-space: normal;
}
/*# sourceMappingURL=src/pages/About/Organization.css.map */
.members[data-v-02f092e2] .page-content {
  padding-bottom: 0;
}
/*# sourceMappingURL=src/pages/Participation/Members.css.map */
.post-content > header {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
.post-content > header {
    padding-left: 2rem;
    padding-right: 2rem;
}
}
.post-content .post-header__inner {
  max-width: var(--content-max-width);
}
.post-content h1 {
  font-size: 3rem;
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}
.post-content .post-category {
  letter-spacing: 0.095em;
}
.post-content .post-meta {
  margin-bottom: 1.6rem;
  line-height: 1.125;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}
.post-content time,
.post-content .post-author,
.post-content .post-tag {
  padding: 2px 8px;
}
.post-content .post-author {
  position: relative;
}
.post-content .post-author::before,
.post-content .post-author::after {
  display: inline-block;
  content: "|";
  position: absolute;
  opacity: 0.4;
}
.post-content .post-author::before {
  left: -1px;
}
.post-content .post-author::after {
  right: -1px;
}
.post-content .post-tag {
  transition: all 0.3s ease;
  text-decoration: none;
}
.post-content .post-tag:hover {
  color: #fff;
  background-color: #66bb6a;
}
.post-content article a:hover {
  transition: all 0.4s ease;
  color: var(--link-hover-color);
}
.post-content article :not(a) img {
  cursor: zoom-in;
}
/*# sourceMappingURL=src/components/PostContent/PostContent.css.map */
.volunteers[data-v-711c4e38] .page-content {
  padding-bottom: 0;
}
.volunteers-avatar[data-v-711c4e38] {
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  background-color: #d4e157;
}
.btn-join-us[data-v-711c4e38]:hover i.q-icon {
  animation: spinAround-711c4e38 3s linear infinite;
}
[data-v-711c4e38] .question-title {
  padding-top: 2rem;
  padding-bottom: 1.6rem;
  padding-left: 1.8rem;
  font-weight: 500;
  font-size: 1.8rem;
}
.q-expansion-item--expanded[data-v-711c4e38] .question-title {
  background-color: rgba(0,0,0,0.06);
}
@media (min-width: 650px) {
[data-v-711c4e38] .question-title {
    padding-left: 2.8rem;
}
}
[data-v-711c4e38] .answer-text {
  margin-bottom: 0;
}
@media (min-width: 650px) {
[data-v-711c4e38] .answer-text {
    padding-left: 7rem;
}
}
@keyframes spinAround-711c4e38 {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
/*# sourceMappingURL=src/pages/Participation/Volunteers.css.map */
.pswp {
  z-index: 3000;
}
.pswp__caption__center {
  padding: 12px 16px;
  font-size: 1.5rem;
  max-width: 640px;
}
/*# sourceMappingURL=src/components/PhotoSwipe/PhotoSwipeUi.css.map */
/* ===
  Page Header
  === */
.page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-top: 12rem;
  margin-top: -12rem;
  min-height: 72vh;
  padding-bottom: 6rem;
}
@media (min-width: 650px) {
.page-header {
    padding-bottom: 10rem;
}
}
@media (min-width: 980px) {
.page-header {
    padding-bottom: 12rem;
}
}
@media (min-height: 900px) {
.page-header {
    min-height: 72rem;
}
}
.page-header__inner {
  display: flex;
  align-items: center;
  z-index: 5;
}
.page-header__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 101vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #aaa;
  z-index: -1;
}
.page-header__background:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33,33,33,0.45);
}
.page-info {
  padding-left: 2rem;
  padding-right: 2rem;
}
.page-info h1 {
  font-size: 5vw;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
.page-info h2 {
  max-width: 600px;
  font-size: 4.8vw;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 100;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.page-content {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 8rem;
  z-index: 5;
  background-color: var(--app-bg-color);
}
.page-content figure img {
  max-width: 100%;
  max-height: 72vh;
  cursor: zoom-in;
}
/*# sourceMappingURL=src/layouts/PageLayout.css.map */
.posts-categories {
  grid-area: category;
}
.posts-categories > .q-list {
  position: sticky;
  top: 120px;
  transition: top 0.3s ease;
}
.q-header--hidden ~ .q-page-container .posts-categories > .q-list {
  top: 1rem;
}
.posts-categories .posts-category,
.posts-categories .posts-year {
  letter-spacing: 1px;
}
.posts-categories .posts-category.is-active,
.posts-categories .posts-year.is-active {
  background-color: rgba(220,231,117,0.5);
}
.posts-categories .posts-category:hover .q-focus-helper,
.posts-categories .posts-year:hover .q-focus-helper {
  background-color: #9e9d24 !important;
}
@media (max-width: 980px) {
.posts-categories {
    display: none;
}
}
/*# sourceMappingURL=src/components/PostsCategories.css.map */
.page-content--aside[data-v-5c9437e3] {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-areas: "list category";
  gap: 40px;
}
@media (max-width: 980px) {
.page-content--aside[data-v-5c9437e3] {
    display: block;
}
}
.page-content-inner[data-v-5c9437e3] {
  grid-area: list;
}
/*# sourceMappingURL=src/layouts/PostLayout.css.map */
.hover-tab > .q-focus-helper {
  opacity: 0 !important;
}
.hover-tab .q-btn-dropdown[aria-expanded="true"] {
  background-color: rgba(255,255,255,0.2);
}
.hover-tab .q-btn-dropdown .q-btn-dropdown__arrow {
  position: absolute;
  top: 57%;
  margin: 0;
  opacity: 0.25;
}
.hover-tab .q-btn-dropdown .q-btn-dropdown__arrow.rotate-180 {
  opacity: 1;
}
/*# sourceMappingURL=src/components/Main/HoverTab.css.map */
.main-nav {
  height: 5.4rem;
}
.main-nav .q-tab:hover,
.main-nav .q-tab.q-tab--active {
  color: var(--app-nav-color);
}
.main-nav .q-tab .q-tab__content {
  min-width: auto !important;
}
.main-nav .q-tab .q-tab__label,
.main-nav .q-tab .q-btn {
  font-size: 1.5rem;
  letter-spacing: 0.75px;
}
@media (min-width: 1200px) {
.main-nav .q-tab .q-tab__label,
  .main-nav .q-tab .q-btn {
    font-size: 1.6rem;
}
}
.main-nav .q-list {
  background-color: var(--app-bg-color);
}
.main-nav__menu {
  background-color: var(--app-layout-color);
  color: #eee;
}
.main-nav__menu .q-router-link--active {
  color: var(--app-nav-color);
}
/*# sourceMappingURL=src/components/Main/MainNav.css.map */
.main-drawer {
  background-color: var(--app-layout-bg);
  color: #fff;
}
.main-drawer__login {
  font-weight: 300;
  font-size: 1.6rem;
}
/*# sourceMappingURL=src/components/Main/MainDrawer.css.map */

/*# sourceMappingURL=app.0809a354.css.map*/