/*---------------------------------
	margin start
---------------------------------*/
.margin--bottom0{
	margin-bottom: 0 !important;
}

.margin--bottomHalf{
	margin-bottom: 0.5rem !important;
}

.margin--bottom1{
	margin-bottom: 1rem !important;
}

.margin--bottom2{
	margin-bottom: 2rem !important;
}

.margin--bottom3{
	margin-bottom: 3rem !important;
}

.margin--bottom4{
	margin-bottom: 4rem !important;
}

.margin--bottom5{
	margin-bottom: 5rem !important;
}

.margin--bottom10{
	margin-bottom: 10rem !important;
}

@media(max-width: 1024px){
	.margin--tbBottom0{
		margin-bottom: 0 !important;
	}

	.margin--tbBottom1{
		margin-bottom: 1rem !important;
	}

	.margin--tbBottom2{
		margin-bottom: 2rem !important;
	}

	.margin--tbBottom3{
		margin-bottom: 3rem !important;
	}

	.margin--tbBottom4{
		margin-bottom: 4rem !important;
	}

	.margin--tbBottom5{
		margin-bottom: 5rem !important;
	}
}

@media(max-width: 600px){
	.margin--spBottom0{
		margin-bottom: 0 !important;
	}

	.margin--spBottom1{
		margin-bottom: 1rem !important;
	}

	.margin--spBottom2{
		margin-bottom: 2rem !important;
	}

	.margin--spBottom3{
		margin-bottom: 3rem !important;
	}

	.margin--spBottom4{
		margin-bottom: 4rem !important;
	}

	.margin--spBottom5{
		margin-bottom: 5rem !important;
	}
}

.margin--top0{
	margin-top: 0 !important;
}

.margin--top1{
	margin-top: 1rem !important;
}

.margin--top2{
	margin-top: 2rem !important;
}

.margin--top3{
	margin-top: 3rem !important;
}

.margin--top4{
	margin-top: 4rem !important;
}

.margin--top5{
	margin-top: 5rem !important;
}

@media(max-width: 1024px) and (min-width: 601px){
	.margin--tbTop0{
		margin-top: 0 !important;
	}

	.margin--tbTop1{
		margin-top: 1rem !important;
	}

	.margin--tbTop2{
		margin-top: 2rem !important;
	}

	.margin--tbTop3{
		margin-top: 3rem !important;
	}

	.margin--tbTop4{
		margin-top: 4rem !important;
	}

	.margin--tbTop5{
		margin-top: 5rem !important;
	}
}

@media(max-width: 600px){
	.margin--spTop0{
		margin-top: 0 !important;
	}

	.margin--spTop1{
		margin-top: 1rem !important;
	}

	.margin--spTop2{
		margin-top: 2rem !important;
	}

	.margin--spTop3{
		margin-top: 3rem !important;
	}

	.margin--spTop4{
		margin-top: 4rem !important;
	}

	.margin--spTop5{
		margin-top: 5rem !important;
	}
}

/*---------------------------------
	margin end
---------------------------------*/

/*---------------------------------
	responsive start
---------------------------------*/
@media(min-width: 1025px){
	.responsive--pcHidden{
		display: none;
	}
}

@media(max-width: 1024px) and (min-width: 601px){
	.responsive--tbHidden{
		display: none;
	}
}

@media(max-width: 600px){
	.responsive--spHidden{
		display: none;
	}
}

/*---------------------------------
	responsive end
---------------------------------*/

/*---------------------------------
	commonList start
---------------------------------*/

.commonList{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: auto;
	margin: 0 auto;
	padding: 0;
	color: var(--mainTextColor);
	list-style: none !important;
}

.commonList--center{
	width: max-content;
	max-width: 100%;
}

.commonList--gap{
	gap: 0.25em;
}

.commonList--row{
	flex-direction: row;
	gap: 0;
}

.commonListItem{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0 0.25em;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	color: inherit;
}

.commonListItem:before{
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	line-height: 1.5 !important;
}

.commonListInner{
	display: block;
	width: 100%;
	margin: 0 !important;
	line-height: 1.5 !important;
	color: inherit;
	font-weight: inherit !important;
}

@media(min-width: 961px){
	.commonList--col2{
		width: 100%;
		flex-direction: row;
		gap: 0.5em 2em;
	}
	.commonList--col2 > li{
		width: calc((100% - 2em) / 2);
	}
}

.commonList--space > .commonListItem:not(:first-of-type){
	margin-top: 1em;
}

.commonList--full > .commonListItem{
	width: 100%;
}

.commonList--dots > .commonListItem:before{
	content: "\30FB";
	display: block;
	color: var(--mainTextColor);
	font-weight: var(--fontWeightBold);
}

.commonList--square > .commonListItem:before{
	content: "\25A0";
	display: block;
}

.commonList--circle > .commonListItem:before{
	content: "\25CF";
	display: block;
}

.commonList--mark > .commonListItem:before{
	content: "\203B";
	display: block;
}

.commonList--num{
    counter-reset: listNum 0;
}

.commonList--num > .commonListItem{
	counter-increment: listNum 1;
}

.commonList--num > .commonListItem:before{
	content: counter(listNum)".";
	font-weight: var(--fontWeightNorml);
}

.commonList--redMark > .commonListItem:before{
	content: "info";
	color: #CC3333;
	font-family: 'LigatureSymbols' !important;
	-webkit-text-rendering: optimizeLegibility;
	-moz-text-rendering: optimizeLegibility;
	-ms-text-rendering: optimizeLegibility;
	-o-text-rendering: optimizeLegibility;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-font-feature-settings: "liga" 1, "dlig" 1;
	-moz-font-feature-settings: "liga=1, dlig=1";
	-ms-font-feature-settings: "liga" 1, "dlig" 1;
	-o-font-feature-settings: "liga" 1, "dlig" 1;
	font-feature-settings: "liga" 1, "dlig" 1;
	line-height: 1;
}

.commonList--texts .commonListTitle{
	display: block;
	width: auto;
	white-space: nowrap;
	text-align: left;
	margin: 0;
	flex-grow: 0;
	flex-shrink: 0;
	font-weight: var(--fontWeightBold);
}

.commonList--texts .commonListInner{
	display: block;
	width: auto;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
}

@media(max-width: 600px){
	.commonList--spGgap{
		gap: 1.5em;
	}
	.commonListItem--spColumn{
		flex-direction: column;
		gap: 0.25em;
	}
}

/*---------------------------------
	commonList end
---------------------------------*/

/*---------------------------------
	spaceTable start
---------------------------------*/

.spaceTable{
	width: max-content;
	max-width: 100%;
	margin: 0;
	table-layout: auto;
	border: hidden;
	& th{
		font-weight: var(--fontWeightNormal);
		padding: 0;
		text-align: right;
		vertical-align: top;
	}
	& td{
		font-weight: var(--fontWeightNormal);
		padding: 0 0 0 1.5em;;
		vertical-align: top;
	}
	& .padd1{
		& th,td{
			padding-bottom: 1em;
		}
	}
	
}

/*---------------------------------
	spaceTable end
---------------------------------*/

/*---------------------------------
	textsGap start
---------------------------------*/

.textsGap{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0 1em;
}

/*---------------------------------
	textsGap end
---------------------------------*/
