@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}
body {
  background-color: #fff9f6;
  color: #3a3a3a;
  line-height: 1.8;
}
header {
  background: url('https://images.unsplash.com/photo-1689181273522-200c36e8c864?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
}
header h1,
header p {
  text-shadow: 1px 2px 5px #808080;
}
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}
header h1,
header p,
header .btn {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
header h1 {
  font-size: 2rem;
  animation-delay: 0.3s;
}
header p {
  animation-delay: 0.6s;
}
header .btn {
  animation-delay: 0.9s;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
section {
  padding: 40px 20px;
  text-align: center;
}
.section-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



.card img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.faq {
  background-color: #fff1ec;
}
.contact {
  background-color: #ffe9e0;
  padding-bottom: 60px;
}
.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background-color: #ffaaa0;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn:hover {
  background-color: #ff8f8a;
  transform: scale(1.05);
}
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #f3f3f3;
  font-size: 0.9rem;
  color: #888;
}
@media screen and (max-width: 600px) {
  .card {
    width: 100%;
  }
}
