.organic--category-text {
    width: fit-content;
    border-bottom: 2px #000 solid;
}
.organic--category-subtext {
    width: fit-content;
    border-bottom: 1px #000 dashed;
}
.organic--symbol {
    width: 1em;
    line-height: 1em;
}
.organic--points {
    border: 1px dashed #6c757d;
    border-radius: .75rem;
    padding: 1rem;
    max-width: 600px;
}
.organic--points-icon {
    transform: translateY(0.5em) scale(1.1);
    margin-right: 0.8em
}
@media (min-width:768px) {
    .organic--points-icon {
        margin-left: 0.1em;
        margin-right: 1em
    }
}

/* accordion Content Style AHW-1297 */
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #000;
	/* background:#019ac6; */
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.accordion_content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.accordion_content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .accordion_content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

label.Label {
    border: 1px solid #343a40;
    text-align: center;
    border-radius: 5px 5px;
    cursor: pointer;
}