		/* アコーディオン */
		.category-list {
		  border-top: 1px solid #000;
		  border-left: 1px solid #000;
		  border-right: 1px solid #000;
		}
		
		.accordion-item {
		  border-bottom: 1px solid #000;
		}
		
		.accordion-header {
		  display: flex;
		  padding: 15px 30px;
		  cursor: pointer;
		  align-items: center;
		  transition: background 0.2s;
		}
		
		.accordion-header:hover {
		  background-color: #f9f9f9;
		}
		
		.category-main {
		  width: 150px;
		  font-size: 14px;
		  font-weight: bold;
		}
		
		.category-sub {
		  flex: 1;
		  font-size: 14px;
		}
		
		.icon {
		  font-size: 14px;
		}
		
		.accordion-body {
		  padding: 20px 30px 20px 180px;
		  background-color: #fff;
		  border-top: 1px solid #000;
		}
		
		.accordion-body ul {
		  list-style: none;
		  padding: 0;
		  margin: 0;
		}
		
		.accordion-body li {
		  margin-bottom: 10px;
		}
		
		.accordion-body a {
		  text-decoration: none;
		  color: #000;
		  font-size: 14px;
		  font-weight: bold;
		  display: inline-block;
		}
		
		.accordion-body a span {
		  margin-left: 10px;
		}
		
		/* アニメーション */
		.fade-enter-active, .fade-leave-active {
		  transition: opacity 0.3s;
		}
		.fade-enter, .fade-leave-to {
		  opacity: 0;
		}