/* ========== Global Styles ========== */
body {
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  padding-bottom: 180px;
  color: #323232;
}
body p {
  font-weight: 400;
}

body .title {
  margin-bottom: 40px;
  text-align: center;
}

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

.section-title {
  width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
}

.title-p {
  font-size: 16px;
  margin: 20px 0 0;
}

/* ========== Header ========== */
header {
  padding: 8px 12px;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
  margin: 0 auto;
  max-width: 1200px;
}

header .logo img {
  width: 100%;
  max-width: 115px;
  height: auto;
}

/* Desktop only */
@media (min-width: 769px) {
  header {
    padding: 16px 0;
  }

  header .logo img {
    max-width: 180px;
  }
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  height: auto;
  max-width: 1200px;
}

.buttons {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 20px 12px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #fff;
  z-index: 1000;
}

.buttons a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.buttons a:active {
  transform: scale(0.97);
}

.buttons div {
  flex: 1;
  max-width: 479px;
}

.buttons img {
  width: 100%;
  height: auto;
  max-width: 480px;
}

.coupon {
  max-width: 800px;
  padding: 0 12px;
  margin: 40px auto;
  text-align: center;
}

.coupon img {
  width: 100%;
  height: auto;
}

/* Desktop only */
@media (min-width: 500px) and (max-width: 768px) {
  .buttons {
    flex-direction: row;
    gap: 40px;
  }
}
/* ========== Methods Section ========== */

/* Section wrapper */
.section-methods {
  padding: 40px 12px;
  background: #fff;
  margin: 40px 0;
}

/* Section title */
.section-title.is-methods {
  max-width: 224px;
}

/* === methodsCardGroups (Grid container of cards) === */
.methodsCardGroups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 20px;
}

/* └── .card (individual card) */
.card {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* └── .card-h2 (Title banner) */
.card-h2 h2 {
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.card-h2.is-red {
  background-color: #e93b68;
}

.card-h2.is-blue {
  background-color: #0061c6;
}

/* └── .method-container (Main content area inside card) */
.method-container {
  padding: 24px 12px;
  background-color: #ffeef2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  height: 100%;
  flex: 1;
}

.method-container.is-out {
  background-color: #eef5ff;
}

/* └── .problem (Image + text list) */
.problem {
  display: flex;
  align-items: center;
  gap: 4px;
}

.problem img {
  max-width: 100%;
  height: 142px;
  margin-bottom: 12px;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: #333;
}

/* └── .card-p (Catch copy text) */
.card-p {
  font-size: 24px;
  font-weight: 700;
  color: #e93b68;
  margin: 0;
  text-align: center;
}

.method-container.is-out .card-p {
  color: #0061c6;
}

/* └── .text-group (Title + body block) */
.text-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 520px;
  margin: 0 auto;
}

.text-block {
  margin: 0;
}

.text-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 150%;
}

.text-body {
  font-size: 16px;
  line-height: 150%;
  margin: 0;
  color: #333;
}

/* └── .recommend-block (Icon list) */
.recommend-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.section-title-image img {
  max-width: 240px;
  margin: 0 auto;
  display: block;
}

.recommend-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  width: 100%;
}

.recommend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
}

.recommend-item.is-pink {
  border-color: #e93b68;
}

.recommend-item.is-pink .recommend-icon i {
  color: #e93b68;
}

.recommend-item.is-blue {
  border-color: #0051cc;
}

.recommend-item.is-blue .recommend-icon i {
  color: #0051cc;
}

.recommend-icon i {
  font-size: 24px;
}

.recommend-text {
  line-height: 1.5;
  font-size: 20px;
  font-weight: 700;
}

/* └── .button (CTA button) */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  width: 100%;
  height: 60px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.button:hover {
  opacity: 0.8;
}

.button i {
  font-size: 20px;
}

