@charset "utf-8";

/*----- フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');



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

:root{

	/*----- 文字 */
	/* 書体 */
	--jp: "Zen Kaku Gothic New", sans-serif;
	--jp2: "Noto Serif JP", serif;
	--en: "Cormorant Garamond", serif;
	
	/* 文字サイズ */
	--font-size: calc(var(--font-size-number) * 1rem);

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

	/*----- 色設定 */
	--maincolor: #47bbc5;
	--subcolor: #00a077;
	--blackcolor: #3e3a39;
	--graycolor: #222;
	/* --gradcolor: linear-gradient(90deg, var(--maincolor) 0%, var(--subcolor) 100%); */

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

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

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

	:root{

		/*----- コンテンツ幅 */
		--maxwidth-number: 98rem;
		--maxwidth: calc(var(--maxwidth-number) + (var(--padding-leftright) * 2));
		--widewidth-number: 120rem;
		--widewidth: calc(var(--widewidth-number) + (var(--padding-leftright) * 2));

		/*----- 余白 */
		--padding-topbottom: 12rem;
		--padding-leftright: 3rem;

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

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

	}

}
@media screen and (max-width:1240px) 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);

		/*----- 余白 */
		--padding-topbottom: 10rem;
		--padding-leftright: 4rem;

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

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

	}

}