@charset "utf-8";
/* 参考: oita-yamanote.com カラー・フォント・アニメーションに準拠 */

:root {
  --green: #00a469;
  --green-mid: #54b565;
  --green-soft: #74c382;
  --green-border: #40bb8e;
  --yellow: #ffe34d;
  --text: #51656f;
  --gray: #a8b2b7;
  --line: #f1f1f1;
  --radius-lg: 3rem;
  --radius-md: 2.5rem;
  --ease: 0.5s ease;
  --ease-out-smooth: cubic-bezier(0.35, 0.82, 0.35, 1);
}

/* 参考サイトに近いアニメーション（fadeDown / fadeUp / zoomIn / lineanime） */
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-3rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomInAnime {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroSlidePhoto {
  from {
    opacity: 0;
    transform: scale(1.06);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lineanimeUnderline {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes loadingPulseLetters {
  0%,
  100% {
    opacity: 1;
    letter-spacing: 0.25em;
  }

  50% {
    opacity: 0.45;
    letter-spacing: 0.38em;
  }
}

@keyframes loadingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cloudanimeFloat {
  from {
    transform: translateY(-12%);
  }

  to {
    transform: translateY(12%);
  }
}

.reveal-once {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity 0.92s cubic-bezier(0.25, 1, 0.45, 1), transform 0.92s cubic-bezier(0.25, 1, 0.45, 1);
}

.reveal-once.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-once {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  #loading span {
    animation: none !important;
  }

  #loading div::before {
    animation: none !important;
    opacity: 0.55;
    border-color: rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
  }

  .page-title-strip h1,
  .page-title-strip p {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .motion-fade-down,
  .motion-fade-up,
  .hero-slider-wrap {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-highlight::before {
    animation: none !important;
    width: 100% !important;
  }

  .cloud-deco {
    animation: none !important;
    transform: none !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  overflow-x: hidden;
  background: #fff;
}

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

a {
  color: var(--text);
  text-decoration: none;
  transition: all var(--ease);
}

a:hover {
  opacity: 0.9;
}

.text_quick {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

.text_zenmaru {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}

.text_white {
  color: #fff;
}

.text_green {
  color: var(--green);
}

.text_center {
  text-align: center;
}

/* loading */
#loading {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#loading.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loading div::before {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0 auto 1.6rem;
  border: 0.38rem solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff;
  border-radius: 50%;
  animation: loadingSpin 0.75s linear infinite;
}

#loading div {
  text-align: center;
  padding-top: 0;
}

#loading span {
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  animation: loadingPulseLetters 1.35s ease-in-out infinite;
}

/* header */
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  position: relative;
  z-index: 50;
  background: #fff;
  border-bottom: 0.1rem solid var(--line);
}

.logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  transition: transform var(--ease);
}

.logo-link:hover {
  transform: scale(1.04);
}

.logo-mark {
  font-size: 2.4rem;
  color: var(--green);
}

.logo-text {
  font-size: 1.2rem;
  color: var(--text);
}

.openbtn {
  width: 4.4rem;
  height: 4.4rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 60;
}

.openbtn span {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--green);
  margin: 0.5rem auto;
  transition: transform var(--ease), opacity var(--ease);
}

.openbtn.is-open span:first-child {
  transform: translateY(0.7rem) rotate(45deg);
}

.openbtn.is-open span:last-child {
  transform: translateY(-0.7rem) rotate(-45deg);
}

