@charset "UTF-8";

/* ↓Googleフォント読み込み */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;800&display=swap&subset=japanese');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');

:root {
	--color-base: #fff; /* 背景色などのベージュの部分 */
	--color-main: #999999; /* グレー部分 */
	--color-accent: #222e4d; /* 紺  の部分 */
	--color-text: #1a1a1a; /* 文字の色 */
	--color-marker: #e6e6e6; /* 文字のマーカー部分の色 */
	--color-light: #fff;
	--color-red: #6589e6;
	
	--font-primary: 'Noto Sans JP', Meiryo, メイリオ, sans-serif; /* 日本語フォント */
	--font-alphanumeric: 'Outfit', sans-serif; /* 英数フォント */
	--font-icon: 'Font Awesome 6 Free'; /* アイコンフォント */
	--font-title: 'BIZ UDゴシック', Meiryo, メイリオ, sans-serif; /* タイトルフォント */
}

@media screen and (min-width: 1367px) {
	html{ font-size:50%;}}
@media screen and (max-width: 1366px) {
	html{ font-size:50%;}}
@media screen and (max-width: 800px) {
	html{ font-size:70%;}}
@media screen and (max-width: 500px) {
	html{ font-size:60%;}}

@media screen and (min-width: 769px) {
	:root {
		--margin-base: 5rem;
		--border-radius: 0.5rem;
	}

	body{
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--margin-base: 3rem;
		--border-radius: 0.3rem;
	}

	body{
		font-size: 1.3rem;
	}
}