h3{
    border: none;
}

.border-radius {
    width: 80px;
    height: 80px;
    background-color: var(--logo-color);
    border-radius: 50%;
    color: #fff;
    text-align: center;
}

.down-arrow {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    color:#0b4600;
    margin-left: 5px;
    padding: 5px;
    line-height: 1;
    width: 1em;
    height: 1em;
    border:0.3em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    padding: 5px;
    transform:rotate(135deg);
    align-self: center;
}

.inquiry-content{
    background: var(--background-white);
    margin-bottom: 16px;
    background-color: white;
    border-radius: 5px;
    padding: 16px;
}

.title-flex{
    cursor: pointer;
    place-items:baseline;
    display: flex;
    justify-content: space-between;
}

.adjustment-width{
    width: 98% !important ;
}

.inquiry-text{
    line-height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}

.inquiry-click{
    display: none;
}

input[type=checkbox]:checked + label + .inquiry-text{
    line-height :1.8;
    opacity: 1 ;
    padding: 10px;
    visibility: visible;
}

input[type=checkbox]:checked + label > label{
    transform: translateY(25%) rotate(-45deg);
}
