/* =========================
   Base
========================= */
:root{
  --bg: #ffffff;
  --text: #111;
  --muted: #666;
  --accent: #76BC39;

  --brand-bg: #76BC39;
  --brand-fg: #111;            /* ヘッダー/メニュー/フッターを黒文字 */

  --container: 1040px;
  --narrow: 760px;
  --gap: 40px;
  --card-gap: 40px;
  --radius: 0px;

  --header-h: 64px;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }

body{
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    "Times New Roman",
    serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

/* 重要：固定ヘッダー分の余白は body ではなく main に付ける */
main{
  padding-top: var(--header-h);
}

/* トップ（HOME）は最初はヘッダーを隠すので余白なし */
body.is-home main{ padding-top: 0; }
/* スクロールしてヘッダーが出たら、初めて余白を入れる */
body.is-home.header-visible main{ padding-top: var(--header-h); }

/* ベースの画像ルール */
img{ max-width:100%; height:auto; display:block; }

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.container.narrow{
  width: min(var(--narrow), calc(100% - 48px));
  margin: 0 auto;
}

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* 固定ヘッダーのアンカー被り対策 */
section{
  scroll-margin-top: var(--header-h);
}

/* =========================
   Header / Menu（黒文字）
========================= */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: var(--brand-bg);
  color: var(--brand-fg);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  transition: transform .25s ease, opacity .25s ease;
}

/* HOME：最初はヘッダーを隠す */
body.is-home .site-header{
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
body.is-home.header-visible .site-header{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 12px;
}

.brand{ display:none; }

.header-title{
  color: var(--brand-fg);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 16px;
  white-space: nowrap;
  margin-right: auto;
}
.header-title:hover{ opacity: .9; text-decoration:none; }

/* =========================
   Header Logo（横ロゴ 22px）
   ※ HTML: <a class="header-title header-logo">...<img>...</a>
========================= */
.header-logo{
  display: inline-flex;
  align-items: center;
  height: var(--header-h);
  margin-right: auto; /* 右側をメニューに寄せる */
}
.header-logo img{
  height: 22px;   /* ← 基準サイズ */
  width: auto;
  display: block;
}

/* =========================
   Menu button (hit area improved)
========================= */
.menu-btn{
  appearance: none;
  border: none;
  background: transparent;

  /* クリック領域を確実に広げる */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;

  cursor: pointer;
  border-radius: 10px;

  -webkit-tap-highlight-color: transparent;
}
.menu-btn:hover{ background: rgba(0,0,0,0.08); }

/* :focus は消して :focus-visible に寄せる（マウスクリックで枠が出にくい） */
.menu-btn:focus{ outline: none; }
.menu-btn:focus-visible{
  outline: 2px solid rgba(0,0,0,0.55);
  outline-offset: 2px;
}

.menu-icon{
  width: 22px;
  height: 2px;
  background: var(--brand-fg);
  position: relative;
  top: 0;                 /* ← top:6px を撤廃して中央基準に */
  border-radius: 2px;
}
.menu-icon::before,
.menu-icon::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background: var(--brand-fg);
  border-radius:2px;
}
.menu-icon::before{ top:-6px; }
.menu-icon::after{ top:6px; }

/* PCでさらに押しやすく（見た目は変えずに当たり判定だけ少し拡張） */
@media (min-width: 1024px){
  .menu-btn{ position: relative; }
  .menu-btn::before{
    content:"";
    position:absolute;
    inset:-6px;
  }
}

/* =========================
   Drawer Nav（全面グリーン＋黒文字）
========================= */
#globalNav,
.global-nav{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
}

/* 開いたとき：レイヤー自体も緑 */
#globalNav.is-open,
.global-nav.is-open{
  pointer-events: auto;
  background: var(--brand-bg);
}

/* 本体：画面全体 */
#globalNav .nav-inner,
.global-nav .nav-inner{
  position: fixed;
  inset: 0;

  width: 100vw;
  height: 100vh;
  min-height: 100vh;

  background: var(--brand-bg);
  color: var(--brand-fg);

  transform: translateX(110%);
  transition: transform .22s ease;
  padding: 18px 20px 22px;

  border-left: none;
}

#globalNav.is-open .nav-inner,
.global-nav.is-open .nav-inner{
  transform: translateX(0);
}

/* 黒い幕は消す */
#globalNav .nav-backdrop,
.global-nav .nav-backdrop{
  display: none;
}

/* 中の文字を黒に統一 */
#globalNav .nav-inner a,
#globalNav .nav-inner button,
#globalNav .nav-inner * ,
.global-nav .nav-inner a,
.global-nav .nav-inner button,
.global-nav .nav-inner *{
  color: var(--brand-fg);
}

