@charset "utf-8";

/* ===============================================
 * 1. 見出し装飾（ページ固有）
 * =============================================== */
.decorated-title {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.decoration-bottom {
    width: 300px;
    opacity: 0.7;
    display: block;
    margin: 0 auto;
}

.decoration-top {
  margin-bottom: -40px; /* ← ここ！空白を詰めます */
}

h2 {
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
    font-size: 2rem;
    margin: 0;
    padding: 10px 0;
    text-align: center;
}

/* ===============================================
 * 2. 講師紹介カード（レイアウトとアニメーション）
 * =============================================== */
.teachers {
    text-align: center;
    padding: 0;
  }

.teachers h3{
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
}

.teachers p{
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
}
.section-title {
    font-size: 1.5rem;
    color: #5e3c8f;
    margin-bottom: 40px;
  }
.teacher-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* カード間の隙間を少し狭める */
    max-width: 1200px; /* 中央に収まる幅を制限 */
    margin: 0 auto; /* 中央寄せ */
}
  
.teacher-card {
    width: 320px !important; /* ちょっと広げる */
    padding: 16px !important;
    background-color: #faefef;
    border: 2px solid #9c7d27;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important; /* シャドウも控えめに */
    transition: transform 0.3s !important;
    word-break: normal;  /* 単語切れを防ぐ */
    line-height: 1.4; 
  }

.teacher-card p {
    font-size: 1rem; /* 少し小さくして折り返しを減らす */
}
.teacher-card:hover {
    transform: translateY(-5px);
    border: 2px solid #9c7d27;
  }
  
.teacher-photo {
   width: 120px !important;  /* 写真も少し小さく */
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin-bottom: 16px !important;
    border: 2px solid #9c7d27 !important;
  }

  /* 表示されたとき */
.teacher-card {
    opacity: 0.5;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

 .teacher-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .closing-message {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
    font-size: 1.2rem;
    color: #555;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }

  @keyframes fadeInUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
@media screen and (max-width: 768px) {
    .teacher-card {
        width: 90%; /* 画面幅に合わせる */
        margin: 0 auto;
    }
}