@charset "UTF-8";/* 文字コードUTF-8 */

html {
  font-size: 100%;/* ユーザー指定のフォントサイズで表示 */
}

body {
  background-color: #FFFFFF;                              /* サイト全体の背景色 */
  color: #333333;                                         /* サイト全体の文字色 */    
  font-family: 'Noto Sans JP', sans-serif;     /* サイト全体のフォント */
}

.container{                             /* フッターをデバイスの一番下に表示させるための4行 */
  display:grid;                           
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr auto;
	min-height: 100vh;
}

ul {                                    /* リストの点を無くして、余白もなくす */
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

a {                                     /* リンクの下線を無くす */
  text-decoration: none;
}

details summary::-webkit-details-marker {   /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.bold{                                  /* 太字クラス */
  font-weight: bold;
}

/* キーボード選択の枠（Tabキーなど） */
a:focus-visible,
details summary:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}

.subtitle {
  display: block;      /* 改行させる */
  font-size: 0.7em;    /* 小さくする */
  font-weight: 500;
  color: #555;
  margin-top: 5px;
} 

.word {
    white-space: nowrap;
}




/* ヘッダー */
#header{
    margin-top: 20px;   /* ヘッダーの上を20px開ける */
}

.site-title{
    font-weight: bold;
    padding: 10px;                              /* タイトルの余白10px */
    display: inline-block;                      /* 無駄な余白を無くす */
    margin: 0 10px;                             /* h3の余白を調整 */
    border: solid 2px rgb(172, 228, 241);     /* 青の線で囲む */
    border-radius: 10%;                         /* 四角を丸くする */
    background-color: rgb(203, 218, 238);     /* 背景に薄い水色 */
}


/* フッター */
#footer{
    width: 100%;                                        /* 余白なし */
    border-top: 2px solid rgb(172, 228, 241);         /* ヘッダーと同じ色で上と下に線をつける */
    border-bottom: 2px solid rgb(172, 228, 241);
    background-color: rgb(203, 218, 238);             /* ヘッダーと同じ背景色 */
}

.footer-list{
    display: flex;              /* フッターのコンテンツを横並べ */
    flex-wrap: wrap;            
    justify-content: center;    /* 中央に揃える */
    font-weight: bold;          /* 太字 */
}

.footer-text:not(:last-child)::after {     /* 文字の最後（最後の要素以外）に／をつけて区切る */
    content: "／";
}

.footer-title{
    width: 100%;                /* 100%の幅 */
    text-align: center;         /* 中央揃え */
    margin-bottom: 10px;        /* 下に余白 */
}



/* ナビゲーションバー */
#navi {
    background-color: #333;     /* バーの色は黒 */
}

#navi a {
    color: #fff;                /* バーの文字は白 */
}

.navi_frame{
    display: flex;                  /* 横に並べる */
    justify-content: flex-start;    /* 左から並べる */
    padding-left: 20px;             /* 画面左端の余白 */
}

.navi_text {
    font-size: 0.875rem;            /* 文字サイズを調整 */
    padding: 10px 60px 10px 0;      /* 余白を調整 */
}

.title-return{
  margin-left: 20px;              /* 左を20px開ける */
  font-size: 0.8rem;              /* 文字を小さめに表示 */
  margin-bottom: 20px;
  line-height: 1.6;
}

/* 広告 */
.adbox {
  margin-top: 50px;
  margin-bottom: 50px;
} .adslot_1 {
  width: 320px;
  height: 100px;
} .adslot_2 {
  width: 200px;
  height: 200px;
}




/* ヘッダーとフッター以外のメインコンテンツ */
main{
  margin: 0 20px 100px;   /* 左右を20px、フッターと100px開ける */
} article {
  font-size: 16px;
  line-height: 1.7;
}

.title-frame{
  display:grid;
  grid-template-columns: 1fr 220px; /* ← 日付専用スペース確保 */
  align-items:end;
  gap:20px;
}