.close-btn{
  appearance:none;
  border: 1px solid rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.18);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--brand-fg);
}
.close-btn:hover{ background: rgba(255,255,255,0.28); }

/* 任意：閉じるボタンの押しやすさ最低44px確保 */
.close-btn{
  min-height: 44px;
}

.nav-list{
  list-style:none;
  padding: 18px 0 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.nav-link{
  display:block;
  padding: 12px 10px;
  border-radius: 10px;
  color: var(--brand-fg);
  letter-spacing: .04em;
}
.nav-link:hover{
  background: rgba(255,255,255,0.20);
  text-decoration: none;
}

/* =========================
   Hero
========================= */
.hero{ position: relative; }

.hero-media{
  width: 100%;
  height: clamp(520px, 70vh, 760px);
  overflow: hidden;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-copy{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  padding:24px;
}

.hero-stack{
  display:grid;
  gap:14px;
  place-items:center;
}

.hero-logo{
  width:min(260px,70vw);
  filter: drop-shadow(0 2px 16px rgba(0,0,0,.35));
}

/* =========================
   Sections
========================= */
.section{ padding:56px 0; }

.section-title{
  margin:0 0 28px;
  font-size:22px;
  font-weight:500;
  text-align:center;
  letter-spacing:.06em;
}

.date{
  text-align:center;
  color: var(--accent);
  margin:0 0 6px;
  letter-spacing:.04em;
  font-weight:500;
  font-size: clamp(18px, 2.2vw, 26px);
}
.area{
  text-align:center;
  color: var(--accent);
  font-size:14px;
  margin:0;
}

/* =========================
   Concept（PCは縦組み）
========================= */
.concept-lead{
  margin: 0 0 18px;
  text-align: center;
  letter-spacing: .05em;
  line-height: 1.9;
  font-weight: 700;
  font-size: 18px;
}

@media (min-width: 1024px){
  .concept-vertical{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    inline-size: 640px;
    max-inline-size: 640px;
    margin: 0 auto;
    padding-top: 6px;
    line-height: 2.0;
    letter-spacing: 0.06em;
  }
  .concept-vertical .concept-lead{
    margin: 0 22px 0 0;
    text-align: start;
    font-size: 22px;
  }
  .concept-vertical p{
    margin: 0 22px 0 0;
  }
}

@media (max-width: 1023.98px){
  .concept-vertical{
    writing-mode: horizontal-tb;
  }
  .concept-vertical .concept-lead{
    font-size: 18px;
    text-align: center;
  }
  .concept-vertical p{
    margin: 0 0 18px;
  }
}

/* =========================
   Subsections（町見出し）
========================= */
.subsection-title{
  margin: 0 0 26px;
  width: 100%;
  display:block;
  text-align:center !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 20px;
}

/* =========================
   Cards Grid
========================= */
.card-grid{
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 768px){
  .card-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .card-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card{
  display: grid;
  gap: 16px;
  justify-items: center;
}

.card-media{
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(0,0,0,0.05);
  overflow: hidden;
  border-radius: var(--radius);
}

.card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-text{
  text-align: center;
  padding: 0 6px;
}

.card-katagaki{
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.card-name{
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =========================
   Map
========================= */
.map-box{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.map-box iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 600px){
  .map-box{ aspect-ratio: 4 / 3; }
}

/* =========================
   Footer（統一版：あなたの最終形）
   ※HTMLの footer に id="siteFooter" がある前提
========================= */
#siteFooter{
  background-color: #76BC39 !important;
  color: #111 !important;
  padding: 22px 0 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

#siteFooter,
#siteFooter p,
#siteFooter a,
#siteFooter nav{
  color: #111 !important;
}

/* フッター内のロゴ暴走対策 */
#siteFooter img{
  max-width: none !important;
  width: auto !important;
  height: auto !important;
}

#siteFooter .footer-inner{
  width: min(1200px, calc(100% - 160px)) !important; /* 左右80px */
  margin: 0 auto !important;
}

#siteFooter .footer-top{
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

#siteFooter .footer-logo{
  height: 32px !important;
  width: auto !important;
  display: block !important;
  flex: 0 0 auto !important;
}

#siteFooter .footer-contact{
  min-width: 0 !important;
}

#siteFooter .footer-contact p{
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: .01em !important;
  opacity: .95 !important;
}

#siteFooter .footer-bottom{
  margin-top: 12px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

#siteFooter .footer-copy{
  margin: 0 !important;
  font-size: 12px !important;
  opacity: .8 !important;
}

#siteFooter .footer-links{
  display: flex !important;
  gap: 18px !important;
  white-space: nowrap !important;
  margin-left: auto !important;
}

