/*---------------------------------
	フォント設定 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: var(--fontWeightNormal);
	font-style: normal;
}

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

/*---------------------------------
	CSSカスタムプロパティ start
---------------------------------*/
:root {
	/* フォント */
	/* 使用するフォントによって設定を切り替えてください */
	
	/* 游ゴシック */
	--fontFamily: "Noto Sans JP", YuGothic,"Yu Gothic","Avenir","Helvetica Neue","Helvetica","Arial","Hiragino Sans","ヒラギノ角ゴシック","メイリオ", Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	
	/* Noto Serif Japanese */
	/* --fontFamily: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	/* 
	注意1：Noto Serif Japanese使用の際はwebfont.jsから、読み込み設定を行うこと(詳しい方法はwebfont.js内コメントを参照ください。
	
	注意2：Noto Serif Japanese使用の際は以下のCSSカスタムプロパティの設定の変更を行うこと
	--fontWeightBold: 600;
	*/
	
	/* KiwiMaru */
	/* --fontFamily: "Kiwi Maru", YuGothic,"Yu Gothic","Avenir","Helvetica Neue","Helvetica","Arial","Hiragino Sans","ヒラギノ角ゴシック","メイリオ", Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif; */
	/* 
	注意1：KiwiMaru使用の際はwebfont.jsから、読み込み設定を行うこと(詳しい方法はwebfont.js内コメントを参照ください。
	
	注意2：KiwiMaru使用の際は以下のCSSカスタムプロパティの設定の変更を行うこと
	--fontWeightBold: 500;
	*/
	
	--fontWeightNormal: 400; /* 通常フォント太さ */
	--fontWeightBold: 600; /* 太文字フォント太さ */

	--mainColor01_hex: #144B47;
	--mainColor01sub_hex: #96CCC8;
	--mainColor02_hex: #F0FBFF;

	--mainTextColor: #333;  /* 文字色 */

}

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

/*---------------------------------
	共通スタイル start
---------------------------------*/
html,body{
	font-family: var(--fontFamily);
	font-size: 18px;
	font-weight: var(--fontWeightNormal);
	color: var(--mainTextColor);
}

@media(max-width: 600px){
	html,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;
	width: 100%;
	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
---------------------------------*/