@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=BIZ+UDMincho:wght@400;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "BIZ UDGothic", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  background-color: #FAF9F5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "BIZ UDMincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}
 (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 2.5rem;
}
 (max-width: 479px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2rem;
}
 (max-width: 479px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: 1.5rem;
}
 (max-width: 479px) {
  h4 {
    font-size: 1.25rem;
  }
}

p {
  margin-bottom: 1rem;
  font-family: "BIZ UDGothic", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
}

.text-center {
  text-align: center;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

section {
  padding: 2.4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  section {
    padding: 2.4rem 2rem;
  }
}

.section-title {
  font-family: "BIZ UDMincho", "Hiragino Mincho ProN", serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2rem;
  color: #9ACAD9;
}
 (max-width: 479px) {
  .section-title {
    font-size: 2rem;
  }
}

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

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}
 (max-width: 479px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.cta-button--contact {
  padding: 1rem 1.3rem;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #D67107;
  color: white;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-button--contact:hover {
  transform: translateY(-2px);
  filter: brightness(0.9);
}
 (max-width: 479px) {
  .cta-button {
    width: 100%;
    max-width: 180px;
  }
}

.instant-card {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(250, 225, 185, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}
.instant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(250, 225, 185, 0.4);
}
.instant-card__image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.instant-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}
.instant-card__image--nursery {
  background-image: url("../img/sec3_hoikuen.png");
}
.instant-card__image--childcare {
  background-image: url("../img/sec3_card2_back.png");
}
.instant-card__title {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}
.instant-card__title--right {
  left: auto;
  right: 1.5rem;
  text-align: right;
}
.instant-card__content {
  padding: 2rem 1.5rem;
  text-align: left;
  line-height: 1.6;
}
.instant-card__content p {
  margin: 0 auto;
}
.features-lineText span {
  display: block;
  white-space: nowrap;
}

.job-accordion {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .job-accordion {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .job-accordion {
    grid-template-columns: repeat(4, 1fr);
  }
}
.job-accordion__card {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(250, 225, 185, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.job-accordion__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(250, 225, 185, 0.4);
}
.job-accordion__card.is-expanded .job-accordion__icon {
  transform: rotate(180deg);
}
.job-accordion__card--nurse {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/sec4_nurse.png");
  background-size: cover;
  background-position: center;
  color: white;
}
.job-accordion__card--care {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/sec4_kaigo.png");
  background-size: cover;
  background-position: center;
  color: white;
}
.job-accordion__card--nutrition {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/sec4_neutrition.png");
  background-size: cover;
  background-position: center;
  color: white;
}
.job-accordion__card--cook {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/sec4_cook.png");
  background-size: cover;
  background-position: center;
  color: white;
}
.job-accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}
.job-accordion__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
}
.job-accordion__details.is-open {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}
.job-accordion__icon {
  transition: transform 0.3s ease;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  padding: 1.5rem 0;
  box-shadow: none;
  transition: background 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}
.header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__logo-image {
  height: 40px;
  width: auto;
}
.header__logo-text {
  font-family: "BIZ UDMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #9ACAD9;
}
.header__nav {
  display: flex;
  gap: 1.5rem;
}
 (max-width: 479px) {
  .header__nav {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}
.hero__background--opening {
  background-image: url("../img/firstview.png");
  opacity: 1;
}
.hero__background--opening.fade-out {
  opacity: 0;
}
.hero__background--main {
  background-image: url("../img/mainview.png");
  opacity: 0;
}
.hero__background--main.fade-in {
  opacity: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.hero__content--opening {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
  opacity: 1;
  transition: opacity 0.5s ease;
}
 (max-width: 479px) {
  .hero__content--opening {
    justify-content: center;
    padding-right: 0;
  }
}
.hero__content--opening.fade-out {
  opacity: 0;
}
.hero__content--main {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero__content--main.fade-in {
  opacity: 1;
}
.hero__title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
 (max-width: 479px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
 (max-width: 479px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}
.hero__vertical-text {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
 (max-width: 479px) {
  .hero__vertical-text {
    gap: 2rem;
  }
}
.hero__text-line {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 2.5rem;
  font-family: "BIZ UDMincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.hero__text-line--1 {
  align-self: flex-start;
}
.hero__text-line--2 {
  align-self: flex-start;
  margin-top: -1rem;
}
.hero__text-line.show {
  opacity: 1;
  transform: translateY(0);
}
 (max-width: 479px) {
  .hero__text-line {
    font-size: 2rem;
  }
}

.features {
  padding: 2.4rem 0 2rem;
}
.features__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.features__subtitle {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #666;
  font-family: "BIZ UDGothic", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
}

.jobs {
  padding: 0 0 2.4rem;
}
.jobs .section-title {
  margin: 0 0 2rem;
}
.jobs__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .jobs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .jobs__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefits {
  padding: 0 0 2.4rem;
}
.benefits__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.benefits__issue {
  background: #fff6f8;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.benefits__issue-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.benefits__issue-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.benefits__issue-hashtags .hashtag {
  background: #9ACAD9;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}
.benefits__issue-solution ul {
  list-style: none;
}
.benefits__issue-solution ul li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1.4em;
  color: #27ae60;
  font-weight: 500;
}
.benefits__issue-solution ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.28rem;
}

.testimonials {
  padding: 0 0 2.4rem;
}
.testimonials__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials__card {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(250, 225, 185, 0.3);
  transition: all 0.3s ease;
  padding: 2rem;
  text-align: center;
}
.testimonials__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(250, 225, 185, 0.4);
}
.testimonials__card-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
}
.testimonials__card-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #9ACAD9;
}
.testimonials__card-job {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.testimonials__card-comment {
  line-height: 1.6;
  font-style: italic;
  color: #444;
}
.testimonials__card-comment::before {
  content: "“";
  font-size: 2rem;
  color: #9ACAD9;
  line-height: 1;
}
.testimonials__card-comment::after {
  content: "”";
  font-size: 2rem;
  color: #9ACAD9;
  line-height: 1;
}

.final-cta {
  background: linear-gradient(135deg, #9ACAD9, #92C4BE);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}
.final-cta__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
 (max-width: 479px) {
  .final-cta__title {
    font-size: 2rem;
  }
}
.final-cta__celebration {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
}
.final-cta__celebration-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
 (max-width: 479px) {
  .final-cta__celebration-title {
    font-size: 1.25rem;
  }
}
.final-cta__celebration-note {
  font-size: 0.875rem;
  opacity: 0.9;
}
.final-cta__contact {
  margin-top: 3rem;
}
.final-cta__contact p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.final-cta__facility {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.final-cta__facility p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.final-cta__facility a {
  color: white;
  text-decoration: underline;
}
.final-cta__facility a:hover {
  opacity: 0.8;
}
.final-cta__reassurance {
  margin-top: 2rem;
  font-style: italic;
  opacity: 0.9;
}

.m-xs {
  margin: 0.5rem !important;
}

.mt-xs {
  margin-top: 0.5rem !important;
}

.mr-xs {
  margin-right: 0.5rem !important;
}

.mb-xs {
  margin-bottom: 0.5rem !important;
}

.ml-xs {
  margin-left: 0.5rem !important;
}

.mx-xs {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-xs {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.p-xs {
  padding: 0.5rem !important;
}

.pt-xs {
  padding-top: 0.5rem !important;
}

.pr-xs {
  padding-right: 0.5rem !important;
}

.pb-xs {
  padding-bottom: 0.5rem !important;
}

.pl-xs {
  padding-left: 0.5rem !important;
}

.px-xs {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-xs {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.m-sm {
  margin: 1rem !important;
}

.mt-sm {
  margin-top: 1rem !important;
}

.mr-sm {
  margin-right: 1rem !important;
}

.mb-sm {
  margin-bottom: 1rem !important;
}

.ml-sm {
  margin-left: 1rem !important;
}

.mx-sm {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-sm {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.p-sm {
  padding: 1rem !important;
}

.pt-sm {
  padding-top: 1rem !important;
}

.pr-sm {
  padding-right: 1rem !important;
}

.pb-sm {
  padding-bottom: 1rem !important;
}

.pl-sm {
  padding-left: 1rem !important;
}

.px-sm {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-sm {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.m-md {
  margin: 1.5rem !important;
}

.mt-md {
  margin-top: 1.5rem !important;
}

.mr-md {
  margin-right: 1.5rem !important;
}

.mb-md {
  margin-bottom: 1.5rem !important;
}

.ml-md {
  margin-left: 1.5rem !important;
}

.mx-md {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-md {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-md {
  padding: 1.5rem !important;
}

.pt-md {
  padding-top: 1.5rem !important;
}

.pr-md {
  padding-right: 1.5rem !important;
}

.pb-md {
  padding-bottom: 1.5rem !important;
}

.pl-md {
  padding-left: 1.5rem !important;
}

.px-md {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-md {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.m-lg {
  margin: 2rem !important;
}

.mt-lg {
  margin-top: 2rem !important;
}

.mr-lg {
  margin-right: 2rem !important;
}

.mb-lg {
  margin-bottom: 2rem !important;
}

.ml-lg {
  margin-left: 2rem !important;
}

.mx-lg {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-lg {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.p-lg {
  padding: 2rem !important;
}

.pt-lg {
  padding-top: 2rem !important;
}

.pr-lg {
  padding-right: 2rem !important;
}

.pb-lg {
  padding-bottom: 2rem !important;
}

.pl-lg {
  padding-left: 2rem !important;
}

.px-lg {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-lg {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.m-xl {
  margin: 3rem !important;
}

.mt-xl {
  margin-top: 3rem !important;
}

.mr-xl {
  margin-right: 3rem !important;
}

.mb-xl {
  margin-bottom: 3rem !important;
}

.ml-xl {
  margin-left: 3rem !important;
}

.mx-xl {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-xl {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-xl {
  padding: 3rem !important;
}

.pt-xl {
  padding-top: 3rem !important;
}

.pr-xl {
  padding-right: 3rem !important;
}

.pb-xl {
  padding-bottom: 3rem !important;
}

.pl-xl {
  padding-left: 3rem !important;
}

.px-xl {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-xl {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.m-xxl {
  margin: 4rem !important;
}

.mt-xxl {
  margin-top: 4rem !important;
}

.mr-xxl {
  margin-right: 4rem !important;
}

.mb-xxl {
  margin-bottom: 4rem !important;
}

.ml-xxl {
  margin-left: 4rem !important;
}

.mx-xxl {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-xxl {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.p-xxl {
  padding: 4rem !important;
}

.pt-xxl {
  padding-top: 4rem !important;
}

.pr-xxl {
  padding-right: 4rem !important;
}

.pb-xxl {
  padding-bottom: 4rem !important;
}

.pl-xxl {
  padding-left: 4rem !important;
}

.px-xxl {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-xxl {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

 (max-width: 479px) {
  .d-mobile-none {
    display: none !important;
  }
  .d-mobile-block {
    display: block !important;
  }
  .d-mobile-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-tablet-none {
    display: none !important;
  }
  .d-tablet-block {
    display: block !important;
  }
  .d-tablet-flex {
    display: flex !important;
  }
}
@media (min-width: 1024px) {
  .d-desktop-none {
    display: none !important;
  }
  .d-desktop-block {
    display: block !important;
  }
  .d-desktop-flex {
    display: flex !important;
  }
}
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.align-center {
  align-items: center !important;
}

.align-start {
  align-items: flex-start !important;
}

.align-end {
  align-items: flex-end !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.fade-out {
  animation: fadeOut 0.6s ease-in-out;
}

.slide-up {
  animation: slideUp 0.6s ease-in-out;
}

.slide-down {
  animation: slideDown 0.6s ease-in-out;
}

.pulse {
  animation: pulse 2s infinite;
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

/* Typography tuning (pro polish) */
.section-title {
  font-size: 2.2rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media (max-width: 479px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.features__subtitle,
.benefits__issue-title,
.testimonials__card-name,
.final-cta__celebration-title {
  line-height: 1.5;
}

p, li {
  font-size: 1rem;
  line-height: 1.75;
}

.benefits__issue-hashtags .hashtag,
.testimonials__card-job,
.final-cta__celebration-note {
  font-size: 0.95rem;
}

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