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

/*---------------------------------
	featureList start
---------------------------------*/

.featureList{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 3em;
	width: 100%;
	margin: 0 auto;
	counter-reset: feature 0;
}

.featureListItem{
	--gapX: 3em;
	counter-increment: feature 1;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0 var(--gapX);
	width: 100%;
	margin: 0;
}

.featureListItem:nth-of-type(odd){
	flex-direction: row-reverse;
}

.featureListImage{
	width: 50%;
	position: relative;
}

.featureListImage:before{
	content: "";
	display: block;
	padding-top: 41.4%;
}

.featureListImage img{
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}

.featureListContent{
	width: min(calc((90% / 2) - var(--gapX)),calc((960px / 2) - var(--gapX)));
}

.featureListTitle{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0 1em;
	font-size: 125%;
	font-weight: var(--fontWeightBold);
	margin: 0 0 1em;
	color: var(--strongTextColor);
}

.featureListTitle:before{
	content: counter(feature);
	font-size: 175%;
	color: #FFF;
	background-color: var(--strongTextColor);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
	line-height: 1;
	border-radius: 0.25em;
}

.featureListText{
	width: 100%;
	margin: 0;
}

@media(max-width: 600px){

	.featureList{
		width: 90%;
	}

	.featureListItem,
	.featureListItem:nth-of-type(odd){
		flex-direction: column;
		gap: 1em;
	}

	.featureListImage,
	.featureListContent{
		width: 100%;
	}

	.featureListTitle{
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0 1em;
		font-size: 125%;
		font-weight: var(--fontWeightBold);
		margin: 0 0 1em;
		color: var(--strongTextColor);
	}

	.featureListTitle:before{
		content: counter(feature);
		font-size: 175%;
		color: #FFF;
		background-color: var(--strongTextColor);
		display: flex;
		align-items: center;
		justify-content: center;
		width: 1.5em;
		height: 1.5em;
		line-height: 1;
		border-radius: 0.25em;
	}

	.featureListText{
		width: 100%;
		margin: 0;
	}

}

/*---------------------------------
	featureList end
---------------------------------*/

/*---------------------------------
	messageList start
---------------------------------*/

.messageList{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 3em;
	width: 100%;
	margin: 0 auto;
	counter-reset: feature 0;
}

.messageListItem{
	--gapX: 3em;
	counter-increment: feature 1;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0 var(--gapX);
	width: 100%;
	margin: 0;
}


.messageListImage:before{
	content: "";
	display: block;
	padding-top: 41.4%;
}

.messageListImage img{
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}


.messageListTitle{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0 1em;
	font-size: 125%;
	font-weight: var(--fontWeightBold);
	margin: 0 0 1em;
	color: var(--strongTextColor);
}

.messageListTitle:before{
	content: counter(feature);
	font-size: 150%;
	color: #FFF;
	background-color: var(--strongTextColor);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
	line-height: 1;
	border-radius: 0.25em;
}

.stepTitle{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0 1em;
	font-size: 125%;
	font-weight: var(--fontWeightBold);
	margin: 0 0 1em;
	color: var(--strongTextColor);
}

.messageListText{
	width: 100%;
	margin: 0;
}

@media(max-width: 600px){

	.messageList{
		width: 90%;
	}

	.messageListItem,
	.messageListItem:nth-of-type(odd){
		flex-direction: column;
		gap: 1em;
	}

	.messageListImage,
	.messageListContent{
		width: 100%;
	}

	.messageListTitle{
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0 1em;
		font-size: 125%;
		font-weight: var(--fontWeightBold);
		margin: 0 0 1em;
		color: var(--strongTextColor);
	}

	.messageListTitle:before{
		content: counter(feature);
		font-size: 175%;
		color: #FFF;
		background-color: var(--strongTextColor);
		display: flex;
		align-items: center;
		justify-content: center;
		width: 1.5em;
		height: 1.5em;
		line-height: 1;
		border-radius: 0.25em;
	}

	.messageListText{
		width: 100%;
		margin: 0;
	}

}

/*---------------------------------
	messageList end
---------------------------------*/