.navibox {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.navibox.is-open {
  max-height: 100rem;
}

.navi01 {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.navi01 a {
  display: block;
  padding: 0.8rem 0;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.navi01 a.active {
  color: var(--green);
}

.nav-cta {
  background: var(--yellow);
  border: 0.3rem solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 1rem 1.6rem !important;
  color: var(--text) !important;
  text-align: center;
}

.nav-contact {
  background: var(--green-mid);
  border: 0.3rem solid var(--green-mid);
  border-radius: var(--radius-md);
  padding: 1rem 1.6rem !important;
  text-align: center;
}

.nav-cta:hover,
.nav-contact:hover {
  background: #fff;
  color: var(--text) !important;
  letter-spacing: 0.12em;
}

/* hero */
.hero {
  padding: 2rem 2rem 4rem;
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  overflow: visible;
}

.cloud-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 164, 105, 0.11);
  pointer-events: none;
  z-index: 0;
}

.cloud-deco-1 {
  width: 7rem;
  height: 4.2rem;
  top: -1.8rem;
  right: -0.8rem;
  animation: cloudanimeFloat 2.2s ease-in-out infinite alternate;
}

.cloud-deco-2 {
  width: 4.6rem;
  height: 2.9rem;
  bottom: 5.8rem;
  left: -1.8rem;
  animation: cloudanimeFloat 1.75s ease-in-out infinite alternate-reverse;
}

.hero-copy > *:not(.cloud-deco) {
  position: relative;
  z-index: 1;
}

.motion-fade-down {
  opacity: 0;
  animation: fadeDownAnime 0.88s var(--ease-out-smooth) forwards;
}

.hero-title-line {
  display: inline-block;
}

.motion-fade-up {
  opacity: 0;
  animation: fadeUpAnime 0.92s var(--ease-out-smooth) forwards;
}

.motion-delay-1 {
  animation-delay: 0.22s;
}

.motion-delay-2 {
  animation-delay: 0.92s;
}

.motion-delay-3 {
  animation-delay: 1.22s;
}

.hero-title-line.motion-fade-up {
  animation-delay: 0.28s;
}

.hero-title-line.motion-fade-up.motion-delay-1 {
  animation-delay: 0.5s;
}

.hero-highlight {
  position: relative;
  display: inline-block;
}

.hero-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 0;
  height: 0.58em;
  border-radius: 0.3rem;
  background-color: var(--yellow);
  z-index: -1;
  animation: lineanimeUnderline 1.9s cubic-bezier(0.5, 0, 0.15, 1) forwards;
  animation-delay: 0.72s;
}

.hero-highlight.motion-line-delay-1::before {
  animation-delay: 1.32s;
}

.hero-copy .tagline.motion-fade-up {
  animation-delay: 1.06s;
}

.hero-copy .btn-primary.motion-fade-up {
  animation-delay: 1.32s;
}

.hero-copy .eyebrow {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--green);
  margin: 0 0 1rem;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.45;
  margin: 0 0 1.2rem;
  letter-spacing: 0.05em;
}

.tagline {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin: 0 0 2rem;
  color: var(--gray);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.6rem;
  padding: 0 2.4rem;
  background: #fff;
  border: 0.3rem solid var(--green);
  border-radius: var(--radius-md);
  color: var(--green);
  font-size: 1.5rem;
  transition: all var(--ease);
}

.btn-primary:hover {
  background: var(--green);
  color: #fff;
  letter-spacing: 0.1em;
}

.hero-slider-wrap {
  position: relative;
  opacity: 0;
  animation: zoomInAnime 1.05s var(--ease-out-smooth) forwards;
  animation-delay: 0.18s;
}

.hero-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-slider .slide {
  display: none;
}

.hero-slider .slide.is-active {
  display: block;
}

.hero-slider .slide.is-active .hero-img {
  animation: heroSlidePhoto 0.75s var(--ease-out-smooth);
}

.hero-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slider:hover .slide.is-active .hero-img {
  transform: scale(1.05);
}

.hero-slider .slide:not(.is-active) .hero-img {
  animation: none;
}

.hero-dots {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.hero-dots button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: transform var(--ease), background var(--ease);
}

.hero-dots button:hover {
  transform: scale(1.38);
}

.hero-dots button.is-active {
  background: var(--green);
  transform: scale(1.28);
}

/* about */
.about {
  background: var(--green);
  color: #fff;
  padding: 4rem 2rem 5rem;
}

.about-inner {
  max-width: 110rem;
  margin: 0 auto;
  display: grid;
  gap: 2.4rem;
}

.about .subtitle {
  position: relative;
  font-size: 2.2rem;
  margin: 0 0 1.6rem;
  padding-top: 1rem;
}

.about .subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8rem;
  height: 3rem;
  border-radius: 0.4rem;
  background: #fff;
}

.about .subtitle::after {
  content: "";
  position: absolute;
  top: 3.5rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--yellow);
}

.about .subtitle .en {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
  opacity: 0.95;
}

.about p {
  font-size: 1.6rem;
  line-height: 1.85;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  min-height: 5.2rem;
  padding: 0 2.4rem;
  background: #fff;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--green);
  transition: all var(--ease);
}

.btn-secondary:hover {
  letter-spacing: 0.1em;
  transform: translateX(0.2rem);
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.12);
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.45, 1), box-shadow var(--ease);
}