#siteFooter .footer-link{
  font-size: 12px !important;
  text-decoration: none !important;
  opacity: .85 !important;
}
#siteFooter .footer-link:hover{
  opacity: 1 !important;
  text-decoration: underline !important;
}

@media (max-width: 768px){
  #siteFooter .footer-inner{
    width: min(1200px, calc(100% - 40px)) !important; /* 左右20px */
  }
  #siteFooter .footer-top{
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  #siteFooter .footer-logo{
    height: 28px !important;
  }
  #siteFooter .footer-bottom{
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  #siteFooter .footer-links{
    white-space: normal !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
}

/* =========================
   Policy Pages (Site Policy / Privacy Policy)
========================= */
.policy{
  padding: 64px 0 96px;
}

.policy .container{
  width: min(var(--narrow), calc(100% - 48px));
}

.policy-header{
  margin: 0 0 44px;
  text-align: center;
}

.policy-header h1{
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.45;
}

.policy-header h1 span{
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .08em;
}

.policy-section{
  margin: 0 0 44px;
}

.policy-section h2{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .06em;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.policy p{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.95;
}

.policy a{
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy .note{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* 文章が長いページなのでスマホの余白を少し確保 */
@media (max-width: 600px){
  .policy{
    padding: 52px 0 84px;
  }
  .policy p{
    font-size: 14px;
  }
}

/* =========================
   Exhibitor Page (works/xxx.html)
========================= */
.exhibitor{
  padding-top: var(--header-h);
}

.ex-hero{
  position: relative;
}

.ex-hero-media{
  width: 100%;
  height: clamp(360px, 55vh, 560px);
  overflow: hidden;
}
.ex-hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ex-hero-inner{
  padding: 22px 0 34px;
}

.ex-breadcrumb{
  font-size: 12px;
  color: rgba(0,0,0,.65);
  letter-spacing: .04em;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}
.ex-breadcrumb a{ text-decoration: none; opacity: .9; }
.ex-breadcrumb a:hover{ text-decoration: underline; }

.ex-katagaki{
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .05em;
  font-weight: 600;
}

.ex-title{
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.25;
}

.ex-lead{
  margin: 0 0 14px;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.95;
}

.ex-tags{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ★タグ角丸：小さめに統一 */
.ex-tag{
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,.20);
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: .04em;
  background: rgba(255,255,255,.55);
}

.ex-body{
  padding: 22px 0 96px;
}

.ex-grid{
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 980px){
  .ex-grid{
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
  }
}

.ex-block{
  padding: 26px 0;
  border-top: 1px solid rgba(0,0,0,.12);
}
.ex-block:first-child{ border-top: none; padding-top: 0; }

.ex-h2{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .06em;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.ex-h3{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ===== 開催情報（ex-mini） ===== */
.ex-mini{
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.ex-mini-item{
  padding: 14px 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
  border-radius: 8px;
}
.ex-mini-item p{
  margin: 0;
  line-height: 1.85;
}

/* ===== ワークショップ：タイトル/詳細DL ===== */
.ex-ws-title{
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ワークショップDL：スマホで「会場」などが1文字落ちしない対策 */
.ex-ws-dl{
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.ex-ws-dl .ex-ws-row{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.14);
}
.ex-ws-dl .ex-ws-row:first-child{
  border-top: none;
  padding-top: 0;
}
.ex-ws-dl dt{
  flex: 0 0 4.5em;        /* dt幅固定 */
  white-space: nowrap;     /* 1文字落ち防止 */
  font-size: 12px;
  color: rgba(0,0,0,.70);
  letter-spacing: .06em;
}
.ex-ws-dl dd{
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}
.ex-ws-notes{
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 6px;
}

@media (max-width: 720px){
  .ex-ws-dl dt{
    flex-basis: 4em; /* スマホは少しだけ短く */
  }
}

/* ===== ギャラリー：スマホ1カラム → 600で2 → 720で3 ===== */
.ex-gallery{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr; /* スマホ：1カラム */
}

@media (min-width: 600px){
  .ex-gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px){
  .ex-gallery{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ★要望：ギャラリー写真は正方形 */
.ex-gallery img{
  width: 100%;
  aspect-ratio: 1 / 1;     /* ← 4/3 から正方形へ */
  object-fit: cover;
  border-radius: 8px;
  background: rgba(0,0,0,.05);
}

/* もしギャラリーが button.ex-thumb のままでも崩れない保険 */
.ex-thumb{
  appearance: none;
  border: none;
  padding: 0;
  background: transparent;
  cursor: default;      /* 拡大しないので pointer じゃなくてOK */
  border-radius: 8px;
  overflow: hidden;
}
.ex-thumb:focus{ outline: none; } /* ボタンが残っていても見た目を荒らさない */

/* ===== Side card（基本情報） ===== */
.ex-card{
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.02);
  border-radius: 10px;
  padding: 16px 16px;
}

@media (min-width: 980px){
  .ex-side{
    position: sticky;
    top: calc(var(--header-h) + 18px);
  }
}

.ex-side-title{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
}

.ex-dl{
  margin: 0;
  display: grid;
  gap: 10px;
}

.ex-dtdd{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed rgba(0,0,0,.14);

  grid-auto-rows: minmax(0, auto);
  align-items: start;
}
.ex-dtdd:first-child{ border-top: none; padding-top: 0; }

.ex-dl dt{
  font-size: 12px;
  color: rgba(0,0,0,.70);
  letter-spacing: .06em;

  grid-column: 1;
  grid-row: 1 / -1; /* ★複数ddの高さにまたがる */
  white-space: nowrap; /* ★dtの1文字落ち防止 */
}

.ex-dl dd{
  margin: 0;
  font-size: 13px;
  line-height: 1.75;

  grid-column: 2; /* ★複数ddも右列に固定 */
  min-width: 0;
}

/* ddが複数ある時、行間を少しだけ */
.ex-dtdd dd + dd{
  margin-top: 4px;
}

/* ★スマホ：左列が広すぎてズレるのを抑える */
@media (max-width: 520px){
  .ex-dtdd{
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }
}

/* ===== 参加日：日付と時間の離れを調整（★ここを書き換え） ===== */
.ex-days dd{
  display: flex;
  justify-content: flex-start; /* ← space-betweenをやめる */
  align-items: baseline;
  gap: 1.4em;                  /* ← 日付と時間の距離（1.2〜2.0emで調整OK） */
}
.ex-days .day,
.ex-days .time{
  white-space: nowrap;
}
.ex-days .time{
  color: rgba(0,0,0,.65);      /* 任意：時間を少し控えめに */
}

@media (max-width: 720px){
  .ex-days dd{
    flex-direction: column; /* スマホは縦積み */
    gap: 2px;
  }
}

/* ===== アイコン付きリンク ===== */
.ex-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.ex-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.16);
  background: rgba(255,255,255,0.65);
}
.ex-link:hover{
  text-decoration: none;
  background: rgba(255,255,255,0.9);
}
.ex-ico{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  opacity: .9;
}
.ex-link-text{
  font-size: 13px;
  letter-spacing: .04em;
}

/* dl内でリンクがはみ出す時の保険 */
.ex-dl a{
  word-break: break-word;
}

/* ===== CTA ===== */
.ex-cta{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.ex-btn{
  display: inline-block;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.22);
  background: #fff;
  text-decoration: none;
  letter-spacing: .05em;
  font-size: 13px;
}
.ex-btn:hover{
  text-decoration: none;
  background: rgba(255,255,255,.65);
}

/* ===== Lightboxは使わない（念のため完全無効） ===== */
.ex-lightbox{ display:none !important; }

/* =========================
   Workshop DL: フォントサイズ統一
========================= */

/* ラベル(dt)も本文(dd)も同じサイズに */
.ex-ws-dl dt,
.ex-ws-dl dd{
  font-size: 13px;      /* ← ここを 14px にしてもOK */
  line-height: 1.8;
}

/* strongが“サイズ感”を変えないようにする（太字だけ） */
.ex-ws-dl strong{
  font-weight: 600;
  font-size: inherit;
}

/* 注意事項リストも本文と同じサイズ感に */
.ex-ws-notes{
  font-size: inherit;
}
.ex-ws-notes li{
  font-size: inherit;
  line-height: 1.8;
}

/* （任意）「日時」内の・が小さく見える場合の調整 */
.ex-ws-dl dd{
  letter-spacing: .01em;
}

/* =========================
   Footer: mail + Instagram（icon only）
   ※ HTML側で class="footer-mail" / "footer-ig" / "footer-ig-ico" を付ける
========================= */

/* メールリンク（TELの横） */
#siteFooter .footer-mail{
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: .95;
}
#siteFooter .footer-mail:hover{
  opacity: 1;
}

/* Instagram：アイコンだけ表示 */
#siteFooter .footer-ig{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 6px 6px;                 /* クリック領域 */
  border-radius: 8px;
  text-decoration: none !important;
}
#siteFooter .footer-ig:hover{
  background: rgba(255,255,255,0.22);
  text-decoration: none !important;
}

/* アイコン */
#siteFooter .footer-ig-ico{
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  opacity: .9;
}
#siteFooter .footer-ig-ico svg{
  display: block;
}

/* 文字は出さない（HTMLに残っていてもOK） */
#siteFooter .footer-ig-text{
  display: none !important;
}
