/* ========================================
   部活動ページ 共通
======================================== */

.club-page-header{
  padding: 60px 20px 40px;
  text-align: center;
}

.club-badge{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:#efe9ff;
  color:#6a4fbf;
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.12em;
  margin-bottom:18px;
}

.page-title{
  font-size:clamp(2rem,5vw,3.4rem);
  color:#2e1a47;
  margin:0 0 20px;
  font-weight:700;
}

.page-lead{
  max-width:820px;
  margin:0 auto 40px;
  line-height:2;
  color:#555;
  font-size:1.02rem;
}

.club-hero{
  margin-top:40px;
}

.club-hero img{
  width:100%;
  border-radius:24px;
  object-fit:cover;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.12);
}

/* ========================================
   セクション
======================================== */

.club-section{
  padding:60px 0;
}

.section-heading{
  margin-bottom:30px;
  position:relative;
}

.section-en{
  display:block;
  color:#6a4fbf;
  font-size:0.82rem;
  letter-spacing:0.18em;
  font-weight:700;
  margin-bottom:8px;
}

.section-heading h2{
  margin:0;
  font-size:2rem;
  color:#2e1a47;
}


.section-heading::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  margin-top:14px;
  background:#6a4fbf;
  border-radius:999px;
}

/* ========================================
   部活動カード
======================================== */

.club-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.club-card{
  display:block;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  text-decoration:none;
  color:#222;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.08);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.club-card:hover{
  transform:translateY(-6px) scale(1.01);
  border-color:#6a4fbf;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.16);
}

.club-card-body{
  padding:16px 18px;
}

.club-card-body p{
  margin:0;
  color:#777;
  font-size:0.84rem;
  line-height:1.4;
}

/* ========================================
   お知らせ
======================================== */

.club-notice-section{
  padding:40px 0 80px;
}

.club-notice{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.notice-box{
  background:#fff;
  border-radius:20px;
  padding:30px;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.08);
}

.notice-box h3{
  margin-top:0;
  margin-bottom:18px;
  color:#2e1a47;
}

.notice-box ul{
  margin:0;
  padding-left:1.2rem;
  line-height:1.9;
}

/* ========================================
   タブレット
======================================== */

@media (max-width:1000px){

  .club-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .club-notice{
    grid-template-columns:1fr;
  }

}

/* ========================================
   スマホ
======================================== */

@media (max-width:600px){

  .club-page-header{
    padding-top:40px;
  }

  .club-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .section-heading h2{
    font-size:1.5rem;
  }

  .club-card-body{
    padding:16px 18px;
  }

  .page-lead{
    font-size:0.95rem;
    line-height:1.9;
  }

}

/* ========================================
   カード改良
======================================== */

.club-card{
  position:relative;
  border:1px solid #ece8f5;
  min-height:140px;

  display:flex;
  align-items:center;
}

.club-card-body{
  width:100%;
  padding:24px;
}

.club-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:18px;
}

.club-icon{
  font-size:1.8rem;
  line-height:1;
}

.club-type{
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.08em;

  color:#6a4fbf;
  background:#f3effd;

  padding:6px 10px;
  border-radius:999px;
}

.club-card-body h3{
  margin:0 0 2px;
  font-size:1.1rem;
  line-height:1.5;
  color:#2e1a47;
}

.club-card-body p{
  margin:0;
  color:#777;
  font-size:0.9rem;
}

/* hover */

.club-card::after{
  content:"→";

  position:absolute;
  right:20px;
  bottom:18px;

  color:#b8a9dd;

  transition:transform .25s ease;
}

.club-card:hover::after{
  transform:translateX(4px);
}

/* セクション余白 */

.club-section{
  margin-top:70px;
}

/* お知らせ */

.club-notice{
  display:grid;
  gap:20px;
}

.notice-box{
  background:#fff;
  border-radius:18px;
  padding:28px;

  border:1px solid #ece8f5;

  box-shadow:0 4px 14px rgba(0,0,0,0.06);
}

.notice-box h3{
  margin-top:0;
  margin-bottom:14px;

  color:#2e1a47;
}

/* スマホ */

@media (max-width:600px){

  .club-card{
    min-height:auto;
  }

  .club-card-body{
    padding:20px;
  }

}

.club-meta{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid #eee;
}

.club-meta li{
  margin:8px 0;
  font-size:0.92rem;
  color:#555;
  line-height:1.6;
}

.club-pr{
  margin-top:18px;
  font-size:0.95rem;
  line-height:1.7;
  color:#444;
}

.club-update{
  margin-top:18px;
  font-size:0.82rem;
  font-weight:700;
  color:#6a4fbf;
}

.club-card-body .club-en{
  color:#9a90b5;
  font-size:0.82rem;
  margin-bottom:10px;
}

#sports-list,
#culture-list{
  margin-top:16px;
}