/*
Theme Name: 社内報製作・相談ドットコム（実績ページ用テーマ）
Theme URI: https://kouhousi.com/shanaiho/
Author: 有限会社ゴルゴオフィス
Description: 社内報製作・相談ドットコムの「制作実績」ページ表示に特化した
  最小構成のオリジナルテーマです。子テーマではなく独立したテーマとして
  動作しますが、header/footer・配色・フォントは本番サイト
  （works/../css/style.css）のトンマナに合わせています。
  実績カード一覧は page-jisseki.php（テンプレート名「制作実績」）に実装しています。
Version: 1.1.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shanaiho-jisseki
*/

/* ===================================================
   グローバルリセット／ベース
   ---------------------------------------------------
   ・html { font-size: 62.5%; } (1rem = 10px) は本番サイトの
     css/style.css と同じ前提。
   ・配色・フォントは本番サイトの css/style.css から採取した値。
     - 本文色: #3c3c3c ／ 見出し色: #222222 ／ 補足文: #5c5c5c
     - フォント: "Noto Sans JP" のみ（明朝体は本番では未使用）
     - アクセントカラー: ゴールド #E5A323 ／ ネイビー #2c539e ／
       赤(CTA用) rgba(205,17,17,1)
     - フッター背景: rgba(41,40,37,1) ／ コピーライト帯: #030200
=================================================== */

:root {
  --brand-text: #3c3c3c;
  --brand-heading: #222222;
  --brand-muted: #5c5c5c;
  --brand-gold: #e5a323;
  --brand-gold-deep: #c98a10;
  --brand-navy: #2c539e;
  --brand-red: rgba(205, 17, 17, 1);
  --brand-line: #f2f2f2;
  --brand-card-bg: #f9f9f9;
  --brand-footer-bg: rgba(41, 40, 37, 1);
  --brand-copy-bg: #030200;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--brand-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/* ---------------------------------------------------
   ヘッダー
   本番サイトの .header_box / .header_right_box_right
   （ロゴ＋右側の赤いCTAボタン）を簡略移植。
--------------------------------------------------- */
.site-header {
  padding: 1.6rem 2rem;
  background: #fff;
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  max-width: 108rem;
  margin: 0 auto;
}

.site-header__logo {
  margin: 0;
}

.site-header__logo a {
  display: block;
  text-decoration: none;
}

.site-header__logo img {
  width: 26rem;
  max-width: 60vw;
}

.site-header__cta a {
  display: block;
  padding: 1rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  box-sizing: border-box;
  transition: 0.2s ease;
}

.site-header__cta a:hover {
  color: var(--brand-red);
  background: #fff;
}

/* ---------------------------------------------------
   ナビゲーション
   本番サイトの nav（ゴールドのグラデーションバー）を移植。
--------------------------------------------------- */
.site-nav {
  border-top: 1px solid #e6e6e6;
  background: rgb(229, 163, 35);
  background: linear-gradient(
    to bottom,
    rgba(229, 163, 35, 1) 0%,
    rgba(232, 187, 41, 1) 47%,
    rgba(232, 187, 41, 1) 53%,
    rgba(229, 163, 35, 1) 100%
  );
  box-shadow: 0 -3px 5px #e9e9e9 inset;
}

.site-nav__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 108rem;
  margin: 0 auto;
  list-style: none;
}

.site-nav__menu li {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.site-nav__menu li:first-child {
  border-left: none;
}

.site-nav__menu a {
  display: block;
  padding: 1.2rem 2rem;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}

.site-nav__menu a:hover {
  opacity: 0.7;
}

/* ---------------------------------------------------
   フッター
   本番サイトの footer（ダーク背景）／ .sitemap ／ .copy を移植。
--------------------------------------------------- */
.site-footer {
  background: var(--brand-footer-bg);
}

.site-footer__inner {
  max-width: 108rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 3rem;
  list-style: none;
}

.site-footer__menu a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}

.site-footer__menu a:hover {
  color: var(--brand-gold);
}

.site-footer__copy {
  margin: 0;
  padding: 1.6rem 0;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background: var(--brand-copy-bg);
}
