/*
Theme Name: sunclean-y-btstrp
Theme URI: https://sunclean-y.co.jp/
Author: Your Name
Author URI: https://sunclean-y.co.jp/
Description: A custom WordPress theme for sunclean-y.
Version: 1.0
*/

/* Global Font Family - Override Bootstrap */
:root {
  --bs-font-sans-serif: 'Noto Sans JP', sans-serif;
  --bs-body-font-family: 'Noto Sans JP', sans-serif;
}

html {
  font-family: 'Noto Sans JP', sans-serif !important;
  letter-spacing: 0.1em !important;
  line-height: 2.375 !important; /* 38px / 16px = 2.375 */
  color: #2B323C;
}

body {
  font-family: 'Noto Sans JP', sans-serif !important;
  letter-spacing: 0.1em !important;
  line-height: 2.375 !important;
}

*, *::before, *::after {
  font-family: 'Noto Sans JP', sans-serif !important;
  letter-spacing: 0.1em !important;
}

/* レスポンシブな行間設定 */
p, div, span, a, li {
  line-height: 2.375 !important; /* PC: 38px相当 */
}

/* タブレット以下 */
@media (max-width: 991px) {
  html, body, p, div, span, a, li {
    line-height: 2.0 !important; /* タブレット: 32px相当 */
  }
}

/* モバイル */
@media (max-width: 575px) {
  html, body, p, div, span, a, li {
    line-height: 1.75 !important; /* モバイル: 28px相当 */
  }
}

/* Bootstrap要素の上書き */
h1, h2, h3, h4, h5, h6,
p, span, div, a, button, input, textarea, select,
.btn, .nav, .navbar, .card, .alert,
.form-control, .form-select, .form-label {
  font-family: 'Noto Sans JP', sans-serif !important;
  letter-spacing: 0.1em !important;
}