.dokodemo-banner-list {
    width: 100%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;

    gap: 2em;
}

.dokodemo-banner-list li {
    width: calc((100% - (2em * 2)) / 3);
    list-style: none;
}

.dokodemo-banner-list li a {
    width: 100%;
    height: 100%;
    display: block;
}

.dokodemo-banner-list li .card {
    width: 100%;
    height: 100%;
    min-height: 150px;
    position: relative;
}

.dokodemo-banner-list li .card-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.dokodemo-banner-list li .card-img img {
    width: 100%;
    height: auto;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.dokodemo-banner-list li a:hover .card-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.dokodemo-banner-list li .card-content {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    padding: 0.5em;
    text-align: center;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(70%, rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
}

.dokodemo-banner-list li .card-content .card-title {
    font-weight: bold;
    font-size: 1.5em;
    color: white;
}

.dokodemo-banner-list li .card-content .card-title-sub {
    margin-bottom: 1em;
    font-size: 95%;
}

.dokodemo-banner-list li .card-content .card-title-main {
    font-weight: bold;
}

/* 見たまま編集 */
[data-element-id] .dokodemo-banner-list li .card-content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 90%;
    height: auto;
    padding: 1em;
    background: rgba(0, 0, 0, 0.5);
}
