.effectBtn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    width: 1200px;
    margin: 1px auto 50px;
    padding: 0;
    text-align: center;
}

.effectBtn div.type1 {
    flex-basis: calc(25% - 1px);
    position: relative;
    /* border-radius: 8px; */
}

.effectBtn div.type1 a {
    text-decoration: none;
    color: #FFF;
}

@media (max-width: 670px) {
    .effectBtn {
        width: calc(100% + 18px);
        align-items: center;
        flex-wrap: wrap;
        margin-left: -9px;
    }

    .effectBtn div.type1 {
        flex-basis: calc(50% - 1px);
    }
}

.effectBtn .image {
    display: flex;
    align-items: end;
}

.effectBtn .image {
    margin: 0;
}

.effectBtn .image img {
    max-width: 100%;
    height: auto;
    /* border-radius: 8px; */
    vertical-align: middle;
}

.effectBtn div.type1 a figure.image figcaption {
    background-color: black;
    color: white;
    font-weight: normal;
    font-size: 1.4rem;
    width: 100%;
    display: block;
    position: absolute;
    padding: 5px 14px 4px;
    box-sizing: border-box;
    line-height: 1.3;
}

.effectBtn .text {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 16px 24px;
    /* border-radius: 8px; */
    color: white;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.9);
}

.effectBtn .text dt {
    justify-self: flex-start;
    align-self: flex-end;
    border-bottom: solid 1px white;
    width: 100%;
    padding-bottom: 4px;
}

.effectBtn .text dd {
    margin: .5em 0 0;
    font-size: .8em;
    line-break: strict;
    overflow-wrap: break-word;
}

/* :::::: type1 :::::: */
.type1 {
    overflow: hidden;
}

.type1 .text {
    transition: opacity .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.type1:not(:hover) .text {
    opacity: 0;
    transform: translateY(100%);
}