body {
  margin: 0;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', 'Helvetica Neue', sans-serif;
  background-color: #f8f8f8;
  color: #111;
  padding-top: 90px;
}

/* ===== Hero Section（画像とテキストを重ねる） ===== */
.hero {
  position: relative;
  height: 30vh;  /* 60vh → 30vh に変更 */
  min-height: 300px;  /* 500px → 300px に変更 */
  background: url('../images/contact/contact_marmoset.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 0.5em;
  color: #1e3c72;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(255,255,255,0.9);
}

.hero-content p {
  font-size: 1.3em;
  max-width: 700px;
  line-height: 1.6;
  color: #333;
  text-shadow: 1px 1px 4px rgba(255,255,255,0.9);
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.content-section {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-title {
  font-size: 2em;
  color: #1e3c72;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #1e3c72;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info {
  line-height: 1.8;
}

.contact-info h3 {
  color: #1e3c72;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
}

.email {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  font-family: monospace;
  border-left: 4px solid #1e3c72;
  font-size: 1.3em; /* 追加: メールアドレスのフォントサイズを大きく */
}

.email small {
  font-size: 0.85em; /* 追加: 注釈文は少し小さめに */
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.address-info {
  margin-top: 20px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.address-info h4 {
  color: #1e3c72;
  margin-bottom: 10px;
}

.recruitment-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid #28a745;
}

.recruitment-section h3 {
  color: #28a745;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .hero {
    height: 50vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-content p {
    font-size: 1.1em;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .content-section {
    padding: 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
/* ===== お問い合わせCTAセクション ===== */
.contact-cta {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border-left: 5px solid #1e3c72;
}

.contact-cta h3 {
  color: #1e3c72;
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

.contact-box-highlight {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.contact-email {
  font-size: 1.35em; /* 1.2em → 1.35em に変更: メールアドレスを大きく */
  color: #1e3c72;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.contact-note {
  font-size: 1.05em; /* 0.95em → 1.05em に変更: 説明文も少し大きく */
  color: #555;
  line-height: 1.8;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #667eea;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .contact-cta {
    padding: 20px;
  }
  
  .contact-box-highlight {
    padding: 20px;
  }
  
  .contact-email {
    font-size: 1.2em; /* スマホでも少し大きめに */
  }
  
  .email {
    font-size: 1.05em; /* スマホ版も調整 */
  }
}

/* ボタンスタイル */
.contact-buttons {
  text-align: center;
  margin: 30px 0;
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
  background: white;
  color: #1e3c72;
  border: 2px solid #1e3c72;
}

.cta-button.secondary:hover {
  background: #1e3c72;
  color: white;
  transform: translateY(-3px);
}
/* ===== フッター ===== */
.footer {
  background: #1e3c72;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.copyright {
  font-size: 0.85em;
  opacity: 0.8;
  line-height: 1.6;
}