/* 
Theme Name:original2026
*/

/* StrategicSales Design System - Final Edition */
:root {
  --white: #FFFFFF;
  --black: #1A1A1A;
  --blue: #0C4A6E;
  --gray: #9CA3AF;
  --light-gray: #F9F9F9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--white);
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.2;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Noto Serif JP", serif; font-weight: 400; letter-spacing: 0.05em; }
h1 { font-size: 3.5rem; line-height: 1.5; font-weight: 400; }
h2 { font-size: 1.8rem; margin-bottom: 60px; border-bottom: 1px solid #EEE; padding-bottom: 20px; }
.accent { color: var(--blue); font-weight: 500; border-bottom: 1px solid var(--blue); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 60px; }

/* ヘッダー：160pxの余白とロゴの整列 */
header.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 160px !important; 
  padding-bottom: 20px;
  z-index: 10;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
  margin-left: -14px; /* ロゴ画像の余白を補正し、垂直ラインを整えます */
}

nav ul { list-style: none; display: flex; gap: 50px; }
nav a { text-decoration: none; color: var(--black); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.2em; }

section.hero { padding: 480px 0 180px; }
section { padding: 150px 0; }
.subpage-hero { padding: 240px 0 80px; border-bottom: 1px solid #EEE; margin-bottom: 80px; }

.logic-action-split { display: flex; gap: 60px; margin: 60px 0; }
.logic-part, .action-part { flex: 1; border-left: 1px solid var(--blue); padding-left: 30px; }
.action-part { border-left-color: var(--gray); }
.label { font-size: 0.7rem; color: var(--blue); letter-spacing: 0.2em; display: block; margin-bottom: 15px; }

.text-link { color: var(--blue); text-decoration: none; font-weight: 500; font-size: 0.9rem; }
.filter-msg { color: var(--blue); font-weight: 500; font-size: 1.2rem; margin-top: 40px; margin-bottom:30px; }
.cta-outline { display: inline-block; margin-top: 40px; padding: 15px 40px; border: 1px solid var(--blue); color: var(--blue); text-decoration: none; transition: 0.3s; }
.cta-outline:hover { background: var(--blue); color: white; }

table { width: 100%; border-collapse: collapse; margin: 40px 0; }
th, td { padding: 20px; text-align: left; border-bottom: 1px solid #EEE; font-size: 0.9rem; }
.highlight { color: var(--blue); font-weight: 600; }

footer { padding: 80px 0; border-top: 1px solid #EEE; text-align: center; font-size: 0.7rem; color: var(--gray); }

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  header.container { padding-top: 80px !important; flex-direction: column; align-items: flex-start; gap: 40px; }
  section.hero { padding-top: 240px; }
}