.carousel-container {
    width: 90%;
    height: 200px;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    margin: auto;
    background-color: #fafafa;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.carousel img {
    width: 100%;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
    user-select: none;
    /* 画像の選択を防ぐ */
}

.prev,
.next {
    position: absolute;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    opacity: 0;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.indicator-ct {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
}

.img-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--main1);
    border-radius: 50%;
}

.indicator-active {
    background-color: var(--ac1);
}

.com-logo-ct {
    display: flex;
    justify-content: center;
    align-items: center;

}
.com-logo-ct img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.joblist-title{
    font-weight: normal;
    padding: 10px;
    border: 1px var(--ac2) solid;
    
    text-align: center;
}
.jobimage-ct{
    width: 100px;
    height: 100px;
    overflow: hidden;
}
.jobimage-ct img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.joblist-item{
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: solid 1px #eee;
    color: var(--txtcol);
    margin: 10px 0;
}
.joblist-info{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.job-type{
    background-color: var(--ac3);
    color: white;
    font-size: small;
    padding: 4px;
    border-radius: 4px;
}
.q-form{
    display: flex;
    flex-direction: column;
    background-color: #eee;
    padding: 10px;
    gap: 10px;
}
#question{
    border: #eee solid 1px;
    border-radius: 2px;
    padding: 4px;
    background-color: #fff;
}
.q-form button{
    background-color: var(--ac2);
    color: white;
    padding: 10px;
    border-radius: 4px;
}
.q-item-ct{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0;
}
.q-item{
    padding: 10px;
    background-color: var(--main1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.qst{
    padding: 4px;
    background-color: #fff;
}
.ans{
    text-align: end;
    background-color: var(--main2);
    padding: 4px;
}