.accordion ul {
	width:100%;
	padding:0;
}

.accordion ul li a {
	display: block;
	text-decoration: none;
	cursor: pointer;
	position: relative;
}

.accordion > ul > li .catbox {
	display: none;
}

.accordion-icon,
.accordion-icon span {
	display: inline-block;
	transition: all .3s;
	box-sizing: border-box;
}
.accordion-icon {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	z-index: 1;
}
.accordion-icon span {
	position: absolute;
    width: 100%;
	height: 2px;
    background-color: var(--blue);
	top: 50%;
}
.accordion-icon span:nth-of-type(1) {
	transform: translateY(-50%) rotate(0deg);
    -webkit-transform: translateY(-50%) rotate(0deg);
	-moz-transform: translateY(-50%) rotate(0deg);
	-ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
}
.accordion-icon span:nth-of-type(2) {
	transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
	-moz-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
}
.active .accordion-icon span:nth-of-type(1) {
	display:none;
}
.active .accordion-icon span:nth-of-type(2) {
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

@media screen and (max-width: 768px){
	
	.accordion ul li a {
		padding: 0;
	}

	.accordion-icon {
		width: 15px;
        height: 15px;
        right: 15px;
	}
		
}

/* 20251225追記 */
.grad-trigger {
	display: none;
	/*チェックボックスは常に非表示*/
}

.grad-trigger:checked+.accordion-off {
	display: none;
	/*チェックされていたら、accordion-offを非表示にする*/
}

.grad-trigger:checked~.accordion-on {
	height: auto;
	/*チェックされていたら、高さを戻す*/
}

.grad-trigger:checked~.accordion-on::before {
	display: none;
	/*チェックされていたら、accordion-onのbeforeを非表示にする*/
}

.accordion-off {
	display: block;
	width: 260px;
	height: 60px;
	border: 1px solid var(--main);
	border-radius: 30px;
	margin: 25px auto 0;
	position: relative;
	background-color: #fff;
	text-align: center;
	line-height: 60px;
	font-size: 1.6rem;
	color: #333;
	transition: .4s;

	position: absolute;
	right: 0;
    bottom: 0px;
    left: 0;
	z-index: 2;
}

.accordion-off i {
	position: absolute;
	right: 20px;
	line-height: 60px;
}

.accordion-off .fa-plus::before {
	content: "\2b";
	font-family: "Font Awesome 6 Free";
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 900;
}

.accordion-off:hover {
	cursor: pointer;
	background-color: var(--main);
	color: #fff;
}

/* .accordion-off.active {
	display: none;
} */

.accordion-on {
	height: 1600px;
	position: relative;
    overflow: hidden;
}

.accordion-on::before{
	content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 128px;
    z-index: 1;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 80%, rgba(255, 255, 255, 0.9) 80%, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 80%, rgba(255, 255, 255, 0.9) 80%, #fff 100%);
}

@media screen and (max-width: 768px){
	.accordion-off:hover {
		cursor: pointer;
		background-color: var(--main);
		color: #fff;
	}

	.accordion-off.active {
		display: none;
	}

	.accordion-on {
		height: 870px;
		position: relative;
		overflow: hidden;
	}

	.toilet-list.accordion-on {
		max-height: 0;
	}

	/* 開いた状態 */
	.accordion-off.active + .accordion-on {
		max-height: 10000px;         /* 中身が多いので大きめ */
	}
}