.about-photo:hover img {
  transform: scale(1.03);
  box-shadow: 0 1.8rem 3.8rem rgba(0, 0, 0, 0.16);
}

/* tiles */
.tiles {
  padding: 4rem 2rem;
  max-width: 124rem;
  margin: 0 auto;
}

.subtitle.center {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.4rem;
}

.subtitle.center .en {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--green-mid);
  margin-bottom: 0.6rem;
}

.tile-grid {
  display: grid;
  gap: 2rem;
}

.tile {
  border: 0.3rem solid var(--green);
  border-radius: 1rem;
  padding: 2rem;
  background: #fff;
  transition: transform var(--ease), box-shadow var(--ease);
}

.tile:hover {
  transform: translateY(-0.55rem);
  box-shadow: 0 1.2rem 2.5rem rgba(0, 164, 105, 0.18);
}

.tile h3 {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
  color: var(--green);
}

.tile p {
  margin: 0;
  font-size: 1.5rem;
}

/* trial */
.trial {
  background: var(--green-mid);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 0 2rem 4rem;
}

.trial h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
}

.contact-block {
  padding: 0 2rem 4rem;
  max-width: 80rem;
  margin: 0 auto;
}

.contact-block .en {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 0.6rem;
}

/* footer */
.site-footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
  border-top: 0.1rem solid var(--green-border);
}

.copyright {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

@media (min-width: 900px) {
  html {
    font-size: 58%;
  }

  .openbtn {
    display: none;
  }

  .navibox {
    width: auto;
    max-height: none !important;
    overflow: visible;
  }

  .navi01 {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.6rem 2rem;
    padding: 0;
  }

  .site-header {
    flex-wrap: nowrap;
    padding: 1.6rem 4rem;
  }

  .hero {
    grid-template-columns: minmax(28rem, 38rem) 1fr;
    padding: 3rem 4rem 6rem;
    max-width: 150rem;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .about-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .tile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-title-visual {
    grid-template-columns: 1fr minmax(28rem, 38vw);
    min-height: 28rem;
    align-items: stretch;
  }

  .page-title-visual .page-title-strip {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem clamp(3rem, 5vw, 5rem);
  }

  .page-title-visual__photo img {
    height: 100%;
    min-height: 28rem;
    aspect-ratio: auto;
  }

  .trial {
    margin: 0 auto 5rem;
    max-width: 110rem;
  }

  .navi01 {
    gap: 1rem 1.6rem;
  }

  .navi01 a {
    font-size: 1.35rem;
  }

  .navi01 li > a:not(.nav-cta):not(.nav-contact) {
    position: relative;
    padding-left: 2rem;
  }

  .navi01 li > a:not(.nav-cta):not(.nav-contact)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.48rem;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background-color: var(--yellow);
    opacity: 0.42;
    transform: rotate(0deg);
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navi01 li > a:not(.nav-cta):not(.nav-contact):hover::before {
    opacity: 1;
    transform: rotate(360deg);
  }

  .navi01 li > a:not(.nav-cta):not(.nav-contact).active::before {
    opacity: 1;
    background-color: rgba(116, 195, 130, 0.95);
  }
}

.page-title-strip {
  background-color: var(--green);
  color: #fff;
  padding: 3rem 2rem 3.6rem;
  text-align: center;
}

.page-title-strip h1 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeDownAnime 0.92s var(--ease-out-smooth) forwards;
}

.page-title-strip .en {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  opacity: 0.95;
}

.page-title-strip p {
  margin: 1rem 0 0;
  font-size: 1.5rem;
  line-height: 1.85;
  opacity: 0;
  animation: fadeUpAnime 0.92s var(--ease-out-smooth) forwards;
  animation-delay: 0.26s;
  animation-fill-mode: forwards;
}

.page-title-visual {
  display: grid;
  grid-template-columns: 1fr;
}

.page-title-visual__photo {
  margin: 0;
  overflow: hidden;
}

.page-title-visual__photo img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.inner-wrap {
  max-width: 108rem;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.inner-wrap img.rounded {
  border-radius: var(--radius-lg);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.08);
}

.prose-section {
  margin-bottom: 3.5rem;
}

.prose-section h2 {
  font-size: 2rem;
  color: var(--green);
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 0.3rem solid var(--green-soft);
}

.prose-section h2:first-child {
  margin-top: 0;
}

.prose-section p,
.prose-section li {
  font-size: 1.55rem;
  line-height: 1.85;
}

.staff-grid {
  display: grid;
  gap: 2.5rem;
}

.staff-card {
  border: 0.3rem solid var(--green);
  border-radius: 1rem;
  padding: 2rem 2.2rem;
  background: #fff;
  transition: transform var(--ease), box-shadow var(--ease);
}

.staff-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1rem 2.4rem rgba(0, 164, 105, 0.14);
}

