@charset "UTF-8";
/* =========================================================
   部活動地域展開　クラブ詳細ページ用スタイル
   読み込み位置：<head> の最後（style2.css より後ろ）
   ※ もとは本文先頭に直接書かれていた <style> の内容
   ========================================================= */

/* ---------- 見出し ---------- */
h2{
  position:relative;
  align-items:center;
}
/* 見出し2の前に挿入されるアイコン */
h2::before{
  content:'■';
  color:#D1D1D4;
  font-size:0.6em;
  margin-right:0.3em;
  vertical-align:top;
}
/* クラブ名の見出しにはアイコンを付けない */
h2.title::before{
  display:none;
}

/* ---------- 埋め込み動画など ---------- */
iframe{ width:40em; }
.youtubearea iframe{ width:40em; }
@media (max-width:680px){
  iframe{ width:100%; }
  .youtubearea iframe{ width:100%; }
}

/* =========================================================
   認定クラブマーク
   使い方： <h2 ... class="title"><span class="cert cert--shield">認定クラブ</span>クラブ名</h2>
   　　　　 認定なしのページは <span class="cert cert--shield"></span> と空にする
   ========================================================= */
.cert{
  display:inline-flex;
  align-items:center;
  gap:.28em;
  margin-right:.5em;
  font-size:.66em;
  font-weight:700;
  line-height:1;
  letter-spacing:.06em;
  white-space:nowrap;
  vertical-align:middle;
}
/* 中身が空なら枠ごと非表示（アイコンは ::before なので一緒に消える） */
.cert:empty{ display:none; }

/* 盾アイコン＋文字 */
.cert--shield{
  padding:.38em .72em .38em .55em;
  border-radius:4px;
  background:#F7F1DF;
  border:1px solid #C9AE6A;
  color:#7A5B12;
}
.cert--shield::before{
  content:"";
  flex:none;
  width:.85em;
  height:.97em;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 16'%3E%3Cpath d='M7 .8l5.4 2v5.1c0 3.4-2.2 6.2-5.4 7.3-3.2-1.1-5.4-3.9-5.4-7.3V2.8z' fill='none' stroke='%237A5B12' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.4 7.7l1.9 1.9 3.4-3.6' fill='none' stroke='%237A5B12' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* 白黒印刷：塗りが飛んでも読めるように線＋黒へ */
@media print{
  .cert--shield{
    background:transparent !important;
    color:#000 !important;
    border:1.5px solid #000 !important;
  }
}