/* タイトル */
.article-title{
  margin:0;
  min-width:0; /* ← 超重要（Grid改行バグ防止） */
  font-size: 1.5em;           /* 文字の大きさの調整 */
}

/* 日付ブロック */
.article-date{
  white-space:nowrap; /* ← 日付改行禁止 */
} .date-row {
  display: grid;
  grid-template-columns: 7em auto;
  justify-content: end; /* ← 行自体を右へ */
} .date-label {
  text-align: right;    /* ← ラベル右揃え */
} .final-date {
  margin-top: 4px;
}










.intro-base {
    margin: 40px 0;
    padding: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
    background-color: #EAF8FF;
    border-left: 6px solid #1E88C8;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}


/* ==============================
   ページ内目次
============================== */

.guide-toc {
    margin: 35px 0 45px;
    padding: 20px;
    background-color: #f7fbfe;
    border: 1px solid #b8d8ea;
    border-top: 5px solid #2677a8;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.guide-toc-title {
    margin: 0 0 15px;
    color: #174f79;
    font-size: 1.05rem;
    font-weight: 700;
}

.guide-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-toc li {
    margin: 0;
}

.guide-toc a {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding: 11px 13px;
    color: #155fad;
    font-weight: 700;
    line-height: 1.5;
    background-color: #fff;
    border: 1px solid #c9dfec;
    border-radius: 6px;
}

.toc-number {
    flex: 0 0 auto;
    color: #fff;
    padding: 3px 7px;
    font-size: 0.72rem;
    line-height: 1.3;
    background-color: #2677a8;
    border-radius: 4px;
}



section {
    margin: 40px 0;
    padding: 0 0 0 18px;
    background: none;
    border-left: 5px solid #4da3ff;
}

.section-title {
    margin: 0 0 20px;

    border-bottom: 2px solid #4da3ff;
    padding-bottom: 6px;

    font-size: 1.2em;
    line-height: 1.4;
}

/* ==============================
   セクション内の通常h3
============================== */

#another > h3,
#nightmareS > h3,
#armor > h3,
#parts > h3 {

    margin: 36px 0 18px;
    padding: 0 0 8px;

    color:#174f79;

    border-bottom:2px solid #2677a8;
}


/* アナザーボス攻略リンク */
.another-boss-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0 36px;
}

.boss-link-group {
    padding: 18px;
    border: 2px solid;
    border-radius: 12px;
}

.boss-link-group h4 {
    margin: 0 0 14px;
    padding-bottom: 8px;
    font-size: 1.05rem;
    border-bottom: 2px solid;
}

.boss-link-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.boss-link-group li {
    margin: 0;
}

.boss-link-group li + li {
    margin-top: 10px;
}

.boss-link-group a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid;
    border-radius: 7px;
    font-weight: 700;
    line-height: 1.5;
}

.boss-count {
    flex: 0 0 5.5em;
    padding: 3px 6px;
    font-size: 0.8rem;
    text-align: center;
    border-radius: 999px;
}

.boss-name {
    min-width: 0;
}


/* エックス編 */
.x-boss-links {
    background-color: #eef6ff;
    border-color: #6ea8ff;
}

.x-boss-links h4 {
    color: #1c4e94;
    border-bottom-color: #95bcec;
}

.x-boss-links a {
    color: #155fad;
    border-color: #b7d2f2;
}

.x-boss-links .boss-count {
    color: #fff;
    background-color: #3978df;
}


/* ゼロ編 */
.zero-boss-links {
    background-color: #fff1f1;
    border-color: #ff8a8a;
}

.zero-boss-links h4 {
    color: #952e28;
    border-bottom-color: #eba6a0;
}

.zero-boss-links a {
    color: #b9342c;
    border-color: #f1b9b4;
}

.zero-boss-links .boss-count {
    color: #fff;
    background-color: #d9473d;
}


/* ナイトメアS発生表 */
.nightmareS-table-wrap {
    width: 100%;
    margin: 24px 0 12px;
    overflow: hidden;
    border: 1px solid #9fc7df;
    border-radius: 9px;
    background-color: #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.06);
}