.button.is-home {
  background: linear-gradient(to bottom, #e93b68, #a10e2d);
  border: 1px solid #a10e2d;
}

.button.is-out {
  background: linear-gradient(to bottom, #0051cc, #07137d);
  border: 1px solid #07137d;
}

/* === .notesGroups (Footer note) === */
.notesGroups ul {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 150%;
  height: auto;
  padding: 0 0 0 12px;
}

.notesGroups li span {
  color: #0051cc;
}

/* ======== Media Queries (for Methods Section) ======== */

/* Responsive behavior: buttons font-size */
@media (min-width: 500px) {
  .button {
    font-size: 24px;
  }
}

/* Responsive: two-column layout for cards */
@media (min-width: 769px) {
  .methodsCardGroups {
    grid-template-columns: 1fr 1fr;
  }
  .buttons {
    flex-direction: row;
    gap: 60px;
  }
}

/* Reverse layout for problem block in narrow tablet range */
@media (min-width: 769px) and (max-width: 995px) {
  .problem {
    flex-direction: column-reverse;
  }
}

/* Mobile: reverse layout for problem block */
@media (max-width: 500px) {
  .problem {
    flex-direction: column-reverse;
  }
}

/* ========== Message Section ========== */

/* Section wrapper */
.section-message {
  position: relative;
  padding: 80px 12px;
  background-image: linear-gradient(
      rgba(116, 139, 254, 0.6),
      rgba(116, 139, 254, 0.6)
    ),
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("imges/sp/sp_messages_background.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; /* ✅ これで背景がセクション全体に広がる */
  margin: 40px auto 0 auto;
  overflow: hidden;
  z-index: 0;
}

/* Section title */
.section-title.is-message {
  display: block;
  width: 100%;
  max-width: 416px;
  height: auto;
  margin: 0 auto 40px;
}

/* Grid wrapper for messages */
.messageGroups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual message card */
.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

/* Message image */
.imgMessage {
  width: 100%;
  max-width: 256px;
  height: auto;
}

/* Message text */
.message-text {
  font-size: 16px;
  font-weight: 700;
  color: #323232;
  letter-spacing: -0.02em;
  margin: 0 auto;
}

/* ======== Media Queries (for Message Section) ======== */
@media (min-width: 769px) {
  .section-title.is-message {
    max-width: 796px;
  }

  .imgMessage {
    max-width: 256px;
    height: auto;
  }

  .messageGroups {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .section-message {
    background-image: linear-gradient(
        rgba(116, 139, 254, 0.6),
        rgba(116, 139, 254, 0.6)
      ),
      linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("imges/pc/pc_messages_background.webp");
  }
}
/* ========== Needs Section ========== */

/* Section wrapper */
.section-needs {
  background-color: #c6c6c6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 12px;
}

/* Grid wrapper for cards */
.needsGroup {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 28px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

/* Individual card */
.needCard {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 36px 16px;
  font-size: 20px;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border-radius: 4px;
}
.needCard p {
  font-weight: 700;
  margin: 0;
}
/* Underline highlight */
.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 100%;
  height: 6px;
  background-color: #afc0ff;
  z-index: -1;
}

/* ======== Media Queries (for Needs Section) ======== */
@media (max-width: 768px) {
  .needsGroup {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .needCard {
    max-width: 500px;
    margin: 0 auto;
  }
}
/* ========== Solution Section ========== */

/* Decorative arrow above the section */
.solutionArrow {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.solutionArrow img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

/* Section title */
.section-title.is-solution {
  max-width: 448px;
  padding: 0 12px;
}

/* Main visual block with background image */
.solutionContents {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 12px;
  gap: 40px;
  overflow: hidden;
  z-index: 0;
}

/* Background overlay */
.solutionContents::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("imges/sp/sp_solution_background.webp") no-repeat center /
    cover;
  z-index: -1;
  pointer-events: none;
}

/* Inner wrapper */
.solutionInner {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Responsive image */
.solutionContents img {
  width: 100%;
  max-width: 1170px;
  height: auto;
  display: block;
}

/* ======== Media Queries (SP view) ======== */
@media (max-width: 500px) {
  .section-title.is-solution {
    max-width: 256px;
    width: 100%;
  }

  .title.is-solution {
    margin-bottom: 20px;
  }

  .solutionContents {
    padding-bottom: 20px;
  }

  .solutionArrow img {
    max-width: 201px;
  }
}

/* ========== Points Section ========== */

/* Section container */
.section-points {
  padding: 60px 12px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

/* Section title */
.section-title.is-points {
  max-width: 403px;
}

/* Image container */
.pointsContents {
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 40px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Responsive images */
.pointsContents img {
  width: 100%;
  height: auto;
  max-width: 1200px;
}

/* ======== Media Queries (PC view) ======== */
@media (min-width: 769px) {
  .section-points {
    outline: 12px solid #1234b4;
    outline-offset: -12px;
  }
}

/* ========== Category Section ========== */

/* Section container */
.section-category {
  padding: 40px 12px;
}

/* Section title */
.section-title.is-category {
  max-width: 180px;
}

/* Responsive image container */
.categoryGroups {
  display: flex;
  justify-content: center;
  max-width: 100%;
}

/* Image block */
.categoryGroups picture {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}

.categoryGroups picture img {
  width: 100%;
  height: auto;
  display: block;
}
/* ========== Brand Section ========== */

/* Section container */
.section-brand {
  padding: 80px 12px;
  background-color: #f3f0eb;
}

/* Section title */
.section-title.is-brand {
  max-width: 288px;
}

/* Main heading background */
.brandTitle {
  background-color: #1234b4;
  color: #fff;
  padding: 20px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

.brandTitle p {
  margin: 0;
}

/* Wrapper for all brand groups */
.brandGroups {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each brand group block */
.groups {
  padding: 28px 24px 20px;
  width: 100%;
  background-color: #fff;
}

/* Image layout grid */
.imgGroups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 20px;
}

/* Brand image */
.picture {
  width: 100%;
  max-width: 340px;
  height: auto;
}

/* Text badge grid */
.textgroups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 20px;
}

/* Text badge */
.metaltext {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  padding: 16px 8px;
  font-size: 20px;
  color: #323232;
  border: 1px solid #b3a8a8;
  margin: 0;
}

/* ======== Media Queries ======== */

/* PC view */
@media (min-width: 769px) {
  .imgGroups {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .picture {
    max-width: 346px;
  }

  .textgroups {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .metaltext {
    max-width: 256px;
  }
}

/* SP view */
@media (max-width: 500px) {
  .imgGroups {
    grid-template-columns: 1fr;
  }
}

/* ========== Reviews Section ========== */
/* Section container */
.section-reviews {
  padding: 80px 12px;
  background-color: #f3f0eb;
  justify-items: center;
}

/* Section title */
.section-title.is-reviews {
  max-width: 288px;
  width: 100%;
}

/* Optional note */
.reviewsNote {
  margin: 0;
  margin-top: 20px;
}

/* Wrapper for all reviews */
.reviewsGroups {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
}

/* Review item container */
.custmer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  justify-items: center;
}

/* Customer image */
.custmerIcon {
  max-width: 150px;
}

/* Review text wrapper */
.custmerText {
  margin-top: 20px;
}

.custmerText h3 {
  font-size: 20px;
  margin: 0 0 12px 0;
  color: #1234b4;
}

.custmerText p {
  margin: 0;
  color: #323232;
}

/* ======== Media Queries ======== */

/* PC view */
@media (min-width: 769px) {
  .custmer {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
  .custmerText {
    margin-top: 0px;
  }
}
/* ========== FAQ Section ========== */

.section-faq {
  background-color: #f7f7f0;
  padding: 80px 12px;
  color: #323232;
}

.section-title.is-faq {
  max-width: 224px;
}

/* Tabs container */
.faqTabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

/* Individual tab buttons */
.faqTab {
  position: relative;
  padding: 26px 16px;
  font-size: 20px;
  font-weight: 400;
  color: #323232;
  text-align: center;
  background: white;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  cursor: pointer;
}

.faqTabText {
  display: inline-block;
}

.faqTab i {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #333;
}

/* Tab content wrapper */
.faqContent {
  max-width: 1200px;
  margin: 0 auto;
}

/* FAQ Group */
.faqGroup {
  margin-bottom: 40px;
}
.faqGroup.is-last {
  margin-bottom: 0;
}

/* Category title */
.faqCategory {
  font-size: 24px;
  font-weight: 700;
  border-bottom: 2px solid #393939;
  padding-bottom: 8px;
  margin: 0 0 24px 0;
  color: #323232;
}

/* FAQ Item */
.faqItem {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
}
.faqItem.is-last {
  border-bottom: none;
  margin-bottom: 0;
}

/* Question */
.faqQuestion {
  color: #1234b4;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
}

/* "Q." mark styling */
.faqMark {
  font-family: "YuMincho", "游明朝", serif;
  font-weight: 900;
  font-size: 24px;
  margin-right: 4px;
  line-height: 150%;
}

/* Answer */
.faqAnswer {
  color: #323232;
  font-size: 16px;
  line-height: 150%;
  margin: 0;
}
.anchorLink,
.tel-link,
.mail-link {
  color: #0026ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}
.anchorLink {
  font-weight: bold;
}
.tel-link {
  border-bottom: none;
}
.anchorLink:hover {
  opacity: 0.8;
}

/* ======== Media Queries ======== */
@media (min-width: 769px) {
  .faqTabs {
    flex-direction: row;
  }

  .faqTab {
    width: 100%;
  }
}
/* ========== Store Section ========== */

/* Outer section wrapper */
.section-area {
  padding: 80px 12px;
  background-color: #fff;
  color: #333;
}

/* Section title */
.section-title.is-area {
  max-width: 491px;
}

/* Accordion container */
.areaAccordion {
  max-width: 1200px;
  margin: 0 auto;
}

/* Accordion item block */
.areaItem {
  margin-bottom: 16px;
  border: 1px solid #000000;
  border-radius: 4px;
}

/* Accordion toggle button */
.areaToggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 18px;
  background-color: #f3f0eb;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  position: relative;
  cursor: pointer;
  color: #323232;
}

/* Icon inside the toggle */
.areaToggle i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Toggle open state */
.areaToggle.open i {
  transform: rotate(90deg);
}

/* Accordion content panel (hidden by default) */
.areaPanel {
  display: none;
  background: #ffffff;
  padding: 12px;
  border-radius: 4px;
}

/* Panel open state */
.areaPanel.open {
  display: block;
}

/* Individual store block */
.storeItem {
  margin-bottom: 12px;
  padding: 0 12px;
}

.storeTitle {
  font-size: 20px;
  font-weight: bold;
  color: #1234b4;
  margin: 0;
}

.storeZip,
.storeAddress,
.storeTime {
  font-size: 16px;
  font-weight: 400;
  margin: 2px 0;
  color: #323232;
}

/* Store visit area (訪問情報) */
.areaInfo {
  background: #f9f9fb;
  padding: 12px;
  border-radius: 4px;
}

.areaTitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin: 0 0 4px 0;
}

.areaSub {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

/* Outarea block inside areaInfo */
.outarea {
  margin-bottom: 24px;
}
.outarea:last-child {
  margin-bottom: 0;
}

/* List inside areaInfo */
.areaList {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.areaList li {
  font-size: 14px;
  margin-bottom: 4px;
}

.areaIcon {
  margin-right: 6px;
}

.areaText {
  font-size: 16px;
  margin: 4px 0 0 0;
}
/* ========== Footer Section ========== */

/* Footer wrapper */
.footer {
  background-color: #0a162a;
  padding: 80px 0;
}

/* Footer logo */
.footer_logo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Shop list area (店舗一覧) */
.footer_shop_list {
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  margin: 10px;
}

.footer_shop_list * {
  display: inline;
}

.footer_shop_list ul li {
  white-space: nowrap;
}

.footer_shop_list ul li::after {
  content: "、";
  display: inline;
}

.footer_shop_list ul li:last-child::after {
  content: "";
}

/* Shop list definition tags */
.footer_shop_list dt,
.footer_shop_list dd,
.footer_shop_list ul {
  margin: 0;
  padding: 0;
}

/* Privacy mark image */
.pmark_img {
  max-width: 100%;
  height: auto;
  background: #fff;
  padding: 5px;
  margin: 10px;
}

/* Footer navigation links */
.footer_navi ul {
  padding: 0;
}

.footer_navi_list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer_navi_list_item:before {
  content: "｜";
  color: #fff;
  vertical-align: middle;
}

.footer_navi_list_item:first-child:before {
  content: "";
}

.footer_navi_list_item .link {
  color: #fff;
}

/* Footer text block */
.footer_text {
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  margin: 10px 0;
}

.copyright {
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 10px;
}

/* ======== Media Queries (SP only) ======== */
@media only screen and (max-width: 768px) {
  .footer {
    padding: 50px 12px;
  }

  .appeal_banner {
    margin: 20px auto;
  }
}

/* ========== Tel CTA (SP Only) ========== */
.section-tel-cta {
  padding: 0 12px;
}

/* === Wrapper for shine effect === */
.shiny-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(-45deg, #2e53bf 50%, #87a1ec 60%, #2e53bf 70%);
  background-size: 600% 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  animation: shineBackground 20s linear infinite,
    floatUpDown 3s ease-in-out infinite;
}

.shiny-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
}

/* === SP only === */
@media (min-width: 769px) {
  .section-tel-cta {
    display: none;
  }
}

/* === Highlighter animation === */
@keyframes shineBackground {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}

/* === Float up and down === */
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.shiny-wrapper:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* ========== Scroll Animation (Fade-in from Bottom) ========== */

/* Initial state: hidden and shifted downward */
.fadein-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

/* Visible state: fade in and move up to position */
.fadein-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: staggered animation delays */
.delay-1.visible {
  transition-delay: 0.1s;
}
.delay-2.visible {
  transition-delay: 0.3s;
}
.delay-3.visible {
  transition-delay: 0.4s;
}
.delay-4.visible {
  transition-delay: 0.6s;
}
