/* ===== Any% CAREER 下層ページ共通スタイル ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #357069;
  --green-grad: linear-gradient(135deg, #357069 0%, #2b5a54 100%);
  --ink: #16181d;
  --muted: #666;
  --line: #e6e6e0;
  --bg: #e9ebe7;
}
.logo-img { height: 42px; width: auto; display: block; mix-blend-mode: multiply; }

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Meiryo', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

/* header */
.page-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.page-header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; gap: 3px; font-weight: 900; text-decoration: none; }
.logo .z {
  font-size: 23px; font-style: italic; letter-spacing: -1.5px; transform: skewX(-4deg);
  background: linear-gradient(135deg, #1fc36b 0%, #0fb3a0 55%, #111 56%, #111 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo .kana { font-size: 14px; color: #1a1a1a; letter-spacing: 0.5px; }
.back-link {
  font-size: 13px; color: var(--muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 20px; transition: background 0.12s;
}
.back-link:hover { background: #f4f4f0; }

/* content */
.container {
  max-width: 720px;
  margin: 26px auto 60px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px 48px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.container h1 {
  font-size: 26px; font-weight: 900; letter-spacing: 0.5px; margin-bottom: 8px;
}
.updated { font-size: 12px; color: #999; margin-bottom: 30px; }

.lead { font-size: 14px; color: var(--muted); line-height: 1.95; margin-bottom: 30px; }

.section { margin-bottom: 28px; }
.section h2 {
  font-size: 17px; font-weight: 800; margin-bottom: 12px; padding-left: 12px;
  border-left: 4px solid var(--green); line-height: 1.4;
}
.section p { font-size: 14px; color: #444; line-height: 1.95; margin-bottom: 10px; }
.section ol, .section ul { margin: 8px 0 10px 1.4em; }
.section li { font-size: 14px; color: #444; line-height: 1.9; margin-bottom: 6px; }

/* footer */
.page-footer {
  text-align: center; padding: 26px 20px 40px; font-size: 12px; color: #999;
}
.page-footer .links { margin-bottom: 12px; display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.page-footer .links a {
  color: var(--muted); text-decoration: none; padding: 2px 12px; border-right: 1px solid #ccc; font-size: 12px;
}
.page-footer .links a:last-child { border-right: none; }
.page-footer .links a:hover { text-decoration: underline; }

/* contact form */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.form-group label .req { color: #e0533a; font-size: 12px; margin-left: 6px; }
.field {
  width: 100%; background: #fff; border: 1px solid #d8d8d2; border-radius: 12px;
  padding: 14px 16px; font-size: 15px; font-family: inherit; color: var(--ink); transition: border-color 0.12s, box-shadow 0.12s;
}
.field::placeholder { color: #b0b0a8; }
.field:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(154,210,30,0.15); }
textarea.field { resize: vertical; min-height: 140px; line-height: 1.7; }
select.field { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}

.consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 26px; }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: #357069; flex-shrink: 0; }
.consent label { font-size: 13px; color: var(--muted); line-height: 1.6; }
.consent a { color: #2c8079; }

.submit-btn {
  width: 100%; background: var(--green-grad); color: #ffffff; border: none; border-radius: 12px;
  padding: 17px; font-size: 16px; font-weight: 800; font-family: inherit; cursor: pointer;
  box-shadow: 0 3px 8px rgba(154,210,30,0.35); transition: transform 0.1s, box-shadow 0.1s;
}
.submit-btn:hover { box-shadow: 0 5px 14px rgba(154,210,30,0.45); }
.submit-btn:active { transform: scale(0.98); }
.submit-btn:disabled { opacity: 0.4; cursor: default; box-shadow: none; }

.thanks {
  text-align: center; padding: 50px 20px;
}
.thanks .ico {
  width: 72px; height: 72px; border-radius: 50%; background: var(--green-grad);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 38px; color: #fff;
}
.thanks h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.thanks p { font-size: 14px; color: var(--muted); line-height: 1.9; }
/* Common production typography and mobile legal pages. */
:root{--green:#087854;--green-grad:#087854;--ink:#183c34;--muted:#52665b;--line:#dce4dd;--bg:#fbfaf6}
[hidden]{display:none!important}a{color:var(--green);text-underline-offset:3px}a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{outline:3px solid #397a9c;outline-offset:3px}
.logo-img{width:132px;height:auto}.logo{min-height:44px}.page-header-inner{padding-top:10px;padding-bottom:10px}.back-link{min-height:44px}.updated,.page-footer{color:var(--muted)}
.container h1{font-size:clamp(22px,5.7vw,28px);overflow-wrap:anywhere}.container{overflow-wrap:anywhere}.company-details{display:grid;grid-template-columns:155px 1fr;gap:10px 16px;font-size:14px}.company-details dt{font-weight:700}.company-details dd{margin:0}.field{font-size:16px}.submit-btn{box-shadow:none}.submit-btn:hover{box-shadow:none;background:#056543}.field::placeholder{color:#718178}.form-error{padding:14px;background:#fff5f0;color:#903623;border:1px solid #e8c4b5;border-radius:8px;margin-bottom:16px;font-size:14px}.page-footer p{margin-top:9px}.status-message{min-height:1.7em;font-size:13px;color:var(--muted)}
@media(max-width:600px){.container{margin:18px 14px 36px;padding:25px 20px 30px;border:1px solid var(--line);box-shadow:none}.page-header-inner{padding-left:18px;padding-right:18px;gap:12px}.back-link{font-size:12px;padding:8px 10px}.section p,.section li{font-size:14px}.company-details{grid-template-columns:1fr;gap:3px}.company-details dd{margin-bottom:10px}.updated{margin-bottom:22px}}
