@charset "utf-8";
.accordion-003{
    max-width: 100%;
    margin-bottom: 7px;
}
.accordion-003 summary{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}
.accordion-003 summary::-webkit-details-marker{
    display: none;
}
.accordion-003 summary::after{
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}
.accordion-003[open] summary::after{
    transform: rotate(225deg);
}
.accordion-003 p{
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}
.accordion-003[open] p{
    transform: none;
    opacity: 1;
}
.fontSS{
    font-size: 10px;
}
div.image_area{
    display: flex;
    width: 100%;
}
div.image_div{
    border: 1px dashed #C8C8C8;
    background-color: #F0F0F0;
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    width: 250px;
    height: 200px;
}
img.bbs_image{
    width: 190px;
}