@charset "UTF-8";

/* ★″
 * Font.css
 * 
 * 煩雑になりがちなWebフォントの設定を一括管理
 */

/* =========================================================
	Google Fonts
========================================================= */
/*
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');
*/


/* =========================================================
	テキストサイズ
========================================================= */

/* reboot.css で設定済の内容

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	background-color: #fff;
}

*/

/* "BaseSize" = 10px = 62.5% | "BaseSize" x 1.6 = 16px

	html{ font-size: 62.5%; }
	body { font-size: 1.6em; }
*/


/* =========================================================
	フォント設定
========================================================= */

/* 基本フォント */
	body{
		font-family: sans-serif; 
		font-weight: 400;
		letter-spacing: 0.08em;
	}

/* 太字 */
	b,
	strong {
		font-weight: 700;
	}

/* 注釈や細目 */
	small {
		font-size: 0.9em;
	}

/* テキストリンク */
	a{
	}
		a:link {
			font-weight: 400;
			color: #FB2E1F;
			text-decoration: none;
			/*border-bottom: 1px solid #FB2E1F;*/
		}
		a:visited {
			color: #C40312;
		}
		a:hover {
			color: #E55C72;
			/*border-bottom: 2px solid #E55C72;*/
		}
		a:active {
			color: #E55C72;
			/*border-bottom: 2px solid #E55C72;*/
		}



/* =========================================================
	テキスト周りの設定
========================================================= */


/* 本文 */
	section p{
		text-align: justify;
		margin: 0 0 0.8em 0;
		line-height: 1.8;
	}
