@charset "UTF-8";
/* ======================================================
   base.css - 全ページ共通スタイル
   ====================================================== */

/* Reset */
@import url("https://unpkg.com/modern-css-reset/dist/reset.min.css");

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&family=Shippori+Mincho:wght@400;600;700&display=swap");

/* ======================================================
   Root Variables（カラー・フォント・余白など）
   ====================================================== */
:root {
  --c-deep: #0D3B34;
  --c-gold: #C8A45D;
  --c-bg:   #f6f6f6;
  --c-text: #333;
  --c-line: #E5E8EC;
  --c-blue-verylight: #F3F5F9;
  --c-company-head: #d9e1ed;

  --shadow-card: 0 2px 8px rgba(0,0,0,.05);
  --radius: 10px;

  /* ロゴ共通サイズ */
  --logo-h-desktop: 24px;
  --logo-h-mobile: 28px;
  --footer-logo-h: 48px;
}

/* ======================================================
   Base
   ====================================================== */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ------------------------------
   見出し（統一設定）
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; /* ✅ しっぽり明朝のウエイト */
  color: var(--c-deep);
  margin: 0 0 .8em;
  line-height: 1.4;
}

/* ======================================================
   Layout Utilities
   ====================================================== */
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.only-pc { display: block; }
.only-sp { display: none; }

@media (max-width: 768px) {
  .only-pc { display: none; }
  .only-sp { display: block; }
}

/* ======================================================
   Links / Buttons
   ====================================================== */
a {
  color: var(--c-deep);
  text-decoration: none;
  transition: opacity .2s ease;
}
a:hover { opacity: .85; }

button {
  font-family: inherit;
  cursor: pointer;
}

/* ======================================================
   Header（共通）
   ====================================================== */
.site-header {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid #e9ecef;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

/* ✅ ヘッダー内ロゴ */
.site-header .site-logo img {
  height: var(--logo-h-desktop);
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .site-header .site-logo img {
    height: var(--logo-h-mobile);
  }
}

/* ======================================================
   body
   ====================================================== */
/* PC/SP 表示切り替え 共通ルール */
.only-pc { display: block !important; }
.only-sp { display: none !important; }

@media (max-width: 768px) {
  .only-pc { display: none !important; }
  .only-sp { display: block !important; }
}

/* ======================================================
   Footer（共通）
   ====================================================== */
.site-footer {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 32px 20px;
  font-size: 14px;
  margin-top: 80px;
}

/* フッターロゴ */
.footer-logo {
  text-align: center;
  margin-bottom: 20px;
}
.footer-logo img {
  height: var(--footer-logo-h);
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin: 0 0 16px;
}
.footer-nav a {
  color: #333;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--c-gold); }

.copy {
  font-size: 12px;
  opacity: .85;
  margin: 0;
}
