/*---------------------------------
	フォント設定 start
---------------------------------*/
/*
 * "LigatureSymbols" is lisenced under the SIL Open Font License 1.1
 * http://kudakurage.com/ligature_symbols/
 */

@font-face {
	font-family: 'LigatureSymbols';
	src: url('../../font/LigatureSymbols/LigatureSymbols-2.11.eot');
	src: url('../../font/LigatureSymbols/LigatureSymbols-2.11.eot?#iefix') format('embedded-opentype'),
		url('../../font/LigatureSymbols/LigatureSymbols-2.11.woff') format('woff'),
		url('../../font/LigatureSymbols/LigatureSymbols-2.11.ttf') format('truetype'),
		url('../../font/LigatureSymbols/LigatureSymbols-2.11.svg#LigatureSymbols') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*---------------------------------
	フォント宣言 end
---------------------------------*/

/*---------------------------------
	CSSカスタムプロパティ start
---------------------------------*/
:root {
	--mainColor01_hex: #32A6D7;
	--mainColor01_rgb: 50, 166, 215;
	
	--c-hex-accent: #cea789;
	
	--bg-hex-theme: #edebea;
	
	--f-letterSpacing-catch: 0.1em;
	
	/* ボタン */
	--buttonBgColor: var(--c-hex-accent); /* 背景色 */
	--buttonActiveBgColor: #FFF; /* ホバー時背景色 */
	--buttonTextColor: #FFF; /* 文字色 */
	--buttonActiveTextColor: var(--c-hex-accent); /* ホバー時文字色 */
	--buttonBorderColor: var(--buttonBgColor); /* 枠線色 */
}

/*---------------------------------
	CSSカスタムプロパティ end
---------------------------------*/

/*---------------------------------
	共通スタイル start
---------------------------------*/
body{
	font-family: Helvetica Neue,Arial,Hiragino Kaku Gothic ProN,Hiragino Sans,-apple-system,BlinkMacSystemFont,Meiryo,sans-serif;
	font-size: 16px;
	line-height: 1.75;
	font-weight: 500;
	color: #333;
}

@media(max-width: 600px){
	body{
		font-size: calc(18px * 0.8);
	}
}

table{
	table-layout: fixed;
}

h1,h2,h3,h4,h5,h6{
	font-size: 100%;
	font-weight: inherit;
	margin-bottom: 1em;
}

img{
	display: block;
	max-width: 100%;
}

@media(min-width: 601px){
	a[href^="tel"],
	a[href^="tel"]:hover{
		color: inherit;
		cursor: default;
		text-decoration: none;
		pointer-events: none;
		
	}
}

/*---------------------------------
	共通スタイル end
---------------------------------*/