  :root { --main:#4fc3f7; }

* { box-sizing: border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:#f6fbff;
  overflow-x:hidden;
}

/* ヘッダー */
.header{
  background:var(--main);
  color:#fff;
  padding:10px 12px;
}

.header-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.logo{
  margin:0;
  font-size:20px;
  font-weight:900;
}

.icon-btn{
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  padding:4px 6px;
  min-width:72px;
}

.icon-btn .icon{
  font-size:28px;
  font-weight:900;
  line-height:1;
}

.icon-btn .icon-label{
  font-size:12px;
  font-weight:900;
  line-height:1;
}

/* メニュー */
.menu{
  position:fixed;
  top:0; left:0;
  width:min(320px, 86vw);
  height:100%;
  background:#fff;
  padding:16px;
  border-right:3px solid var(--main);
  box-shadow: 2px 0 10px rgba(0,0,0,.08);
  z-index:1000;
}

.hidden{ display:none !important; }

.menu button{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border-radius:12px;
  border:none;
  background:var(--main);
  color:#fff;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}
.menu .ghost{
  background:#fff;
  color:#245;
  border:2px solid rgba(79,195,247,.75);
}

/* コンテナ */
.container{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* パネル */
.panel{
  background:#fff;
  border-radius:14px;
  padding:14px;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}

.panel-title{
  font-weight:900;
  color:#234;
  margin-bottom:10px;
}

/* 入力 */
input, textarea, select{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:2px solid rgba(79,195,247,.85);
  font-size:16px;
  background:#fff;
}

textarea{ min-height:160px; resize: vertical; }

.row{ margin-top:10px; }
.row-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.result-count{
  margin-left:auto;
  font-weight:900;
  color:#345;
}

/* ✅ チェック（左固定・縦崩れ防止） */
.checkbox-row{
  margin-top:10px;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  width:100%;
}

.checkbox-label{
  display:flex;
  align-items:center;
  gap:10px;
  width:auto;
  max-width:100%;
  color:#234;
  font-weight:900;
  white-space:nowrap;          /* 1文字ずつ縦に折れない */
}

.checkbox-label input{
  margin:0;
  flex:0 0 auto;
}

/* ✅ ジャンル（崩れないGrid版） */
.genres-title{
  font-weight:900;
  color:#234;
  margin-bottom:8px;
}

/* スマホは2列、タブレット以上は自動で増える */
.genres-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}

@media (min-width: 520px){
  .genres-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 860px){
  .genres-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ラベル＝横長の“ボタン”として安定 */
.genre-item{
  display:flex;
  align-items:center;
  gap:10px;

  width:100%;
  min-width:0;                 /* 省略を効かせる */
  padding:12px 12px;
  border-radius:16px;          /* 999pxやめて円化防止 */
  border:2px solid rgba(79,195,247,.45);
  background:#fff;

  font-weight:900;
  color:#234;

  /* 1文字ずつ縦折れ対策 */
  writing-mode: horizontal-tb;
}

.genre-item input{
  margin:0;
  flex:0 0 auto;
}

/* テキストは1行で省略（縦折れ防止） */
.genre-item span{
  display:block;
  min-width:0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* ボタン */
button{
  background:var(--main);
  color:#fff;
  border:none;
  padding:12px 14px;
  border-radius:12px;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}
button.ghost{
  background:#fff;
  color:#245;
  border:2px solid rgba(79,195,247,.75);
}

/* 投稿カード */
.post-card{
  background:#fff;
  padding:14px;
  border-radius:14px;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  cursor:pointer;
}
.post-card h3, .post-card h2{
  margin:0 0 6px;
  font-size:18px;
}
.meta{
  font-size:12px;
  color:#667;
  font-weight:800;
  margin-bottom:8px;
}
.post-text, .post-card p{
  margin:0;
  overflow-wrap:anywhere;
  word-break:break-word;
  white-space:normal;
}

/* タグ */
.tags{ display:flex; flex-wrap:wrap; gap:8px; margin:8px 0; }
.tag{
  padding:6px 10px;
  border-radius:999px;
  border:2px solid rgba(79,195,247,.35);
  font-weight:900;
  color:#234;
  background:#fff;
}

/* ページャー */
.pager-wrap{ padding: 6px 2px 0; }
.pager-info{
  text-align:center;
  color:#345;
  font-size:14px;
  font-weight:900;
  margin-bottom:10px;
}
.pager{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom: 6px;
}
.pager-btn{
  border:none;
  background:#fff;
  border:2px solid rgba(79,195,247,.55);
  color:#245;
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
  cursor:pointer;
  min-width:44px;
}
.pager-btn.is-active{
  background: var(--main);
  color:#fff;
  border-color: var(--main);
}
.pager-btn:disabled{ opacity:.45; cursor:not-allowed; }
.pager-dots{ font-weight:900; color:#456; padding:0 6px; }

/* ===== コメント（2段フラット） ===== */
.comment-root{
  margin-top:12px;
  background:#fff;
  border-radius:14px;
  padding:14px;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}

.comment-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:12px;
}

.avatar{
  /* width:46px; */
  height:46px;
  border-radius:999px;
  /* background:#d94b4b; */
  flex:0 0 auto;
}

.c-body{ flex:1; min-width:0; }
.c-user{ font-weight:900; color:#222; margin-bottom:6px; }
.c-text{
  font-size:17px;
  color:#222;
  overflow-wrap:anywhere;
  word-break:break-word;
  white-space:normal;
}
.c-actions{ margin-top:8px; display:flex; gap:10px; align-items:center; }
.reply-btn{
  background:none;
  border:none;
  color:#345;
  font-weight:900;
  cursor:pointer;
  padding:0;
}

/* 子コメント（最大1段の見た目） */
.child-wrap{
  margin-left: 18px;
  padding-left: 12px;
  border-left: 3px solid rgba(0,0,0,.12);
}

/* 折りたたみボタン（ルートだけ） */
.reply-toggle-row{ margin-top:10px; margin-left:56px; }
.reply-toggle-btn{
  border:none;
  background: var(--main);
  color:#fff;
  font-weight:900;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
}

/* インライン返信フォーム（縮まない） */
.inline-reply{
  margin-top:10px;
  width:100%;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.inline-reply textarea{ min-height:160px; }
.inline-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:nowrap;
}
.cancel-inline{
  background:#fff;
  color:#245;
  border:2px solid rgba(79,195,247,.75);
  border-radius:999px;
  font-weight:900;
  padding:12px 14px;
  cursor:pointer;
  white-space:nowrap;
  min-width:110px;
}
.send-inline{
  border-radius:999px;
  font-weight:900;
  white-space:nowrap;
  min-width:110px;
}

@media (max-width:420px){
  .inline-actions{ justify-content:space-between; }
  .cancel-inline,.send-inline{ min-width:48%; }
}
/* ====== FIX: checkbox系が width:100% に巻き込まれて崩れるのを防ぐ ====== */

/* checkbox/radio は幅100%にしない */
input[type="checkbox"],
input[type="radio"]{
  width:auto !important;
  height:auto !important;
  padding:0 !important;
  border-radius:6px;
}

/* ジャンルのラベル内：チェック＋文字を必ず横並び */
.genre-item{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:10px !important;
  width:100% !important;
  min-height:52px;
}

/* 文字が消えてる対策：spanを必ず表示 */
.genre-item span{
  display:block !important;
  color:#234 !important;
  font-weight:900 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}

/* 「コメントを受け取らない」を左に固定＆下に落ちない */
.checkbox-row{
  display:flex !important;
  justify-content:flex-start !important;
  align-items:center !important;
  width:100% !important;
}

.checkbox-label{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  white-space:nowrap !important;
  width:auto !important;
}

/* スマホでジャンルが2列で揃うように固定 */
.genres-grid{
  display:grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap:12px !important;
}

/* 文字が縦に割れるのを強制停止 */
.genre-item,
.checkbox-label{
  writing-mode: horizontal-tb !important;
}
/* コメントを受け取らない と シェアボタンの間隔を確保 */

.checkbox-row{
  margin-bottom: 18px !important; /* ボタンと距離を作る */
}

.checkbox-label{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
}

/* シェアボタンを少し下に固定 */
.share-button,
button[type="submit"]{
  margin-top: 6px !important;
}
/* タイトルと内容の間に余白を追加 */
input[type="text"]{
  margin-bottom: 6px;
}

textarea{
  margin-top: 6px;
}
/* ジャンル選択ボタン修正 */
.genre-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* 各ジャンルボタン */
.genre-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid #9bd7ff;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  min-height: 56px;
}

/* チェックボックス */
.genre-item input{
  flex-shrink: 0;
}

/* テキスト（省略を解除＆折り返しOK） */
.genre-item span{
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-break: break-word;
  font-size: 15px;
  line-height: 1.4;
}
/* ===== コメント入力欄を「今の気持ち」くらい大きく & 縮まない ===== */

/* 返信フォーム全体：どの階層でも幅100%で固定 */
.reply-form{
  width: 100% !important;
  max-width: 100% !important;
  margin: 12px 0 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
/* ===============================
   返信フォームが細く潰れて縦になるバグ修正
   =============================== */

/* コメント1件が flex の場合、折り返し可能にして body が縮みすぎないようにする */
.comment-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;           /* ←これ重要 */
}

.comment-item .c-body{
  flex: 1 1 0;
  min-width: 0;              /* ←長文で横幅計算が壊れるのを防ぐ */
}

/* コメント本文はどんな文字列でも折り返す（長い連続文字対策） */
.c-text{
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 返信フォームは常に「横幅100%」で表示（潰れない） */
.reply-form{
  flex: 1 1 100%;
  width: 100% !important;
  max-width: 100% !important;
  margin: 12px 0 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* 返信入力欄は「今の気持ちを書く欄」くらい大きく */
.reply-form textarea{
  width: 100% !important;
  min-height: 160px !important;
  padding: 10px !important;
  border-radius: 12px !important;
  border: 2px solid var(--main) !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  resize: vertical;
}

/* 送信/キャンセルは横並びで崩れない */
.reply-actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 10px;
}
/* ===== Auth Modal (安全：既存と衝突しないクラス名) ===== */
.auth-modal.hidden{ display:none !important; }
.auth-modal{ position:fixed; inset:0; z-index:3000; }
.auth-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.35); }

.auth-card{
  position:relative;
  width:min(520px, calc(100vw - 24px));
  margin:14vh auto 0;
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 12px 40px rgba(0,0,0,.25);
}

.auth-title{ font-weight:900; font-size:18px; color:#123; margin-bottom:12px; }
.auth-card input{
  width:100%;
  margin-top:10px;
  padding:10px;
  border-radius:10px;
  border:2px solid var(--main);
  font-size:16px;
  box-sizing:border-box;
}

.auth-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.auth-msg{ margin-top:10px; color:#c00; font-weight:800; min-height:1.2em; }
/* ログイン状態表示（崩れにくい） */
.auth-status{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 45vw;
}

@media (max-width: 520px){
  .auth-status{ max-width: 55vw; }
}

/* メニュー内に置いた場合でも読めるように */
.menu .auth-status{
  background: #e8f6ff;
  color: #123;
  border: 2px solid var(--main);
  max-width: 100%;
}

/* マイページ：自分の投稿カードを押せる見た目に */
.card-click { cursor: pointer; }
.card-click:active { transform: scale(0.99); }

/* hidden が無ければ追加（既にあれば不要） */
.hidden { display: none; }

.myPostsList { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }

.subTitle { margin: 0 0 8px; font-size: 16px; font-weight: 800; }

/* 長文がはみ出ないように（投稿一覧のカード内） */
.myPostsList h4, .myPostsList p { overflow-wrap: anywhere; word-break: break-word; }
/* ✅ マイページのボタンが押せない原因(重なり)対策 */
button, a {
  pointer-events: auto;
}

.mypage button,
.mypage a {
  position: relative;
  z-index: 5;
}

/* もしカード全体をクリックできるようにしてるなら、ボタンだけ前面に */
.mypage .card {
  position: relative;
}
/* ===== マイページ系 共通レイアウト（mypage / myposts で使う） ===== */
.mypage-wrap{
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

/* “カード”の見た目を統一 */
.mypage-card{
  background:#fff;
  border-radius:16px;
  padding:18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  margin-bottom: 16px;
}

.mypage-title{
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 800;
}

.mypage-muted{
  color:#7a7a7a;
  font-size: 14px;
  line-height: 1.5;
}

/* 一覧の中のカード（投稿カードを並べる箱） */
.mypage-list{
  display: grid;
  gap: 12px;
}
/* ===== myposts のヘッダーだけサイズを整える ===== */


.myposts-page .header-bar{
  height: 64px;          /* ←ここで“ヘッダーの高さ”を固定 */
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.myposts-page .back-btn{
  width: 44px;
  height: 44px;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.myposts-page .header-center{
  flex: 1;
  text-align: center;
  pointer-events: none;  /* 真ん中がクリックの邪魔しない */
}

.myposts-page .header-center h1{
  margin: 0;
  font-size: 26px;       /* タイトルの大きさ */
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .02em;
}

.myposts-page .header-right{
  width: 44px;           /* 左の戻るボタンと幅を揃えて中央をキープ */
  height: 44px;
}
/* ===== myposts only pager (超安全版) ===== */
.mp-pagerArea{
  margin: 14px 0 18px;
  text-align: center;
}

.mp-pagerInfo{
  font-weight: 700;
  color: #2b3a42;
  margin-bottom: 10px;
}

.mp-pager{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mp-pager button{
  appearance: none;
  border: 3px solid rgba(110, 200, 240, 0.55);
  background: #ffffff;
  color: #2b3a42;
  border-radius: 18px;
  padding: 8px 4px;
  min-width: 78px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.mp-pager button.mp-num{ min-width: 64px; }

.mp-pager button.mp-active{
  background: #56bff0;
  border-color: #56bff0;
  color: #fff;
}

.mp-pager button:disabled{
  opacity: 0.45;
  box-shadow: none;
}
/* mypostsの削除ボタン（既存を壊さない追記） */
.post-card .del-btn{
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 16px;
  font-weight: 800;
}
/* お気に入りボタン：枠なし・背景なし */
.fav-btn{
  position:absolute;
  top:13px;
  right:0px;
  z-index:5;

  /* 枠を消す */
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;

  /* 余計な四角を消す */
  padding: 0;
  line-height: 0;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* アイコンサイズ（少し大きめ） */
.fav-btn svg{
  width: 30px;     /* ← ここを 24→26 にして少し大きく */
  height: 26px;
  display:block;
}

/* OFF：白（塗りなし）＋外枠は青 */
.fav-btn svg path{
  fill: none;
  stroke: #79BFEA;     /* ココシェアの青寄せ */
  stroke-width: 2;
  stroke-linejoin: round;
}

/* ON：黄色（塗りあり）＋黄色部分をほんの少し大きく */
.fav-btn.is-on svg,
.fav-btn.is-fav svg{   /* どっちのクラスでも効くように両対応 */     /* ← 黄色をほんの少し大きく */
  transform-origin: center;
}

.fav-btn.is-on svg path,
.fav-btn.is-fav svg path{
  fill: #F3C12F;          /* 黄色 */
  stroke: #D7A300;        /* 黄色の縁（好みで none でもOK） */
}

/* ===== お気に入り用：自分の投稿ヘッダー風 ===== */
.simple-header{
  /* ✅ 固定しない */
  position: relative;   /* または position: static; でもOK */
  top: auto;
  z-index: auto;

  height: calc(64px + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);

  background: #56BEEB;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ✅ タイトル中央 */
.simple-title{
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 26px;      /* 文字を中央で大きめ */
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ✅ 戻るボタンを大きく（押しやすく） */
.simple-back{
  position: absolute;
  left: 14px;
  top: calc(env(safe-area-inset-top) + 50%);
  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-back-icon{
  font-size: 26px;  /* 矢印を大きく */
  line-height: 1;
  font-weight: 900;
}
.panel .panel-sub{
  font-size: 13px;
  font-weight: 330;
  color: #1e1d1d;
  margin-top: 10px;
}
/* ===== 共通：ヘッダー（お問い合わせも他ページと同じ） ===== */
.app-header{
  position: relative;
  z-index: 1;

  /* iPhoneのノッチ対応 */
  padding-top: env(safe-area-inset-top);

  height: calc(56px + env(safe-area-inset-top));
  background: #57C7F4;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 戻るボタン（左・大きく） */
.header-back{
  position: absolute;
  left: 12px;
  top: env(safe-area-inset-top);
  height: 56px;

  display: flex;
  align-items: center;
  gap: 6px;

  background: transparent;
  border: none;
  color: #fff;
  font-weight: 800;
  font-size: 26px; /* ←矢印を大きく */
  padding: 0 6px;
  cursor: pointer;
}


/* タイトル（中央） */
.header-title{
  height: 56px;
  margin-top: env(safe-area-inset-top);

  display: flex;
  align-items: center;

  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
}

/* ===== 利用規約ページ専用ヘッダー ===== */
.app-header.terms-header{
  position: relative;        /* 固定しない */
  height: 80px;              /* ← 高さをプラス（好みで 80〜96） */
  background: #63c7ff;       /* いつもの水色に合わせる */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 中央ロゴ（白・大きく） */
.app-header.terms-header .terms-logo{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 800;
  font-size: 24px;           /* ← ロゴ大きさ（好みで 22〜28） */
  letter-spacing: 0.04em;
}

/* 戻るボタン（左・大きく・枠なし） */
.app-header.terms-header .terms-back{
  position: absolute;
  left: 14px;
  top: 12px;
  background: transparent;
  border: none;              /* ← 青い枠（border）消す */
  box-shadow: none;          /* ← 影も消す */
  padding: 10px 12px;
  font-size: 28px;           /* ← 大きく */
  font-weight: 900;
  color: #fff;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* iOSのタップ時の変なハイライト軽減 */
.app-header.terms-header .terms-back{
  -webkit-tap-highlight-color: transparent;
}

/* キーボード操作の時だけ控えめに見えるフォーカス（青枠じゃない） */
.app-header.terms-header .terms-back:focus{
  outline: none;
}
.app-header.terms-header .terms-back:focus-visible{
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 2px;
  border-radius: 10px;
}

/* ===== Terms Page ===== */
.terms-wrap{
  max-width: 900px;
  margin: 16px auto 40px;
  padding: 0 14px;
}

.terms-card{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  padding: 18px 16px;
}

.terms-title{
  font-size: 22px;
  margin: 6px 0 14px;
}

.terms-card h2{
  font-size: 16px;
  margin: 18px 0 10px;
  padding-left: 10px;
  border-left: 4px solid rgba(0,0,0,0.15);
}

.terms-card p,
.terms-card li{
  line-height: 1.8;
  font-size: 15px;
}

.terms-card ol,
.terms-card ul{
  padding-left: 1.2em;
  margin: 8px 0 12px;
}

.terms-note{
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== 投稿フォーム前の紹介文 ===== */
.intro-panel{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  padding: 14px 14px;
  margin: 14px 0 14px;
}

.intro-title{
  font-size: 18px;
  margin: 2px 0 8px;
  font-weight: 700;
}

.intro-text{
  margin: 0 0 8px;
  line-height: 1.7;
  font-size: 14px;
}

.intro-note{
  margin: 0;
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.6;
}