/*---------------------------------
	serviceList start
---------------------------------*/

.serviceList{
	--padding: 2em;
	--borderColor: #DFDFDF;
	width: 100%;
	table-layout: fixed;
	border: hidden;
}

.serviceListItem{
	width: 50%;
	border: 1px solid var(--borderColor);
	padding-block: var(--padding);
}

@media(min-width: 601px){
	tr:first-of-type .serviceListItem{
		padding-top: 0;
	}
	tr:last-of-type .serviceListItem{
		padding-bottom: 0;
	}
	.serviceListItem:nth-of-type(odd){
		padding-right: var(--padding);
	}
	.serviceListItem:nth-of-type(even){
		padding-left: var(--padding);
	}
}

@media(max-width: 600px){
	.serviceList{
		--padding: 3em;
	}
	.serviceListItem{
		display: block;
		width: 100%;
		border: none;
		border-top: 1px solid var(--borderColor);
	}
	tr:first-of-type .serviceListItem:first-of-type{
		border: none;
		padding-top: 0;
	}
	tr:last-of-type .serviceListItem:last-of-type{
		padding-bottom: 0;
	}
}

.serviceListTitle{
	background-color: #FFF;
	width: 80%;
	text-align: center;
	font-size: 125%;
	font-weight: var(--fontWeightBold);
	padding: 0.75em;
	margin: 0 auto 1em;
	color: var(--strongTextColor);
	border-radius: calc((1.5em + (0.75em * 2)) / 2);
}

.serviceListImage{
	display: block;
	width: 100%;
	position: relative;
	margin: 0 auto 0.5em;
}

.serviceListImage:before{
	content: "";
	display: block;
	padding-top: 41.4%;
}

.serviceListImage img{
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
}

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

/*---------------------------------
	serviceList end
---------------------------------*/

/*---------------------------------
	newsPickupList start
---------------------------------*/
.newsPickupList{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2em;
	flex-wrap: wrap;
}

@media(max-width: 600px){
	.newsPickupList{
		flex-direction: column;
		align-items: center;
	}
}

@media(min-width: 1025px){
	.newsPickupListItem{
		width: calc((100% - (2em * 2)) / 3);
	}
}

@media(max-width: 1024px) and (min-width: 601px){
	.newsPickupListItem{
		width: calc((100% - 2em) / 2);
	}
}

@media(max-width: 600px){
	.newsPickupListItem{
		width: 100%;
		max-width: 20em
	}
}

.newsPickupListItem_link,
.newsPickupListItem_link:hover{
	color: inherit;
	text-decoration: none;
}

.newsPickupListItem_inner{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0.5em 0.5em 1.5em;
	transition: background-color 0.25s;
}

.newsPickupListItem_link:hover .newsPickupListItem_inner{
	background-color: var(--themeColor);
}

.newsPickupListItem_date{
	flex-grow: 0;
	flex-shrink: 0;
	width: 100%;
	padding: 0.5em;
	margin: 0 0 0.5em;
	color: var(--mainTextColor);
	transition: color 0.25s, border 0.25s;
	border-bottom: 1px solid var(--mainTextColor);
}

.newsPickupListItem_link:hover .newsPickupListItem_date{
	color: #FFF;
	text-decoration: none;
	border-bottom: 1px solid #FFF;
}

.newsPickupListItem_image{
	position: relative;
	width: 100%;
	padding-top: calc(100% / 4 * 3);
	overflow: hidden;
}

.newsPickupListItem_image img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s;
}

.newsPickupListItem_link:hover .newsPickupListItem_image img{
	transform: scale(1.1);
}

.newsPickupListItem_title{
	width: 100%;
	padding: 0 0.5em;
	margin: 0;
	color: var(--mainTextColor);
	text-decoration: none;
	transition: color 0.25s;
}

.newsPickupListItem_link:hover .newsPickupListItem_title{
	color: #FFF;
	text-decoration: none;
}

/*---------------------------------
	newsPickupList start
---------------------------------*/


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

.commonList--gap{
	gap: 0.5em 0;
}

