/*---------------------------------
	margin start
---------------------------------*/
.margin--bottom0{
	margin-bottom: 0 !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){
	.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
---------------------------------*/

/*---------------------------------
	contentWrapper start
---------------------------------*/

.contentWrapper{
	display: block;
	border-radius: 1em;
	background-color: #FFF;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	padding: 2em;
}

.contentWrapper--innerGray{
	display: block;
	border-radius: 0.5em;
	background-color: #EFEFEF;
	padding: 1em;
	margin: 0;
}

/*---------------------------------
	contentWrapper end
---------------------------------*/

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

.commonList{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.commonListItem{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0 0.5em;
	margin: 0;
}

.commonListItem:before{
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
}

.commonListInner{
	display: block;
	width: 100%;
	margin: 0;
}

@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: "";
	display: block;
	width: 0.3em;
	height: 0.3em;
	margin: 0.6em 0;
	border-radius: 50%;
	background-color: var(--mainTextColor);
}

.commonList--huimaru > .commonListItem:before{
	content: "●";
	font-family: var(--fontFamily);
	display: block;
	color: var(--themeColorSt);
}

.commonList--mark,
.commonList--markGray{
	width: calc(100% - 0.5em);
	margin: 0 0 0 0.5em;
}

.commonList--mark > .commonListItem:before{
	content: "※";
	display: block;
	color: #D00;
	font-weight: var(--fontWeightBold);
}

.commonList--markGray > .commonListItem:before{
	content: "※";
	display: block;
	font-weight: var(--fontWeightBold);
}

.commonList--num,
.commonList--simpleNum{
    counter-reset: listNum 0;
    gap: 1em 0;
}

.commonList--simpleNum{
	align-items: baseline;
    gap: 1em;
}

.commonList--num > .commonListItem{
	counter-increment: listNum 1;
	gap: 0 3em;
}

.commonList--simpleNum > .commonListItem{
	counter-increment: listNum 1;
	gap: 0 0.5em;
}

.commonList--num > .commonListItem:before{
	content: counter(listNum);
	color: var(--themeSubColor);
	font-weight: var(--fontWeightBold);
	font-family: var(--fontFamilyMaru);
	font-size: 175%;
	line-height: 1;
	width: 1.5em;
	padding: 0 0 0.25em;
	text-align: center;
	background-image: url("../../images/common/listIcon.svg");
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: bottom center;
	text-shadow: 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF;
}

.commonList--simpleNum > .commonListItem:before{
	content: counter(listNum)".";
	color: var(--themeColorC);
	font-size: 150%;
}

.commonList--num > .commonListItem .commonListInner{
	padding-top: 0.25em;
}

.commonList--simpleNum > .commonListItem .commonListInner{
	padding-top: 0.5em;
}

.commonList--month{
	gap: 3em 0;
}

.commonList--month > .commonListItem{
	gap: 0 2em;
}

.commonList--month > .commonListItem .month{
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	justify-content: center;
	color: var(--themeSubColor);
	font-weight: var(--fontWeightBold);
	font-family: var(--fontFamilyMaru);
	font-size: 175%;
	line-height: 1;
	width: 2em;
	padding: 0 0 0.25em;
	text-align: center;
	background-image: url("../../images/common/listIcon.svg");
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: bottom center;
	text-shadow: 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF;
}

.commonList--month > .commonListItem .month:after{
	content: "月";
	color: var(--themeSubColor);
	font-weight: var(--fontWeightBold);
	font-family: var(--fontFamilyMaru);
	font-size: 65%;
	line-height: 1;
}

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

.commonList--icon > li:before{
	content: "";
	display: block;
	width: 1.5em;
	height: 1.5em;
	background-image: url("../../images/common/listIconF.png");
	background-position: center center;
	background-size: contain;
}

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