/* column/detail.html 専用スタイル */
:root {
  --color-primary: #1976d2;
  --color-primary-dark: #0d47a1;
  --color-primary-light: #42a5f5;
  --gradient-blue: linear-gradient(to right, #00aaff 0%, #0044b2 100%);
  --gradient-blue-vertical: linear-gradient(to bottom, #004a99 0%, #00aaff 100%);
  --color-text: #222;
  --color-text-muted: #888;
  --content-max-width: 1280px;
  --header-height: 62px;
  --font-family-base: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; font-family: var(--font-family-base); background: #fff; color: #111; }
a { color: inherit; text-decoration: none; }

.column-detail-hero {
  position: relative;
  padding-top: var(--header-height);
  min-height: 200px;
  overflow: hidden;
}
.column-detail-hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 769px) {
  .column-detail-hero { min-height: 400px; }
}

.column-detail { width: 100%; padding: 60px 4vw 80px; background: #fff; }
.column-detail__inner { max-width: 800px; margin: 0 auto; }
.column-detail__title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  margin: 0 0 32px 0;
  letter-spacing: 0.02em;
}
.column-detail__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
  border-radius: 4px;
}
.column-detail__img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 4px;
}
.column-detail__img-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.column-detail__img-wrap .sample {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-family: var(--font-family-base);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  pointer-events: none;
}
.column-detail__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 48px 0 20px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e0e0;
  letter-spacing: 0.02em;
}
.column-detail__body h2:first-child { margin-top: 0; }
.column-detail__body p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin: 0 0 24px 0;
  letter-spacing: 0.03em;
}
.column-detail__btn-wrap {
  text-align: center;
  margin-top: 56px;
}
.column-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 50px;
  padding: 0 32px;
  background: var(--gradient-blue-vertical);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.35);
}
.column-detail__btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header__inner { padding: 0 16px; }
  .header__inner .header__nav { display: none; }
  .header > .header__tabs { display: none; }
  .header__drawer .header__nav { display: flex !important; }
  .header__drawer .header__tabs { display: flex !important; }
  .header__logo img { height: 52px; max-width: 240px; }
  .column-detail-hero { min-height: 120px; }
  .column-detail { padding: 40px 4vw 60px; }
  .column-detail__title { font-size: 22px; margin-bottom: 24px; }
  .column-detail__img-wrap .sample { font-size: 32px; }
  .column-detail__body h2 { font-size: 18px; margin: 36px 0 16px; }
  .column-detail__body p { font-size: 14px; line-height: 1.9; }
}