.nightmareS-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.82rem;
    line-height: 1.35;
}

.nightmareS-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
    border: 0;
}

.nightmareS-table th,
.nightmareS-table td {
    padding: 9px 4px;
    text-align: center;
    vertical-align: middle;
    overflow-wrap: anywhere;
    word-break: normal;
    border-right: 1px solid #c8dce9;
    border-bottom: 1px solid #c8dce9;
}

.nightmareS-table tr:last-child th,
.nightmareS-table tr:last-child td {
    border-bottom: none;
}

.nightmareS-table th:last-child,
.nightmareS-table td:last-child {
    border-right: none;
}


/* 左端の入場ステージ列 */
.nightmareS-table .stage-corner,
.nightmareS-table tbody th {
    width: 22%;
}


/* 横8列 */
.nightmareS-table thead th:not(.stage-corner),
.nightmareS-table tbody td {
    width: 9.75%;
}


/* 横見出し */
.nightmareS-table thead th {
    color: #fff;
    font-weight: 700;
    background-color: #2677a8;
}

.nightmareS-table thead th:not(.stage-corner) {
    font-size: 0.75rem;
    line-height: 1.3;
}


/* 左側の入場ステージ */
.nightmareS-table tbody th {
    padding: 9px 7px;
    text-align: left;
    color: #174f79;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    background-color: #eaf8ff;
}

.nightmareS-table tbody tr:nth-child(even) th {
    background-color: #dff2fb;
}


/* 左上セル */
.nightmareS-table .stage-corner {
    padding: 7px 5px;
    background:
        linear-gradient(
            to top right,
            #2677a8 49.2%,
            #fff 49.6%,
            #fff 50.4%,
            #2677a8 50.8%
        );
}

.stage-corner .vertical-label,
.stage-corner .horizontal-label {
    display: block;
    font-size: 0.65rem;
    line-height: 1.25;
}

.stage-corner .vertical-label {
    text-align: left;
    transform: translateY(7px);
}

.stage-corner .horizontal-label {
    text-align: right;
    transform: translateY(-7px);
}


/* 通常セル */
.nightmareS-table tbody td {
    color: #9aa3a9;
    background-color: rgba(255, 255, 255, 0.9);
}

.nightmareS-table tbody tr:nth-child(even) td {
    background-color: #f6fbfe;
}

/* 該当セル */
.nightmareS-table tbody td.is-active,
.nightmareS-table tbody tr:nth-child(even) td.is-active {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    background-color: #3e91c1;
}

.nightmareS-table td.is-active a {
    display: grid;
    min-height: 32px;
    place-items: center;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}


/* 補足 */
.nightmareS-table-note {
    margin: 10px 0 32px;
    font-size: 0.83rem;
    line-height: 1.7;
    color: #555;
}

/* ナイトメアS詳細 */
.nightmareS-list {
    margin: 30px 0 40px;
}

.nightmareS-list dt {
    margin-top: 34px;
    padding: 9px 13px;
    color: #174f79;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
    background-color: #eaf8ff;
    border-left: 6px solid #1e88c8;
    border-radius: 4px;
    scroll-margin-top: 20px;
}

.nightmareS-list dt:first-child {
    margin-top: 0;
}

.nightmareS-list dd {
    margin: 0;
    padding: 14px 16px 18px;
    background-color: #f8fcfe;
    border-right: 1px solid #c7dfec;
    border-bottom: 1px solid #c7dfec;
    border-left: 1px solid #c7dfec;
    border-radius: 0 0 6px 6px;
}

.nightmareS-list dd p {
    margin: 0;
}

.nightmareS-list dd p + p {
    margin-top: 1em;
}

/* 危険度ラベル */
.danger {
    display: inline-block;
    margin-left: .8rem;
    padding: .2rem .6rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    vertical-align: middle;
    white-space: nowrap;
}

/* ★★★★★ */
.danger5{
    background:#C62828;
    color:#fff;
}

