@charset "UTF-8";
/* ==========================================================================
   TSUMUGU WRITERS — ライター募集ページ(/writers/)専用のスタイル一式。

   サービスサイト側の /style.css からは完全に独立している(読み込まない)。
   配色・タイポの基準は /style.css と揃えているが、こちらを編集しても
   トップ・下層サービスページには影響しない。逆も同様。
   FLOW帯(.flow-band)とFAQ(.faq-card)は /style.css から見た目をそのまま
   写したもので、意図的な複製。サービス側の変更は自動では反映されない。
   ========================================================================== */

/* Montserrat(可変フォント)はセルフホスト。サイト共通の /assets/fonts/ を絶対パスで参照
   (フォントファイルはCSSと違い差分が出ないため、サービス側と共用している)。
   Google Fonts へのリクエストを1つ減らす(日本語のNoto Sans JPは引き続きGoogle Fontsから読み込み)。
   ライセンス: SIL Open Font License 1.1(/assets/fonts/OFL.txt) */
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-variable.woff2") format("woff2-variations"),
       url("/assets/fonts/montserrat-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-italic-variable.woff2") format("woff2-variations"),
       url("/assets/fonts/montserrat-italic-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #16406B;
  --navy-2: #1D5A8F;
  --gold: #C9973C;
  --gold-text: #B07F2E;
  --ink: #16222B;
  --gray: #4E6478;
  --line: #E3E9EC;
  --paper: #FFFFFF;
  /* Montserratを先頭に置き、英数字はMontserrat・日本語はNoto Sans JPに自動フォールバック */
  --sans: "Montserrat", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --fs-body: 16px;
}

