@charset "UTF-8";

/* =========================================================
   BASE STYLES
   ========================================================= */

/* ===== 変数 ===== */

:root {
	/* メインカラー（赤） */
	--color-main: #e74c3c;

	/* アクセント（緑・青・黄） */
	--color-green: #27ae60;
	--color-blue: #2980b9;
	--color-yellow: #f1c40f;

	/* グレー階層 */
	--color-dark: #333;
	--color-mid: #666;
	--color-light: #999;

	/* テキスト */
	--color-text: #333;
	--color-link: #2980b9;

	/* フォント */
	--font-main: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	
	/* Gutenberg 文字サイズ */
	--wp--preset--font-size--small: 1rem;
	--wp--preset--font-size--medium: 1rem;
	--wp--preset--font-size--large: 1rem;
	--wp--preset--font-size--x-large: 1rem;

}

@media (min-width: 740px) {

	:root {
		--wp--preset--font-size--small: 0.95rem;
		--wp--preset--font-size--medium: 1.1rem;
		--wp--preset--font-size--large: 1.25rem;
		--wp--preset--font-size--x-large: 1.4rem;
	}

}

/* ===== 共通設定 ===== */

* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	height: 100%;
	font-family: var(--font-main);
	color: var(--color-text);
	line-height: 1.8;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 5px;
}

iframe {
	max-width: 100%;
	border: 0;
}

/* ===== テキスト ===== */

p {
	line-height: 1.8;
}

@media (min-width: 740px) {
	p {
		line-height: 2;
	}
}

/* ===== リンク ===== */

a {
	color: var(--color-link);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a img {
	border: none;
}

a:hover img {
	opacity: 0.7;
}

/* ===== 汎用クラス ===== */

.text-sm { font-size: 0.9rem; }
.text-md { font-size: 1.05rem; }
.text-lg { font-size: 1.25rem; }
.text-red { color: #e74c3c; }
.text-center { text-align: center;}

.mt-10 { margin-top: 10px; }

/* ===== 配置補助 ===== */

.alignleft {
	float: left;
	margin-right: 1em;
}

.alignright {
	float: right;
	margin-left: 1em;
}

.aligncenter {
	display: table;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

figure {
	margin: 0;
}

/* ===== スクリーンリーダー用テキスト ===== */

.screen-reader-text:focus {
	position: static;
	width: auto;
	height: auto;
	clip: auto;
	clip-path: none;
	margin: 0;
	padding: 0.5em 1em;
	background: #fff;
	color: #000;
	z-index: 100;
}
