body {
  font-family: "Kiwi Maru", serif;
  background-color: #fffafc;
  margin: 0;
  padding-top: 120px;
  color: #555;
}


.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffeef2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 100;
  padding: 20px 0;
}

.fixed-header ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

.fixed-header li {
  margin: 0;
}

.fixed-header a {
  text-decoration: none;
  color: #d16d8f;
  font-weight: bold;
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
  padding: 5px 10px;
}

.fixed-header a:hover {
  animation: bounceHeader 0.4s ease infinite;
  color: #0077cc;
}

@keyframes bounceHeader {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}


.contact-bar {
  background-color: #fff0f5;
  text-align: center;
  padding: 12px;
  font-size: 1rem;
  color: #c06080;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: fixed;
  top: 70px;
  width: 100%;
  z-index: 90;
}


.contact-bar a:not(.line-link) {
  color: #d16d8f;
  text-decoration: none;
  font-weight: bold;
  animation: contactBlink 1.5s ease-in-out infinite;
}

@keyframes contactBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
  .contact-bar a:hover {
  animation: bounceHeader 0.4s ease infinite;
}



.line-link {
  color: #00c300 !important;
  font-weight: bold;
  text-decoration: none;
}

.line-link:hover {
  color: #009e00 !important;
}


.staff-section {
  padding: 40px 20px;
  text-align: center;
}

.staff-section h2 {
  font-size: 2rem;
  color: #c06080;
  margin-bottom: 10px;
}

.note {
  text-align: center;
  color: #c06080;
  margin-bottom: 20px;
}

.date-scroll-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto;
  font-size: 1.3rem;
  color: #c06080;
}

.date-display {
  min-width: 220px;
  text-align: center;
  font-weight: bold;
}

.scroll-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scroll-buttons button {
  background-color: #ffeef2;
  border: none;
  padding: 6px 10px;
  font-size: 1.2rem;
  color: #c06080;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.scroll-buttons button:hover {
  background-color: #f0c0d0;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 30px auto;
}

.staff-card {
  background-color: #fff0f5;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  font-size: 1rem;
   text-decoration: none;
  color: inherit;

}

.staff-card:hover {
  transform: scale(1.05);
}

.staff-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

.staff-card h3 {
  margin-top: 20px;
  color: #c06080;
  font-size: 1.4rem;
}

.staff-card p {
  font-size: 1rem;
  color: #777;
  margin: 8px 0;
}

footer {
  text-align: center;
  padding: 16px 0;
  font-size: 0.95rem;
  color: #888;
  font-family: "Dancing Script", sans-serif;
}
@media screen and (max-width: 768px) {
  .staff-grid {
    grid-template-columns: 1fr; 
    gap: 20px; 
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .fixed-header a {
    font-size: 1rem;
    padding: 4px 6px; 
  }

  .fixed-header ul {
    grid-template-columns: repeat(5, auto); 
    gap: 4px;
  }
}
@media screen and (max-width: 768px) {
  .contact-bar {

    justify-content: space-between;
    flex-wrap: wrap;
    top: 70px;
    padding: 0;
  }

  
}