/* ★★★★☆ */
.danger4{
    background:#EF6C00;
    color:#fff;
}

/* ★★★☆☆ */
.danger3{
    background-color: #c88700;
    color:#fff;
}

/* ★★☆☆☆ */
.danger2{
    background:#43A047;
    color:#fff;
}

/* ★☆☆☆☆ */
.danger1{
    background:#1976D2;
    color:#fff;
}


/* アーマー比較表 */
.armor-table-wrap {
    width: 100%;
    margin: 24px 0 40px;
    overflow: hidden;
    border: 1px solid #9fc7df;
    border-radius: 8px;
    background-color: #fff;
}

.armor-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.9rem;
    line-height: 1.5;
}

.armor-table th,
.armor-table td {
    padding: 11px 8px;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid #c8dce9;
    border-bottom: 1px solid #c8dce9;
}

.armor-table tr:last-child th,
.armor-table tr:last-child td {
    border-bottom: none;
}

.armor-table th:last-child,
.armor-table td:last-child {
    border-right: none;
}

.armor-table thead th {
    color: #fff;
    font-weight: 700;
    background-color: #2677a8;
}

.armor-table thead th:first-child {
    width: 22%;
}

.armor-table tbody th {
    color: #174f79;
    text-align: left;
    background-color: #eaf8ff;
}

.armor-table tbody tr:nth-child(even) td {
    background-color: #f5fbfe;
}


/* アーマー詳細 */
.armor-list {
    margin-top: 30px;
}

.armor-card {
    margin: 34px 0;
    padding: 0 18px 22px;
    border: 2px solid;
    border-radius: 12px;
}

.armor-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 -18px 20px;
    padding: 14px 18px;
    border-radius: 9px 9px 0 0;
}

.armor-heading h3 {
    margin: 0;
    font-size: 1.2rem;
}

.armor-tag {
    padding: 4px 9px;
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: 999px;
}


/* ファルコン */
.falcon-armor {
    border-color: #75a9d3;
    background-color: #f5fbff;
}

.falcon-armor .armor-heading {
    color: #174f79;
    background-color: #dff2ff;
}

.falcon-armor .armor-tag {
    color: #fff;
    background-color: #3c88bc;
}


/* ブレード */
.blade-armor {
    border-color: #6f8fd8;
    background-color: #f5f7ff;
}

.blade-armor .armor-heading {
    color: #263f8c;
    background-color: #e3e9ff;
}

.blade-armor .armor-tag {
    color: #fff;
    background-color: #496bc2;
}


/* シャドー */
.shadow-armor {
    border-color: #8a75b5;
    background-color: #faf7ff;
}

.shadow-armor .armor-heading {
    color: #533b7d;
    background-color: #eee6fa;
}

.shadow-armor .armor-tag {
    color: #fff;
    background-color: #7153a0;
}


/* 能力一覧 */
.armor-feature-list {
    margin: 24px 0;
}

.armor-feature-list dt {
    margin-top: 20px;
    padding-left: 11px;
    font-weight: 700;
    border-left: 5px solid currentColor;
}

.armor-feature-list dt:first-child {
    margin-top: 0;
}

.falcon-armor .armor-feature-list dt {
    color: #2677a8;
}

.blade-armor .armor-feature-list dt {
    color: #3f5eaf;
}

.shadow-armor .armor-feature-list dt {
    color: #684990;
}

.armor-feature-list dd {
    margin: 7px 0 0;
    padding: 0 0 0 16px;
}

/* 特徴まとめ */
.armor-summary {
    margin-top: 25px;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.78);
    border: 1px solid #ccd9e3;
    border-radius: 7px;
}

.armor-summary p {
    margin: 0;
}

.armor-summary-title {
    margin-bottom: 5px !important;
    font-weight: 700;
}


/* ==============================
   強化パーツ一覧
============================== */

/* 一覧表 */
.parts-table {
    width: 100%;
    margin: 24px 0 42px;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.6;
    background-color: #fff;
    border: 1px solid #9fc7df;
    border-radius: 9px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.05);
}

