body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000000;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.primary-bg {
  background-color: #F8E900;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  position: relative;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero .hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.section {
  padding: 4rem 0;
}

.section.bg-white {
  background-color: #ffffff;
}

.member-card {
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #f0f0f0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.member-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.member-card h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #000000;
}

.member-card h2 .w-8 {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.member-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #374151;
}

.member-card h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.member-card p {
  margin-bottom: 1rem;
  color: #4b5563;
}

.member-card p.text-sm {
  font-size: 0.875rem;
}

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

.member-card ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.member-card ul li {
  margin-bottom: 0.25rem;
  color: #4b5563;
}

.member-card ul li.text-sm {
  font-size: 0.875rem;
}

.contact-info-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-info-card h4 i {
  margin-right: 0.5rem;
  color: #F8E900;
}

.contact-info-card p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: #6c757d;
}

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

.bg-gray-50 {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.bg-gray-50 h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.bg-gray-50 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bg-gray-50 ul li {
  margin-bottom: 0.5rem;
}

.bg-gray-50 ul li a {
  color: #2563eb;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.bg-gray-50 ul li a:hover {
  color: #F8E900;
  text-decoration: underline;
}

.border-l-4 {
  border-left: 4px solid #F8E900;
  padding-left: 1rem;
}

.border-l-4 h4 {
  margin-bottom: 0.5rem;
}

.border-l-4 p, .border-l-4 ul {
  font-size: 0.875rem;
  color: #6c757d;
}

.grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.grid.grid-cols-1 {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.grid.grid-cols-2 {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-bold {
  font-weight: bold;
}

.text-gray-600 {
  color: #6b7280;
}

.text-gray-700 {
  color: #374151;
}

.text-black {
  color: #000000;
}

[id] {
  scroll-margin-top: 100px;
}

@media (min-width: 768px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
  .hero .hero-content p {
    font-size: 1.5rem;
  }
  .grid.md\\:grid-cols-2 {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 5rem 0;
  }
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 250px;
    min-height: 250px;
    margin-top: 88px;
    padding: 0 1rem;
  }
  .hero .hero-content h1 {
    font-size: 2rem;
  }
  .hero .hero-content p {
    font-size: 1rem;
  }
  .member-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .member-card h2 {
    font-size: 1.25rem;
  }
  .member-card h2 .w-8 {
    width: 1.75rem;
    height: 1.75rem;
  }
  .section {
    padding: 3rem 0;
  }
  [id] {
    scroll-margin-top: 80px;
  }
}
/*# sourceMappingURL=policy.css.map */