/*---------------------------------
	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;
}

@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){
	.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(min-width: 601px){
	.responsive--tbHidden{
		display: none;
	}
}

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

/*---------------------------------
	font start
---------------------------------*/

.font--gothic{
	font-family: var(--fontFamily);
}

.font--mincho{
	font-family: var(--fontFamilySerif);
}

/*---------------------------------
	font end
---------------------------------*/

/*---------------------------------
	nColumsContents start
---------------------------------*/
.nColumsContents{
	--gapX: 2em;
	--gapY: 3em;
	--col: 2;
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: var(--gapY) var(--gapX);
	padding: 0;
	margin: 0;
}

.nColumsContents--thin{
	--gapX: 1em;
	--gapY: 1em;
}

.nColumsContents_item{
	width: calc((100% - (var(--gapX) * (var(--col) - 1))) / var(--col));
}

@media(min-width: 1025px){
	.nColumsContents--pcCol5{
		--col: 5;
	}
	.nColumsContents--pcCol4{
		--col: 4;
	}
	.nColumsContents--pcCol3{
		--col: 3;
	}
	.nColumsContents--pcCol2{
		--col: 2;
	}
	.nColumsContents--pcCol1{
		--col: 1;
	}
}

@media(max-width: 1024px) and (min-width: 601px){
	.nColumsContents{
		--col: 2;
	}
	.nColumsContents--tbCol5{
		--col: 5;
	}
	.nColumsContents--tbCol4{
		--col: 4;
	}
	.nColumsContents--tbCol3{
		--col: 3;
	}
	.nColumsContents--tbCol2{
		--col: 2;
	}
	.nColumsContents--tbCol1{
		--col: 1;
	}
}

@media(max-width: 600px){
	.nColumsContents{
		--col: 1;
	}
	.nColumsContents--spCol5{
		--col: 5;
	}
	.nColumsContents--spCol4{
		--col: 4;
	}
	.nColumsContents--spCol3{
		--col: 3;
	}
	.nColumsContents--spCol2{
		--col: 2;
	}
	.nColumsContents--spCol1{
		--col: 1;
	}
}

.nColumsContents_itemLink,
.nColumsContents_itemLink:hover{
	display: block;
	text-decoration: none;
	color: inherit;
}

/*---------------------------------
	nColumsContents end
---------------------------------*/

/*---------------------------------
	priceTable start
---------------------------------*/
.priceTable,
.priceTable tbody{
	display: flex;
	flex-direction: column;
	gap: 1em 0;
	width: 100%;
}

.priceTable tr{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: 1px solid #BFBFBF;
	width: 100%;
	margin: 0;
}

.priceTable th{
	font-weight: var(--fontWeightBold);
	padding: 0 0.5em 0.5em;
}

.priceTable td{
	font-weight: var(--fontWeightNormal);
	padding: 0 0.5em 0.5em;
}

.listWrapper{
	justify-content: flex-start;
	& > th{
		white-space: nowrap;
	}
	& > td{
		flex-grow: 1;
		flex-shrink: 1;
		& table{
			width: 100%;
			& tr:last-of-type{
				border-bottom: none;
				& th,td{
					padding-bottom: 0;
				}
			}
		}
	}
}


/*---------------------------------
	priceTable 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: #333;
	list-style: none !important;
}

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

.commonList--indent{
	padding-left: 0.5em;
}

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

.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: #333;
	font-weight: var(--fontWeightBold);
	transform: scale(1.5);
	transform-origin: center center;
}

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

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

.commonList--asta{
	flex-direction: column;
	align-items: flex-end;
	& .commonListItem{
		width: 70%;
		color: #777;
		&:before{
			content: "*";
			display: block;
			color: #D00;
			font-size: 150%;
		}
	}
}

.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
---------------------------------*/