/*
 * SOLE — 01 Variables
 * デザイントークン（色・フォント・間隔）
 * WordPress: 追加CSS [1] Variables & Fonts に対応
 */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Noto+Serif+JP:wght@200;300;400&display=swap');

:root {
  /* Color */
  --bg:          #FAF7F2;
  --text:        #2D231E;
  --text-muted:  #948076;
  --sage:        #7A9E7E;
  --sage-light:  #C5DBC7;
  --sage-xlight: #E8F4E8;
  --orange:      #F4956A;

  /* Font */
  --font-serif:  'Noto Serif JP', serif;
  --font-latin:  'Cormorant Garamond', serif;

  /* Spacing */
  --section-pad-v: 9rem;
  --section-pad-h: 2rem;
}