.parts-table th,
.parts-table td {
    padding: 13px 15px;
    text-align: left;
    vertical-align: middle;
    border-right: 1px solid #c9dce8;
    border-bottom: 1px solid #c9dce8;
}

.parts-table th:last-child,
.parts-table td:last-child {
    border-right: none;
}

.parts-table tbody tr:last-child td {
    border-bottom: none;
}

.parts-table thead th {
    color: #fff;
    font-weight: 700;
    text-align: center;
    background-color: #2677a8;
}

.parts-table thead th:first-child {
    width: 35%;
}

.parts-table tbody tr:nth-child(even) td {
    background-color: #f3f9fc;
}

.parts-table tbody td:first-child {
    color: #174f79;
    font-weight: 700;
    background-color: #eaf8ff;
}

.parts-table tbody tr:nth-child(even) td:first-child {
    background-color: #dff2fb;
}

/* 一覧内のパーツリンク */
.parts-table td:last-child {
    padding-top: 9px;
    padding-bottom: 9px;
}

.parts-table td:last-child a {
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    gap: 7px;
    padding: 5px 8px;
    color: #155fad;
    font-weight: 700;
    line-height: 1.45;
    border-radius: 5px;
}

.parts-table td:last-child a + a {
    margin-top: 3px;
}

/* パーツ詳細 */
#parts-list {
    margin: 30px 0 45px;
}

#parts-list dt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 34px;
    padding: 11px 14px;
    color: #174f79;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
    background-color: #eaf8ff;
    border-top: 1px solid #abd3e8;
    border-right: 1px solid #abd3e8;
    border-left: 6px solid #1e88c8;
    border-radius: 7px 7px 0 0;
    scroll-margin-top: 20px;
}

#parts-list dt:first-child {
    margin-top: 0;
}

#parts-list dt:target {
    background-color: #d5effc;
}

#parts-list dd {
    margin: 0;
    padding: 16px 18px 19px;
    background-color: #fbfdfe;
    border-right: 1px solid #c8dce8;
    border-bottom: 1px solid #c8dce8;
    border-left: 1px solid #c8dce8;
    border-radius: 0 0 7px 7px;
}

#parts-list dd p {
    margin: 0;
}

#parts-list dd p + p {
    margin-top: 1em;
}

/* パーツ名 */
.parts-name {
    min-width: 0;
}

/* 種類ラベル */
.parts-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 3.8em;
    padding: 3px 7px;
    color: #fff;
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    border-radius: 999px;
}

.x-tag {
    background-color: #3478d4;
}

.zero-tag {
    background-color: #d4473e;
}

.limit-tag {
    background-color: #7b4bb7;
}



.link-frame {
  margin-top: 50px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.72);
  border: 1px solid #ccd5df;
  border-radius: 8px;
}

.link-frame > div {
  padding: 9px 11px;
  background-color: #fff;
  border-radius: 5px;
}

.link-frame a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}


.close-details {
  display: block;
  width: fit-content;
  margin: 35px 0 0 0;
  padding: 6px 10px;
  font-size: 0.85rem;
  color: #555 !important;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #ccd4dc;
  border-radius: 5px;
}