.staff-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.9rem;
  color: var(--green);
}

.staff-card .role {
  font-size: 1.3rem;
  color: var(--gray);
  margin: 0 0 1.2rem;
}

.staff-card p {
  font-size: 1.55rem;
  line-height: 1.85;
  margin: 0 0 1rem;
}

.staff-card p:last-child {
  margin-bottom: 0;
}

.class-cards {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.class-card-link {
  display: block;
  border: 0.3rem solid var(--green);
  border-radius: 1rem;
  padding: 2rem;
  transition: all var(--ease);
}

.class-card-link:hover {
  background: #f9fafa;
  border-color: var(--green-soft);
  transform: translateY(-0.45rem);
  box-shadow: 0 1.2rem 2.8rem rgba(0, 164, 105, 0.15);
}

.class-card-link h3 {
  margin: 0 0 0.8rem;
  font-size: 1.85rem;
  color: var(--green);
}

.class-card-link .en {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.price-note {
  font-size: 1.35rem;
  margin-bottom: 2rem;
}

.table-scroll {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: 1rem;
  border: 0.1rem solid var(--line);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.35rem;
  min-width: 52rem;
}

.price-table th,
.price-table td {
  padding: 1.2rem 1rem;
  border-bottom: 0.1rem solid var(--line);
  text-align: left;
}

.price-table th {
  background: #f9fafa;
  font-weight: 500;
}

.price-table th::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--green);
  margin-right: 0.6rem;
  vertical-align: middle;
}

.price-table thead th::before {
  display: none;
}

.class-subheading {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 1.65rem;
  color: var(--green);
  margin: 2rem 0 1rem;
}

.faq-list dt {
  font-weight: 500;
  font-size: 1.65rem;
  color: var(--green);
  margin: 2rem 0 0.8rem;
  padding-left: 1.4rem;
  position: relative;
}

.faq-list dt::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: 0.8rem;
}

.faq-list dd {
  margin: 0;
  padding-left: 1.4rem;
  font-size: 1.5rem;
  line-height: 1.85;
}

.contact-form {
  max-width: 56rem;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1.8rem;
}

.contact-form label {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 0.15rem solid var(--line);
  border-radius: 0.8rem;
  font-size: 1.45rem;
  font-family: inherit;
  transition: border-color var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green-soft);
}

.contact-form textarea {
  min-height: 14rem;
  resize: vertical;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.6rem;
  padding: 0 3rem;
  background: var(--green-mid);
  border: 0.3rem solid var(--green-mid);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1.5rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--ease);
}

.btn-submit:hover {
  background: #fff;
  color: var(--text);
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  border-bottom: 0.1rem solid var(--line);
}

.news-list a {
  display: block;
  padding: 2rem 0;
  font-size: 1.55rem;
  transition: all var(--ease);
}

.news-list a:hover {
  color: var(--green);
}

.news-list time {
  display: block;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
  font-family: "Quicksand", sans-serif;
}

.article-meta {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.article-title {
  font-size: 2.4rem;
  line-height: 1.45;
  margin: 0 0 2rem;
  letter-spacing: 0.04em;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.6rem;
  font-size: 1.25rem;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.95);
  display: inline-block;
  transition: transform var(--ease), opacity var(--ease);
}

.site-footer .footer-links a:hover {
  text-decoration: underline;
  opacity: 1;
  transform: translateY(-0.22rem);
}

.site-footer address {
  font-style: normal;
  margin: 1rem 0 0;
  font-size: 1.3rem;
  line-height: 1.7;
}

.resource-links a {
  color: var(--green);
  text-decoration: underline;
}

.resource-links li {
  margin-bottom: 0.8rem;
}

.resource-list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  line-height: 2;
}

.cta-stack {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.site-footer address a {
  color: inherit;
}

.trial .trial-form-link {
  color: #fff;
  text-decoration: underline;
  transition: opacity var(--ease);
}

.trial .trial-form-link:hover {
  opacity: 0.9;
}
