.acd-check {
    display: none;
}

.acd-label {
    font-size: 1.5rem;
    background: #44D62C;
    color: #fff;
    cursor: pointer;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    position: relative;
    font-weight: 600;
}
@media only screen and (max-width: 768px) {
    .acd-label {
        font-size: 2.0rem;
    }
}
.acd-footer {
    font-size: 1.5rem;
    background: #44D62C;
    color: #fff;
    cursor: pointer;
    display: block;
    margin-bottom: 1px;
    padding: 11px;
    position: relative;
    font-weight: 600;
}
@media only screen and (max-width: 768px) {
    .acd-footer {
        font-size: 2.0rem;
    }
}

.acd-home {
    font-size: 1.5rem;
    background: #44D62C;
    color: #fff;
    cursor: pointer;
    display: block;
    margin-bottom: 1px;
    padding: 11px;
    position: relative;
    font-weight: 600;
}
@media only screen and (max-width: 768px) {
    .acd-home {
        font-size: 2.0rem;
    }
}


.acd-label:after {
    background: #44D62C;
    box-sizing: border-box;
    content: '+';
    display: block;
    font-family: "Font Awesome 5 Free";
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
}
.acd-footer:after {
    background: #44D62C;
    box-sizing: border-box;
    content: '+';
    display: block;
    font-family: "Font Awesome 5 Free";
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
}

.acd-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    visibility: hidden;
}

.acd-check:checked+.acd-label:after {
    content: '-';
}

.acd-check:checked+.acd-label+.acd-content {
    max-height: 5000px;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}
.acd-check:checked+.acd-footer:after {
    content: '-';
}

.acd-check:checked+.acd-footer+.acd-content {
    max-height: 5000px;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}

.acd-content p {
    margin: 0;
}

.template-img {
    cursor: pointer;
    width: 50px; /* 画像サイズの調整 */
    height: auto; /* 画像サイズの調整 */
}