/* 幅560px以下の場合 */
@media screen and (max-width: 560px) {
  .title-frame{
    display: block;
  }

  .article-title{
    margin: 10px 0;
  }

    .article-date{
        padding: 0;
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    main {
        margin: 0 10px 50px;
    }

    section {
        margin: 20px 0;
        padding-left: 10px;
        border-left-width: 4px;
    }
    
    p {
        font-size: 15px; /* 締まりが良くなる */
        line-height: 1.7;
        margin-bottom: 18px;
    }


    .guide-toc {
        margin: 28px 0 35px;
        padding: 14px;
    }

    .guide-toc ol {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .guide-toc a {
        padding: 10px;
    }


    #another > h3,
    #nightmareS > h3,
    #armor > h3,
    #parts > h3 {
        margin: 30px 0 16px;
        font-size: 1rem;
    }

    /* アナザーボス攻略リンク */
    .another-boss-links {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0 30px;
    }

    .boss-link-group {
        padding: 14px;
        border-width: 1px;
        border-radius: 9px;
    }

    .boss-link-group h4 {
        margin-bottom: 12px;
        padding-bottom: 7px;
        font-size: 1rem;
    }

    .boss-link-group li + li {
        margin-top: 8px;
    }

    .boss-link-group a {
        display: grid;
        grid-template-columns: 5.3em minmax(0, 1fr);
        align-items: center;
        gap: 9px;

        padding: 10px 11px;

        font-size: 0.9rem;
        line-height: 1.45;
    }

    .boss-count {
        width: 100%;
        padding: 3px 4px;
        font-size: 0.72rem;
    }

    .boss-name {
        min-width: 0;
        overflow-wrap: anywhere;
    }
    

    .nightmareS-table {
        font-size: 0.68rem;
    }

    .nightmareS-table th,
    .nightmareS-table td {
        padding: 7px 2px;
    }

    .nightmareS-table .stage-corner,
    .nightmareS-table tbody th {
        width: 25%;
    }

    .nightmareS-table thead th:not(.stage-corner),
    .nightmareS-table tbody td {
        width: 9.375%;
    }

    .nightmareS-table thead th:not(.stage-corner) {
        font-size: 0.62rem;
    }

    .nightmareS-table tbody th {
        padding: 7px 4px;
        font-size: 0.67rem;
    }

    .stage-corner .vertical-label,
    .stage-corner .horizontal-label {
        font-size: 0.56rem;
    }

    .nightmareS-table td.is-active {
        font-size: 0.9rem;
    }

    .nightmareS-list dt{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:.4rem;
    }

    .danger{
        margin-left:0;
    }


    .armor-table {
        font-size: 0.72rem;
    }

    .armor-table th,
    .armor-table td {
        padding: 8px 3px;
    }

    .armor-table thead th:first-child {
        width: 25%;
    }

    .armor-card {
        margin: 28px 0;
        padding: 0 12px 18px;
    }

    .armor-heading {
        display: block;
        margin: 0 -12px 18px;
        padding: 12px;
    }

    .armor-heading h3 {
        font-size: 1.08rem;
    }

    .armor-tag {
        display: inline-block;
        margin-top: 7px;
    }

    .armor-feature-list dd {
        padding-left: 10px;
    }


    .parts-table {
        font-size: 0.84rem;
    }

    .parts-table th,
    .parts-table td {
        padding: 10px 8px;
    }

    .parts-table thead th:first-child {
        width: 38%;
    }

    .parts-table td:last-child a {
        align-items: flex-start;
        gap: 5px;
        padding: 5px 3px;
    }

    .parts-tag {
        min-width: 3.5em;
        padding: 3px 5px;
        font-size: 0.58rem;
    }

    #parts-list dt {
        margin-top: 28px;
        padding: 10px 11px;
        font-size: 1rem;
    }

    #parts-list dd {
        padding: 14px 12px 17px;
    }

} @media (hover: hover) and (pointer: fine) {

    section {
        transition: 0.15s;
    }

    a:hover {
        text-decoration: underline;
    }

    .guide-toc a:hover {
        color: #174f79;
        background-color: #e6f4fb;
        text-decoration: none;
    }

    .nightmareS-table tbody tr:hover td:not(.is-active) {
        background-color: #e9f6fc;
    }

    .nightmareS-table td.is-active a:hover {
        background-color: #2479aa;
        text-decoration: none;
    }

    .parts-table td:last-child a:hover {
        background-color: #e4f3fb;
        text-decoration: none;
    }

} @media (min-width:500px) {
    .adslot_1 {
        width: 468px;
        height: 60px;
    }
} @media (min-width:800px) {
    .adslot_1 {
        width: 728px;
        height: 90px;
    }
}