@charset "UTF-8";
/* CSS Document */
/*-----------------------*/

/* HTML-All*/

/*-----------------------*/
/*-- font-size-----

	1rem = 16px

------------------*/
/*-----------------------*/

/* レイアウト  */

/*-----------------------*/
body {
	padding: 0;
	margin: 0;

	font-family: var(--baseFonts);
	font-size: var(--txt-reg);
	font-weight: var(--normal);
	line-height: var(--lh-reg);
	color: var(--c-bk);

	background-color: var(--c-base);

	width:100%;
	height: 100%;
	min-height: 100vh;

    display: flex;
    flex-direction: column;
}
#layout{
	width: 100%;
	flex-grow: 1;
}
/*-----------------------*/
/* コンテンツ//
sectionあるいは直下の要素==>
.content__wrapper
.contentMax
*/
/*-----------------------*/
#content{
	width: 100%;
	margin: 0 auto;
}
.content__wrapper{
	width: 100%;
    margin-top: var(--mp-tb-2xl);
}
.content__fx-wrapper{
	margin-top: var(--mp-tb-2xl);
	width: var(--fx-width);
	margin-left: auto;
	margin-right: auto;
}



/*-------------------------------*/

/* Tablet 1023px */

/*------------------------------*/
@media (max-width: 1023px) {
}/*Tablet END*/



/*-------------------------------*/

/* Smartphone 767px */

/*------------------------------*/
@media (max-width: 767px) {
}/*Smartphone END*/