/* ---------- リセット / 基本 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 1280px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.inner--wide { max-width: 1200px; }
.inner--narrow { max-width: 900px; }

.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;
}

/* ---------- 汎用の見出し ---------- */
.sec-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-text);
  margin-bottom: 12px;
}
.sec-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(22, 64, 107, 0.25); }
.btn--navy:hover { background: #1D5288; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #A67C2F; }

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.wr-gnav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 84px; background: #fff; border-bottom: 1px solid #EEF1F5;
}
.wr-gnav__brand { display: flex; flex-direction: column; }
.wr-gnav__word { font-size: 21px; font-weight: 700; letter-spacing: 0.1em; color: var(--navy); line-height: 1.3; }
.wr-gnav__word span { color: var(--gold); }
.wr-gnav__tag { font-size: 11px; color: var(--gold-text); font-weight: 700; letter-spacing: 0.04em; }
.wr-gnav__links { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 500; color: #42566B; }
.wr-gnav__links a:hover { color: var(--navy-2); }
.wr-gnav__cta {
  background: var(--gold); color: #fff; padding: 14px 32px; border-radius: 999px;
  font-size: 14.5px; font-weight: 700; box-shadow: 0 8px 20px rgba(201, 151, 60, 0.3);
  transition: background 0.2s;
}
.wr-gnav__cta:hover { background: #A67C2F; color: #fff; }

/* ==========================================================================
   セクション共通
   ========================================================================== */
.wr-sec { padding: 90px 0 96px; background: #fff; }
.wr-band {
  position: relative; overflow: hidden; padding: 88px 0 92px;
  background: linear-gradient(100deg, #FAF1DE 0%, #F5F6F5 45%, #E0EBF7 100%);
}

/* 番号付きの見出し(01 / 02 …) */
.wr-head {
  display: flex; align-items: flex-end; gap: 18px;
  margin-bottom: 42px; padding-bottom: 18px; border-bottom: 1.5px solid #EEF1F5;
}
.wr-head__num { font-size: 40px; font-weight: 700; color: #E2E9F0; line-height: 1; }
.wr-head__body { display: flex; flex-direction: column; gap: 6px; }
.wr-head .sec-label { text-align: left; margin-bottom: 0; }
.wr-head h2 { font-size: 30px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink); line-height: 1.5; }
.wr-head__bar { margin-left: auto; width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin-bottom: 8px; }
.wr-head--tint { border-bottom-color: rgba(22, 64, 107, 0.12); }
.wr-head--tint .wr-head__num { color: rgba(22, 64, 107, 0.16); }
.wr-head--navy { border-bottom-color: rgba(255, 255, 255, 0.18); margin-bottom: 46px; }
.wr-head--navy .wr-head__num { color: rgba(255, 255, 255, 0.3); }
.wr-head--navy h2 { color: #fff; }
.wr-head--navy .sec-label { color: #F0CC7E; }

/* ==========================================================================
   ヒーロー
   ========================================================================== */
.wr-hero {
  position: relative; overflow: hidden; background: #FBF8F1;
  padding-bottom: 76px; border-bottom: 1px solid #EFE9DB;
}
.wr-hero__grid {
  position: relative; max-width: 1160px; margin: 0 auto; padding: 64px 24px 0;
  display: grid; grid-template-columns: 110px 1fr 360px; gap: 44px; align-items: center;
}

/* 縦書きコピー「言葉を、つむぐ。」
   金の縦線を ::after で描画し、上から伸びるアニメーションを付ける。
   ::before は線の上を流れる光のハイライト。文字は1文字ずつ遅れて現れる
   (index.php 側で1文字ずつ<span>に分割し --i を渡している)。 */
.wr-hero__vertical {
  position: relative;
  writing-mode: vertical-rl; font-size: 30px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.3em; line-height: 1.4;
  padding-right: 22px; height: 320px;
}
.wr-hero__vertical::after {
  content: ""; position: absolute; top: 0; right: 0; width: 2px; height: 100%;
  background: var(--gold); transform: scaleY(0); transform-origin: top center;
  animation: wr-line-draw 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.15s forwards;
}
.wr-hero__vertical::before {
  content: ""; position: absolute; top: 0; right: 0; width: 2px; height: 72px;
  background: linear-gradient(to bottom, rgba(240, 204, 126, 0), #F5DFA6, rgba(240, 204, 126, 0));
  opacity: 0; animation: wr-line-glow 4.6s ease-in-out 1.6s infinite;
}
.wr-hero__vertical span {
  display: inline-block; opacity: 0;
  animation: wr-char-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.5s + var(--i) * 0.09s);
}
@keyframes wr-line-draw {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes wr-line-glow {
  0% { opacity: 0; transform: translateY(-72px); }
  12% { opacity: 1; }
  55% { opacity: 1; }
  70%, 100% { opacity: 0; transform: translateY(320px); }
}
@keyframes wr-char-in {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .wr-hero__vertical::after { animation: none; transform: scaleY(1); }
  .wr-hero__vertical::before { animation: none; opacity: 0; }
  .wr-hero__vertical span { animation: none; opacity: 1; }
}

.wr-hero__body { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.wr-hero__logo {
  display: flex; flex-direction: column; color: var(--navy);
  font-weight: 700; line-height: 1.06; letter-spacing: 0.03em;
}
.wr-hero__logo span { font-size: 72px; }
.wr-hero__logo span:last-child { color: var(--gold); }
.wr-hero h1 { font-size: 22px; line-height: 1.75; font-weight: 700; color: #16324E; }
.wr-hero__note { font-size: 13px; color: #8A7A5C; }
.wr-hero__photo {
  height: 400px; border-radius: 200px 200px 10px 10px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(22, 64, 107, 0.18);
}
.wr-hero__photo img { width: 100%; height: 100%; object-fit: cover; }

/* 登録フォーム(ヒーロー内・縦積み) */
.wr-entryform { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 460px; margin-top: 6px; }
.wr-entryform input {
  height: 56px; border-radius: 999px; border: 1.5px solid #E3DCC9;
  padding: 0 24px; font-size: 15px; font-family: inherit; background: #fff;
}
.wr-entryform input:focus { outline: none; border-color: var(--gold); }
.wr-entryform__btn { width: 100%; justify-content: center; padding: 17px 0; border: 0; }

/* ==========================================================================
   ABOUT / リード
   ========================================================================== */
.wr-about { max-width: 940px; margin: 0 auto; padding: 84px 40px 0; text-align: center; }
.wr-about__body { max-width: 62ch; margin: 0 auto; text-align: left; }
.wr-about__body p { font-size: var(--fs-body); line-height: 2.3; color: var(--gray); }
.wr-about__body p + p { margin-top: 22px; }
.wr-about__body strong { color: var(--navy); font-weight: 700; }
.wr-lead { max-width: 940px; margin: 0 auto; padding: 40px 40px 88px; }
.wr-lead p { font-size: var(--fs-body); line-height: 2.3; color: var(--gray); max-width: 62ch; margin: 0 auto; }

/* ==========================================================================
   募集するライター像
   ========================================================================== */
.wr-types { display: flex; flex-direction: column; gap: 28px; }
.wr-type {
  position: relative;
  display: grid; grid-template-columns: 380px 1fr; align-items: stretch;
  min-height: 340px; /* 3枚の縦幅を揃える(本文量が少ないカードも同じ高さに) */
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(22, 64, 107, 0.08);
}
/* インタビューライター: 募集強化中を訴求するため金枠で強調 */
.wr-type--featured { border: 2px solid var(--gold); box-shadow: 0 14px 34px rgba(201, 151, 60, 0.22); }
.wr-type__title { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.wr-type__badge {
  display: inline-block;
  background: #ff4040; color: #fff;
  font-size: 16px; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 15px; border-radius: 999px 999px 999px 4px;
}
.wr-type__photo { position: relative; min-height: 240px; }
.wr-type__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wr-type__body { padding: 36px 42px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.wr-type__body h3 { font-size: 22px; font-weight: 700; color: #16324E; line-height: 1.6; }
.wr-type__rule { width: 36px; height: 3px; background: var(--gold); border-radius: 2px; }
.wr-type__body p { font-size: 15px; line-height: 2.1; color: var(--gray); }
.wr-type__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wr-type__tags li {
  background: #F7FAFD; border: 1px solid #E7ECF2; color: #42566B;
  border-radius: 999px; padding: 7px 13px; font-size: 12.5px; font-weight: 700;
}

/* ==========================================================================
   3つの魅力
   ========================================================================== */
.wr-merits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.wr-merit {
  border: 1.5px solid #E7ECF2; border-radius: 10px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px; transition: border-color 0.2s, box-shadow 0.2s;
}
.wr-merit:hover { border-color: var(--gold); box-shadow: 0 14px 36px rgba(22, 64, 107, 0.1); }
.wr-merit__num { font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; }
.wr-merit h3 { font-size: 22px; font-weight: 700; color: var(--ink); }
.wr-merit p { font-size: 15px; line-height: 2.1; color: var(--gray); }

/* ==========================================================================
   報酬システム
   ========================================================================== */
.wr-reward { display: grid; grid-template-columns: 1fr 440px; gap: 32px; align-items: start; }
.wr-reward__note {
  background: #fff; border-radius: 10px; padding: 38px 40px;
  box-shadow: 0 6px 20px rgba(22, 64, 107, 0.06);
  display: flex; flex-direction: column; gap: 18px;
}
.wr-reward__note p { font-size: 15.5px; line-height: 2.2; color: var(--gray); }
.wr-reward__note strong { color: var(--navy); font-weight: 700; }
.wr-reward__ex { display: flex; flex-direction: column; gap: 16px; }
.wr-reward__ex-label { font-size: 14px; font-weight: 700; color: #8A7A5C; letter-spacing: 0.08em; }
.wr-reward__ex-label span { font-weight: 500; }
.wr-reward__card {
  background: #fff; border-radius: 10px; padding: 26px 28px;
  box-shadow: 0 6px 20px rgba(22, 64, 107, 0.06);
  display: flex; flex-direction: column; gap: 12px;
}
.wr-reward__card--gold { border: 1.5px solid var(--gold); }
.wr-reward__tag {
  align-self: flex-start; background: #EEF4FA; color: var(--navy);
  border-radius: 999px; padding: 7px 15px; font-size: 13px; font-weight: 700;
}
.wr-reward__tag--gold { background: #FAF1DE; color: var(--gold-text); }
.wr-reward__card p { font-size: 14.5px; line-height: 1.9; color: var(--gray); }
.wr-reward__sum {
  border-top: 1px dashed #E2E9F0; padding-top: 12px;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.wr-reward__sum-label { font-size: 13px; font-weight: 700; color: #8FA0B2; }
.wr-reward__price { font-size: 26px; font-weight: 700; color: var(--navy); }
.wr-reward__price span { font-size: 15px; }
.wr-reward__sum-note { font-size: 13px; color: #8FA0B2; }

/* ==========================================================================
   対応ジャンル
   ========================================================================== */
.wr-cat__lead { font-size: 15.5px; line-height: 2.1; color: var(--gray); margin-bottom: 34px; }
.wr-cat-money {
  position: relative; overflow: hidden; border-radius: 10px; padding: 48px 50px;
  margin-bottom: 24px; color: #fff;
  background: linear-gradient(120deg, #16406B 0%, #123A5F 100%);
}
.wr-cat-money__deco { position: absolute; right: -60px; top: -40px; width: 400px; height: 240px; opacity: 0.35; }
.wr-cat-money__body { position: relative; display: flex; flex-direction: column; gap: 20px; }
.wr-cat-money__head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.wr-cat-money__pill {
  background: var(--gold); color: #fff; border-radius: 999px;
  padding: 8px 20px; font-size: 13.5px; font-weight: 700; letter-spacing: 0.1em;
}
.wr-cat-money h3 { font-size: 26px; font-weight: 700; }
.wr-cat-money__tags { display: flex; flex-wrap: wrap; gap: 12px; }
.wr-cat-money__tags li {
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px; padding: 12px 24px; font-size: 15.5px; font-weight: 700;
}
.wr-cat-money__note { font-size: 14px; color: #B6C8D9; }

.wr-cat-biz {
  border: 1.5px solid #E7ECF2; border-radius: 10px; padding: 40px 46px;
  display: flex; flex-direction: column; gap: 22px; margin-bottom: 24px;
}
.wr-cat-biz h3 { font-size: 21px; font-weight: 700; color: var(--navy); }
.wr-cat-biz__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; }
.wr-cat-biz__row {
  display: grid; grid-template-columns: 200px 1fr; gap: 16px; align-items: start;
  padding: 14px 0; border-bottom: 1px solid #EEF1F5;
}
.wr-cat-biz__name { font-size: 15px; font-weight: 700; color: var(--navy); }
.wr-cat-biz__desc { font-size: 14px; line-height: 1.9; color: #5D6A78; }
.wr-cat-biz__note { font-size: 14px; color: #8FA0B2; }

.wr-cat-other {
  background: #F7FAFD; border: 1px solid #E7ECF2; border-radius: 10px;
  padding: 26px 30px; display: flex; flex-direction: column; gap: 10px;
}
.wr-cat-other h3 { font-size: 16px; font-weight: 700; color: #42566B; }
.wr-cat-other p { font-size: 14px; line-height: 2; color: #5D6A78; }
.wr-cat__notes {
  margin-top: 22px; display: flex; flex-direction: column; gap: 6px;
  font-size: 13.5px; line-height: 1.9; color: #8FA0B2;
}

/* ==========================================================================
   FLOW(紺グラデ帯の縦型タイムライン・上下に波)
   ※ サービスサイト側 /style.css の .flow-band 一式を複製したもの
   ========================================================================== */
.flow-band {
  position: relative;
  background: linear-gradient(150deg, #1D5288 0%, var(--navy) 48%, #0D2A4A 100%);
  color: #fff; overflow: hidden;
}
.flow-band__wave { display: block; width: 100%; }
.flow-band__wave--top { margin-top: -1px; }
.flow-band__wave--bottom { margin-bottom: -1px; }
.flow-band__body { max-width: 800px; margin: 0 auto; padding: 40px 24px 80px; }
.flow-timeline { display: flex; flex-direction: column; margin-top: 48px; }
.flow-node { display: grid; grid-template-columns: 60px 1fr; gap: 26px; }
.flow-node__rail { display: flex; flex-direction: column; align-items: center; }
.flow-node__badge {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: #fff; color: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.flow-node__badge span:first-child { font-size: 9.5px; letter-spacing: 0.12em; font-weight: 700; color: #7F95AB; }
.flow-node__badge span:last-child { font-size: 20px; font-weight: 700; line-height: 1.1; }
.flow-node__badge--gold { background: var(--gold); color: #fff; }
.flow-node__badge--gold span:first-child { color: #F2E3C2; }
.flow-node__line { flex: 1; width: 2px; background: rgba(255, 255, 255, 0.22); min-height: 26px; }
.flow-node__body { padding-bottom: 30px; }
.flow-node:last-child .flow-node__body { padding-bottom: 0; }
.flow-node__body h3 { font-size: 19px; font-weight: 700; margin: 4px 0 10px; display: flex; align-items: center; gap: 12px; }
.flow-node__body p { font-size: 14.5px; line-height: 2; color: #C3D4E4; }

/* ==========================================================================
   FAQ(Q/Aバッジ付きカード)
   ※ サービスサイト側 /style.css の .faq-card 一式を複製したもの
   ========================================================================== */
.faq-cards { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-card {
  border: 1.5px solid #E7ECF2; border-radius: 10px;
  padding: 24px 28px; display: flex; flex-direction: column; gap: 14px;
}
.faq-card__row { display: grid; grid-template-columns: 34px 1fr; gap: 14px; }
.faq-card__row--q { align-items: center; }
.faq-card__row--a { align-items: start; }
.faq-card__badge {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}
.faq-card__badge--q { background: var(--navy); color: #fff; }
.faq-card__badge--a { background: #FAF1DE; color: var(--gold-text); }
.faq-card h3 { font-size: 16.5px; font-weight: 700; color: var(--navy); line-height: 1.6; }
.faq-card p { font-size: 14px; line-height: 2.05; color: var(--gray); }

/* ==========================================================================
   登録(ENTRY)
   ========================================================================== */
.wr-entry {
  position: relative; overflow: hidden; padding: 80px 0 84px;
  background: linear-gradient(120deg, #EEF4FA 0%, #EAF1F9 55%, #F6EFE0 100%);
}
.wr-entry__deco { position: absolute; right: -100px; top: -40px; width: 600px; height: 440px; opacity: 0.5; }
.wr-entry__body {
  position: relative; max-width: 760px; margin: 0 auto; padding: 0 24px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.wr-entry h2 { font-size: 30px; font-weight: 700; letter-spacing: 0.06em; color: var(--ink); }
.wr-entry__lead { font-size: 15px; line-height: 2; color: var(--gray); }
.wr-entry__form { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
.wr-entry__form input {
  height: 58px; width: 360px; max-width: 100%; border-radius: 999px;
  border: 1.5px solid #DFE6EE; padding: 0 26px; font-size: 15.5px;
  font-family: inherit; background: #fff;
}
.wr-entry__form input:focus { outline: none; border-color: var(--gold); }
.wr-entry__btn { padding: 18px 44px; border: 0; box-shadow: 0 10px 26px rgba(201, 151, 60, 0.32); }
.wr-entry__note { margin-top: 14px; font-size: 13.5px; line-height: 1.9; color: #8FA0B2; }

/* ==========================================================================
   登録フォーム(初期登録の確認・完了 / プロフィール登録の入力・確認・完了)
   ========================================================================== */
.wr-form { max-width: 760px; }
.wr-form .sec-label { text-align: center; }
.wr-form .sec-title { font-size: 30px; margin-bottom: 20px; }
.wr-form__lead { font-size: 15px; line-height: 2.1; color: var(--gray); text-align: center; margin-bottom: 32px; }
.wr-form__lead a { color: var(--gold-text); font-weight: 700; text-decoration: underline; }
.wr-form__req-note { font-size: 13px; color: #8FA0B2; margin-bottom: 24px; }
.wr-form__note { text-align: center; font-size: 13px; color: #8FA0B2; margin-top: 16px; }
.wr-form__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.wr-form__actions .btn { border: 0; }
.wr-form__actions .btn--outline {
  background: #fff; color: var(--navy); border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(22, 64, 107, 0.08);
}
.wr-form__actions .btn--outline:hover { border-color: var(--navy); }

.wr-form__errors {
  background: #FDF3F3; border: 1px solid #F0D4D6; border-radius: 10px;
  padding: 20px 24px; color: #B4232A; font-size: 14.5px; line-height: 1.9;
}
.wr-form__errors li { position: relative; padding-left: 20px; }
.wr-form__errors li::before { content: "!"; position: absolute; left: 6px; font-weight: 700; }

.wr-form__notice {
  background: #F7FAFD; border: 1px solid #E7ECF2; border-radius: 10px;
  padding: 22px 26px; margin-top: 24px;
}
.wr-form__notice p { font-size: 14px; line-height: 2; color: #5D6A78; }
.wr-form__notice strong { color: var(--navy); font-weight: 700; }

/* 入力項目 */
.wr-field { margin-bottom: 26px; }
.wr-field label, .wr-field__label {
  display: block; font-size: 14.5px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.wr-req, .wr-opt {
  display: inline-block; border-radius: 4px; padding: 2px 8px;
  font-size: 11px; font-weight: 700; margin-left: 6px; vertical-align: 2px;
}
.wr-req { background: var(--gold); color: #fff; }
.wr-opt { background: #EEF1F5; color: #8FA0B2; }

.wr-field input[type="text"], .wr-field input[type="email"],
.wr-field input[type="tel"], .wr-field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 16px; font-size: 15px; font-family: inherit;
  line-height: 1.8; background: #fff;
}
.wr-field textarea { min-height: 92px; resize: vertical; }
.wr-field input:focus, .wr-field textarea:focus { outline: none; border-color: var(--gold); }
.wr-field__sub { margin-top: 12px; }

.wr-num {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 12px; font-size: 15px; font-family: inherit;
  width: 5.5em; margin: 0 6px; background: #fff;
}
.wr-num--year { width: 7em; }
.wr-num:focus { outline: none; border-color: var(--gold); }
.wr-inline { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px; font-size: 14.5px; color: var(--gray); }

.wr-field__hint { font-size: 13.5px; line-height: 1.9; color: #8FA0B2; margin: -4px 0 14px; }

/* 選択肢のグループ(対応可能ジャンルの3層) */
.wr-group { margin-bottom: 18px; }
.wr-group:last-of-type { margin-bottom: 0; }
.wr-group input[type="text"] { width: 100%; }
.wr-group__name {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold-text); margin-bottom: 10px;
  padding-left: 10px; border-left: 3px solid var(--gold);
}

/* チェックボックス・ラジオ */
.wr-choices { display: flex; flex-wrap: wrap; gap: 10px; }
.wr-choices--column { flex-direction: column; }
.wr-choices label {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 0;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-size: 14px; font-weight: 500;
  color: #42566B; background: #fff; cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.wr-choices--column label { border-radius: 10px; align-self: flex-start; }
.wr-choices label:hover { border-color: var(--gold); }
.wr-choices input { accent-color: var(--navy); width: 16px; height: 16px; flex-shrink: 0; }
.wr-choices label:has(input:checked) { border-color: var(--gold); background: #FDF8EF; color: var(--navy); font-weight: 700; }

/* 同意 */
.wr-agree {
  background: #F7FAFD; border: 1px solid #E7ECF2; border-radius: 10px;
  padding: 20px 24px; margin-top: 34px;
}
.wr-agree label { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #42566B; cursor: pointer; }
.wr-agree input { accent-color: var(--navy); width: 18px; height: 18px; flex-shrink: 0; }
.wr-agree a { color: var(--gold-text); font-weight: 700; text-decoration: underline; }

/* 確認画面の一覧 */
.wr-confirm { border-top: 1px solid var(--line); }
.wr-confirm dt {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--gold-text); padding-top: 18px;
}
.wr-confirm dd {
  font-size: 15px; line-height: 1.9; color: var(--ink);
  padding: 4px 0 16px; border-bottom: 1px solid var(--line);
  word-break: break-word;
}

/* ENTRYセクションの補足 */
.wr-entry__steps { font-size: 13.5px; line-height: 1.9; color: #5D6A78; max-width: 620px; }

/* ==========================================================================
   法務ページ (プライバシーポリシー): テキスト主体の下層ページ
   ※ サービスサイト側 /style.css の .legal 一式を複製したもの
   ========================================================================== */
.legal { padding: 64px 0 96px; background: #fff; }
.legal__body { max-width: 820px; margin: 0 auto; }
.legal__body h2 {
  font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1.55;
  margin: 48px 0 18px; padding-left: 16px; border-left: 5px solid var(--gold);
}
.legal__body h2:first-of-type { margin-top: 24px; }
.legal__body p { font-size: var(--fs-body); line-height: 2.05; color: var(--gray); margin-bottom: 14px; }
.legal__body p.legal__lead { margin-bottom: 12px; }
.legal__body ul, .legal__body ol { margin: 0 0 18px; padding-left: 1.6em; }
.legal__body ul { list-style: disc; }
.legal__body ol { list-style: decimal; }
.legal__body ol ol { margin: 10px 0 4px; list-style: lower-latin; }
.legal__body li { font-size: var(--fs-body); line-height: 2.05; color: var(--gray); margin-bottom: 10px; padding-left: 4px; }
.legal__updated { margin-top: 40px; text-align: right; font-size: 13.5px; color: var(--gray); }
.legal__back { margin-top: 32px; text-align: center; }
.legal__back .btn--outline {
  background: #fff; color: var(--navy); border: 1.5px solid var(--line);
}
.legal__back .btn--outline:hover { border-color: var(--navy); }

.legal-hero {
  background: linear-gradient(180deg, #EEF4FA 0%, #FFFFFF 100%);
  padding: 52px 0 40px; border-bottom: 1px solid var(--line);
}
.legal-hero__crumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 12.5px; color: var(--gray); margin-bottom: 14px;
}
.legal-hero__crumb a { color: var(--gray); }
.legal-hero__crumb a:hover { color: var(--navy); }
.legal-hero__crumb .is-here { color: var(--navy); font-weight: 700; }
.legal-hero h1 { font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1.5; }

.legal__contact {
  margin-top: 8px; padding: 24px 28px;
  background: #F6F9FB; border: 1px solid var(--line); border-radius: 10px;
}
.legal__contact p { margin-bottom: 6px; }
.legal__contact p:last-child { margin-bottom: 0; }
.legal__contact a { color: var(--gold-text); font-weight: 700; }

/* ==========================================================================
   フッター
   ※ サービスサイト側 /style.css の .site-footer 一式を複製し、
     ブランド表記だけ WRITERS 用に差し替えている
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.82); padding: 64px 0 28px; }
.site-footer .inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.site-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.site-footer__word { font-family: var(--sans); font-size: 16px; font-weight: 700; color: #fff; }
.site-footer__word .en { font-size: 17px; letter-spacing: 0.04em; margin-right: 2px; }
.site-footer__word-accent { color: #F0CC7E; }
.site-footer__tag { font-size: 10.5px; color: rgba(255,255,255,0.55); }
.site-footer__desc { font-size: 12.5px; line-height: 1.9; color: rgba(255,255,255,0.62); max-width: 340px; }
.site-footer h4 {
  font-size: 11px; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { font-size: 13px; color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: #fff; }
.site-footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.site-footer__legal {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 24px;
  margin-bottom: 16px;
}
.site-footer__legal li { margin-bottom: 0; }
.site-footer__legal a { font-size: 12.5px; color: rgba(255,255,255,0.7); }
.site-footer__copy {
  text-align: center; font-size: 11.5px; color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 900px) {
  .wr-merits, .wr-reward, .wr-type, .wr-cat-biz__grid, .site-footer .inner {
    grid-template-columns: 1fr;
  }
  .wr-hero__grid { grid-template-columns: 1fr; }
  .wr-hero__vertical { display: none; }
}
