/*
Theme Name: Lynir
Theme URI: https://lynir.jp
Author: Lynir
Description: Lynir オリジナルWordPressテーマ。Web制作・グッズ企画制作の個人事業向けWarm Minimalデザイン。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: lynir
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  --color-bg:         #f5f0e8;
  --color-bg-white:   #ffffff;
  --color-bg-dark:    #111111;
  --color-bg-section: #faf7f2;
  --color-bg-mid:     #ede8df;
  --color-text:       #111111;
  --color-text-sub:   #555550;
  --color-text-light: #999990;
  --color-accent:     #c9a96e;
  --color-accent-dk:  #9a7843;
  --color-border:     #e0d9cc;
  --color-border-dk:  #2a2a2a;

  --font-sans:  'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  --max-w:        1200px;
  --max-w-narrow: 780px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
