@charset "UTF-8";

/* ★″
 * Font.css for 陶磁器フェア v1.0β
 * 
 * 煩雑になりがちなWebフォントの設定を管理
 */


/* =========================================================
	デフォルト
========================================================= */

	html{
		font-size: 62.5%;/* "BaseSize" 10px */
			font-family: Century Gothic, '游ゴシック', YuGothic, sans-serif;
			font-weight: 500;
	}

	body {
		font-size: 1.4em; /* "BaseSize" x 1.4 = 14px */
		line-height: 1.8;
	}

@media screen and (min-width: 768px){ 

	body {
		font-size: 1.6em; /* "BaseSize" x 1.6 = 16px */
		line-height: 1.6;
	}

}


/* =========================================================
	WEB FONT(Adobe Typekit)
========================================================= */

/* 基本フォント */
	body{
		font-family: "quasimoda", "fot-tsukuardgothic-std"; font-weight: 400;
		color: #111;
	}

/* 太字 */
	b,
	strong {
		font-family: "quasimoda", "fot-tsukuardgothic-std"; font-weight: 700;
	}

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

/* テキストリンク */
	a{
		transition: all 0.3s ease 0s;
	}
		a:link {
			font-family: "dnp-shuei-gothic-gin-std", sans-serif; font-weight: 700;
			color: #684221;
			text-decoration: none;
		}
		a:visited {
			color: #684221;
		}
		a:hover {
			color: #E55C72;
		}
		a:active {
			color: #E55C72;
		}


/* 見出し */
	section h1,
	article h1{
		font-family: "dnp-shuei-gothic-gin-std", sans-serif; font-weight: 600;
		font-size: 1.4em;
		line-height: 1.4;

		color: #5C3111;

		margin: 0 0 8px 0;
		
		clear: both;
	}

	section h2,
	article h2{
		font-family: "dnp-shuei-gothic-gin-std", sans-serif; font-weight: 600;
		font-size: 1.2em;
		line-height: 1.2;

		color: #684221;

		margin: 24px 0 8px 0;
		clear: both;
	}

		section h1 + h2,
		article h1 + h2{
			margin: 8px 0;
		}

@media screen and (min-width: 768px){ 

	section h1,
	article h1{
		margin: 0 0 16px 0;
	}


	section h2,
	article h2{
		margin: 40px 0 16px 0;
	}

		section h1 + h2,
		article h1 + h2{
			margin: 16px 0;
		}

}

/* 本文 */
	section p,
	article p{
		text-align: justify;
		margin: 8px 0;
		line-height: 1.5;
	}