.commonList--gap2{
	gap: 2em 0;
}

.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--mark > .commonListItem:before{
	content: "※";
	display: block;
	font-weight: var(--fontWeightBold);
}

.commonList--markNum{
    counter-reset: markNum 0;
}

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

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

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

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

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

.commonList--zeroNum > .commonListItem:before{
	content: counter(listNum,decimal-leading-zero)".";
	color: var(--themeColor);
	font-weight: var(--fontWeightBold);
	font-size: 125%;
	line-height: calc(1.5 / 1.25);
}

.commonList--markNum > .commonListItem:before{
	content: "※"counter(listNum);
	font-weight: var(--fontWeightNormal);
}

.commonList--triangle > .commonListItem:before{
	content: "next";
	color: #3D883F;
	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;
	font-size: 150%;
}

.commonList--dia > .commonListItem:before{
	content: "◆";
}

.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--row{
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0;
}

.commonList--rowGap{
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75em 1.5em;
}

.commonList--border{
	gap: 1.5em;
}

.commonList--border > .commonListItem{
	width: 100%;
	border-bottom: 1px solid #DFDFDF;
	padding-bottom: 1em;
}

/*---------------------------------
	commonList end
---------------------------------*/
/*---------------------------------
	list start
---------------------------------*/
.list{
	list-style: none;
	margin-bottom: 1em;
	padding: 0;
}

.list li{
	position: relative;
	padding-left: 1.25em;
}

.list li:before{
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}

.list.bkcircle li:before{
	content: "\25CF";
	position: absolute;
	top: 0;
	left: 0;
}

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

.list.num-list li{
	counter-increment: listNum 1;
}

.list.num-list li:before{
	content: counter(listNum)".";

}

/*---------------------------------
	list end
---------------------------------*/
/*---------------------------------
	faqList start
---------------------------------*/
.faqList {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.faqItem {
	max-width: 100%;
	background-color: #FFF;
}


.faqItem summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em 1em 1em;
	border-radius: 5px;
	background-color: var(--themeColor);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.faqItem summary::-webkit-details-marker {
	display: none;
}

.faqItem summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
	content: '';
	transition: transform .3s;
}

.faqItem[open] summary::after {
	transform: rotate(225deg);
}

.faqItem-answer{
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5em;
}

.faqItem > div  {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: 1em 1.25em 1.25em 1em;
	color: #333333;
	transition: transform .5s, opacity .5s;
}

.faqItem[open] > div {
	transform: none;
	opacity: 1;
}
/*---------------------------------
	faqList end
---------------------------------*/
/*-------------------------------
	messagelistTitle start
---------------------------------*/
.messagelistTitle {
  margin-bottom: 0;
}

/*-------------------------------
	messagelistTitle end
---------------------------------*/
/*---------------------------------
    commonList start
---------------------------------*/

.commonlistWapper {
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}

.commonList_CenterBlock{
	display:flex;
	justify-content: center;
}

.commonList_CenterColBlock{
	display:flex;
	flex-direction: column;
}

.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;
	gap: 0.5em 0;
}

.commonList--Gap0{
	gap: 0 !important;
}

.commonList-gap1_0{
	gap: 1em 0 !important;
}

.commonList-gap15_0{
	gap: 1.5em 0 !important;
}

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

.commonListItem.modifyGap0{
	gap: 0;
}

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

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

.titleColor01{
	color:#FF33CC;
}

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

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

.commonList--num > .commonListItem:before{
	content: counter(listNum)".";
	color: #333;
	font-weight: var(--fontWeightBold);
	font-size:100%;
}

.commonList--subMark{
	padding-left: 1em;
}

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

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

.commonList--point > .commonListItem:before{
	content: "\02022";
}

.commonList--star > .commonListItem:before{
	content: "\2605";
}

.commonList--flower > .commonListItem:before{
	content: "\203B";
}

.commonList--diamond > .commonListItem:before{
	content: "\025c6";
}

.commonList--circle > .commonListItem:before{
	content: "\25CB";
}

.commonList--checkbox > .commonListItem:before{
	content: "\2611";
	
}


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