/* 军器属性・グリフ排出率公示 — PC
   视觉参考 https://rok.lilith.com/probability/ ：羊皮纸面板 + 棕/米色概率表格 */

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

html, body {
  width: 100%;
  background: #efe6d4;
  color: #715d42;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* ── 头部 ───────────────────────────────────────── */
.site-header {
  width: 100%;
  background: #1c150d;
  border-bottom: 2px solid #8a6c43;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
}
.header-inner .brand img {
  display: block;
  width: 190px;
  height: auto;
}

/* ── 装饰背景区 ─────────────────────────────────── */
.bg {
  width: 100%;
  min-height: 100vh;
  padding: 60px 0 80px;
  background:
    url(../img/common/bg/probg_01.webp) no-repeat left 3%/546px auto,
    url(../img/common/bg/probg_03.webp) no-repeat right bottom/617px auto,
    url(../img/common/bg/probg_02.webp) repeat left top/auto;
}

/* ── 标题（还原 pro_title 棕色渐变字） ───────────── */
.pro-title {
  display: block;
  max-width: 900px;
  margin: 10px auto 46px;
  text-align: center;
  font-family: "Times New Roman", "Yu Mincho", "Songti SC", serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.25;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #c79a5c 0%, #a9793e 45%, #7c5527 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
}

/* ── 羊皮纸面板 ─────────────────────────────────── */
.pro {
  width: 911px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 56px 50px;
  position: relative;
  background:
    url(../img/common/panel/table_01.webp) no-repeat left top/100% auto,
    url(../img/common/panel/table_03.webp) no-repeat left bottom/100% auto,
    url(../img/common/panel/table_02.webp) repeat-y left top/100% auto;
}

.info { margin: 0 0 12px; }
.pro h4 {
  color: #715d42;
  font-size: 22px;
  font-weight: 700;
  margin: 34px 0 14px;
}
.info:first-of-type h4,
.pro > .info:first-child h4 { margin-top: 0; }
.pro .notes p {
  color: #715d42;
  font-size: 15px;
  line-height: 1.7;
  margin: 4px 0;
}

/* ── 概率表格（棕/米色） ────────────────────────── */
.prob-table {
  width: 100%;
  border-spacing: 0;
  margin: 18px 0 8px;
  font-size: 15px;
  color: #8a6c43;
  border: 1px solid #cbb083;
}
.prob-table th,
.prob-table td {
  padding: 8px 14px;
  text-align: left;
  white-space: nowrap;
  border-right: 1px solid #e6cfa5;
  border-bottom: 1px solid #e6cfa5;
  vertical-align: middle;
}
.prob-table th:last-child,
.prob-table td:last-child { border-right: none; }
.prob-table thead th {
  background-color: #8a6c43;
  color: #fff1cf;
  font-weight: 700;
  border-right-color: #a07f52;
  border-bottom: none;
}
.prob-table tbody tr { background-color: #f7e0c1; }
.prob-table tbody tr:nth-child(2n) { background-color: #fff1de; }
.prob-table tbody td.group {
  background-color: #f2d6ad;
  font-weight: 700;
  vertical-align: middle;
}
/* 宽表（属性表 7 列）在窄视口横向滚动 */
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

.line {
  height: 1px;
  background: rgba(113, 93, 66, .25);
  margin: 40px 0 6px;
}

/* ── 页脚（结构 / 配色对齐日服官网 rok-jp.lilith.com 的 footer） ─── */
.footer_container {
  width: 100%;
  background-color: #222;
  padding: 20px 0 22px;
  box-sizing: border-box;
  margin: 0 auto;
}
.footer_list {
  display: flex;
  gap: 2.0833vw;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 20px;
}
.footer_logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}
.footer_logo img { width: 100%; height: auto; display: block; }
.footer_item a {
  font-size: .9375vw;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}
.footer_item a:hover { text-decoration: underline; }
.footer_copyright {
  text-align: center;
  color: #fff;
  font-size: .9375vw;
  margin-top: 16px;
}
/* 窄桌面窗口下 vw 字号会过小，兜一个可读下限 */
@media screen and (max-width: 1280px) {
  .footer_item a,
  .footer_copyright { font-size: 12px; }
  .footer_list { gap: 18px; }
}
