@charset "utf-8";

/*----- フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



/*-------------------------------
	変数設定
-------------------------------*/

:root{

	/*----- 文字 */
	/* 書体 */
	--jp: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--en1: "Montserrat", sans-serif;
	--en2: "Roboto", sans-serif;
	
	/* 文字サイズ */
	--font-size: calc(var(--font-size-number) * 1rem);

	/* 行間 */
	--line-height: calc(var(--line-height-number) / var(--font-size-number));

	/*----- 色設定 */
	--maincolor: #007BC7;
	--subcolor1: #4CB9FD;
	--subcolor2: #003D63;
	/*--subcolor3: #DDF4F8;*/
	--subcolor3: #ddf4e8;
	--blackcolor: #000;
	--graycolor: #eee;
	--gradcolor: linear-gradient(0deg, var(--maincolor) 0%, var(--subcolor1) 100%);

	/*----- アニメーション設定 */
	--transition: .3s all cubic-bezier(0.1, 0.7, 0.4, 1);
	--opacity: .6;

	/*----- その他設定 */

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

	:root{

		/*----- コンテンツ幅 */
		--maxwidth-number: 130rem;
		--maxwidth: calc(var(--maxwidth-number) + (var(--padding-leftright) * 2));
		--maxwidth120-number: 120rem;
		--maxwidth120: calc(var(--maxwidth120-number) + (var(--padding-leftright) * 2));
		--maxwidth100-number: 100rem;
		--maxwidth100: calc(var(--maxwidth100-number) + (var(--padding-leftright) * 2));

		/*----- 余白 */
		--padding-topbottom: 14rem;
		--padding-leftright: 2.5rem;

		/*----- 文字 */
		/* 文字サイズ */
		--root-font-size: 62.5%;
		--font-size-number: 1.6;

		/* 行間 */
		--line-height-number: 3.2;

	}

}
@media screen and (max-width:1380px) and (min-width: 769px){

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	:root{
		
		/*----- スマホカンプサイズ */
		--sp-design-width: 750;

		/*----- コンテンツ幅 */
		--maxwidth-number: 100%;
		--maxwidth: var(--maxwidth-number);
		--maxwidth100-number: 100%;
		--maxwidth100: var(--maxwidth100-number);

		/*----- 余白 */
		--padding-topbottom: 15rem;
		--padding-leftright: 5rem;

		/*----- 文字 */
		/* 文字サイズ */
		--root-font-size: calc((10 / var(--sp-design-width)) * 100vw);
		--font-size-number: 2.6;

		/* 行間 */
		--line-height-number: 5.2;

	}

}