/* ========================================================
   Global / Public Styles (BEM + Utility-first Conversion)
   --------------------------------------------------------
   - Keep typography / reset styles minimal
   - Rename legacy `.ly_inner` → `.l-container`
   - Rename legacy `.spacer`  → `.u-mb-100` (utility spacing)
   ========================================================*/

/* Theme meta (WordPress) --------------------------------*/
/*
Theme Name: SKパートナーズテーマ
Description: 住宅・不動産専門ヘッドハンティング会社の WordPress テーマ
Version: 1.0
Author: SKパートナーズ
*/

/* Base --------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");

:root {
  /* Typography */
  --font-base: "Noto Serif JP", serif;

  /* Spacing scale (rem based) */
  --space-16: 1rem;   /* 16px */
  --space-20: 20px;
  --space-32: 2rem;   /* 32px */
  --space-50: 50px;   /* 32px */
  --space-64: 4rem;   /* 64px */
  --space-100: 6.25rem; /* 100px */
}

/* Element defaults -------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-optical-sizing: auto;
  color: #000;
  background-color: #fff;
  line-height: 1.8;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #000000
}

li {
  list-style: none;
}

/* Layout ------------------------------------------------*/
.l-container {
  width: min(90%, 1280px);
  margin-inline: auto;
}

/* Utility ----------------------------------------------*/
.u-mb-100 {
  margin-bottom: var(--space-100);
}
.u-mb-20 {
  margin-bottom: var(--space-20);
}
.u-mb-32 { 
  margin-bottom: var(--space-32); 
}
.u-mb-50 {
  margin-bottom: var(--space-50);
}

/* If you need more spacing utilities, follow the pattern:
   .u-mb-16 { margin-bottom: var(--space-16); }
   .u-mb-32 { margin-bottom: var(--space-32); }
   .u-mb-64 { margin-bottom: var(--space-64); } */

/* --------------------------
  Section Title
---------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title__image {
  width: 40%;
}

@media (max-width: 480px) {
  .section-title {
    text-align: center;
    margin-bottom: 20px;
}
}
