/*
Theme Name: 島村工業
Theme URI: https://shimamura-kogyo.co.jp
Author: ta3.creative
Description: 島村工業 公式サイト WordPressオリジナルテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: shimamura-kogyo
*/

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --color-primary:      #3F9586;
  --color-primary-dark: #134e39;
  --color-primary-light:#2a8a63;
  --color-text:         #333333;
  --color-text-light:   #666666;
  --color-bg:           #F7F7F7;
  --color-bg-green:     #EEF7F3;
  --color-white:        #FFFFFF;
  --color-border:       #E0E0E0;
  --font-base:          'Noto Sans JP', sans-serif;
  --font-en:            'Barlow', sans-serif;
  --transition:         0.3s ease;
}
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-base); color: var(--color-text); line-height: 1.7; background: var(--color-white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }
ul, ol { list-style: none; }
