/* ========================================
   WordPress Base CSS (2026)
   ======================================== */

/* ===============================
   Root Design Tokens
=============================== */
:root {
  --color-text: #333;
  --color-bg: #fff;
  --color-main: #222;
  --color-accent: #e60023;
  --color-border: #ddd;

  --font-base: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial,
               "Noto Sans JP", sans-serif;

  --max-width: 1100px;
  --space: 1rem;
}

/* ===============================
   Base Layout
=============================== */
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
}

/* Container */
.l-container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Section spacing */
.l-section {
  padding: 4rem 0;
}

/* ===============================
   Typography
=============================== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

p {
  margin-bottom: 1em;
}

/* ===============================
   Links
=============================== */
a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* ===============================
   Images
=============================== */
img {
  height: auto;
}

/* ===============================
   WordPress Core対応
=============================== */

/* 投稿本文 */
.entry-content {
  line-height: 1.8;
}

.entry-content > * + * {
  margin-top: 1.5em;
}

/* WP画像 */
.wp-block-image img {
  border-radius: 4px;
}

/* WPギャラリー */
.wp-block-gallery {
  gap: 10px;
}

/* キャプション */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.9rem;
  color: #666;
}

/* アライン */
.alignwide {
  max-width: 1200px;
  margin-inline: auto;
}

.alignfull {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* ===============================
   Forms（Contact Form 7対応）
=============================== */
input,
textarea,
select {
  width: 100%;
  padding: 0.6em;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

button,
input[type="submit"] {
  background: var(--color-main);
  color: #fff;
  padding: 0.7em 1.2em;
  border-radius: 4px;
}

/* ===============================
   Utility
=============================== */
.u-text-center {
  text-align: center;
}

.u-mt {
  margin-top: var(--space);
}

.u-mb {
  margin-bottom: var(--space);
}

/* ===============================
   Responsive（Mobile First）
=============================== */
@media (min-width: 768px) {
  .l-section {
    padding: 6rem 0;
  }
}