@charset "utf-8";

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 *
 *
	Component（c-card） CSS
 *
 *
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
a.btn7 {
    background: #6bb6ff;
    border-radius: 4px;
    box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.25);
    color: #ffffff;
    display: inline-block;
    padding: 6px 30px 6px;
    position: relative;
    text-decoration: none;
    transition: all 0.1s 0s ease-out;
    font-weight: 600;
    letter-spacing: 0.04rem;
}

ul.c-card {
    border: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

li.c-card {
    display: inline-block;
    perspective: 1000;
    position: relative;
    text-align: left;
    transition: all 0.3s 0s ease-in;
    width: 100%;
    z-index: 1;
    border-radius: 25px;
    background: #fff;
    box-shadow: 5px 5px 14px -8px var(--color-box-shadow);
    padding: 0;
    cursor: pointer;
    margin-bottom: 25px;
}

li.c-card img {
    width: 100%;
    border-radius: 25px 25px 0 0;
}

li.c-card .c-card__image__holder {
    background: rgba(0, 0, 0, 0.1);
    height: 0;
    padding-bottom: 57%;
    border-radius: 25px 25px 0 0;
    overflow: hidden;
}

li.c-card .c-card__image__holder img {
    transition: all 0.3s 0s ease-in;
}

li.c-card:hover>a div.c-card__image__holder img {
    transform: scale(1.03);
}

li.c-card div.c-card__title {
    position: relative;
    background: #ffffff;
    padding: 15px 23px 19px;
    border-radius: 0 0 25px 25px;
    z-index: 0;
    transition: .3s;
}

li.c-card:hover div.c-card__title {
    background-color: var(--color-blue);
    color: var(--color-off-white);
    transition: .3s;
}

li.c-card div.c-card__title p {
    font-size: var(--fs-base--pc);
    font-weight: 800;
    letter-spacing: -0.05em;
    margin: 6px 0 3px;
    padding: 0;
    line-height: 1.56;
}

li.c-card div.c-card__title p:hover {
    color: var(--color-off-white);
}

li.c-card div.c-card__title::after {
    content: "";
    display: block;
    position: absolute;
    top: 35%;
    right: 30px;
    height: 23px;
    width: 23px;
    background-image: url(/img/common/icon__arrow.svg);
    background-repeat: no-repeat;
    will-change: transform;
    transition: .3s;
}

li.c-card:hover div.c-card__title::after {
    background-image: url(/img/common/icon__arrow--hover.svg);
}

li.c-card div.c-card__title p small {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.025em;
}

li.c-card div.c-card-description {
    padding: 0px 20px 20px;
    position: relative;
    font-size: 0.9rem;
    color: #313131;
}

li.c-card div.c-card-actions {
    box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.075);
    padding: 10px 15px 15px;
    text-align: center;
}

li.c-card div.flap1 {
    transition: all 0.3s 0.3s ease-out;
    z-index: -1;
}

li.c-card div.flap2 {
    transition: all 0.3s 0s ease-out;
    z-index: -2;
}

ul.c-card.showing li.c-card {
    cursor: pointer;
    opacity: 0.6;
    transform: scale(0.88);
}

.no-touch ul.c-card.showing li.c-card:hover {
    opacity: 0.94;
    transform: scale(0.92);
}

li.c-card.show {
    opacity: 1 !important;
    transform: scale(1) !important;
}

li.c-card.show div.c-card__title a.toggle-info {
    background: #ff6666 !important;
}

li.c-card.show div.c-card__title a.toggle-info span {
    top: 15px;
}

li.c-card.show div.c-card__title a.toggle-info span.left {
    right: 10px;
}

li.c-card.show div.c-card__title a.toggle-info span.right {
    left: 10px;
}

@media screen and (max-width: 1070px) {

    li.c-card {
        width: 48%;
        margin-bottom: 0;
        border-radius: 10px;
        box-shadow: 4px 4px 11px -8px var(--color-box-shadow);
    }

}

@media screen and (max-width: 768px) {

    ul.c-card {
        flex-direction: column;
    }

    li.c-card img {
        border-radius: 10px 10px 0 0;
    }

    li.c-card .c-card__image__holder {
        border-radius: 10px 10px 0 0;
    }

    li.c-card:hover div.c-card__title {
        background-color: var(--color-off-white);
        color: var(--color-black);
        transition: .3s;
    }

    li.c-card div.c-card__title {
        padding: 10px 8px 10px;
        border-radius: 0 0 10px 10px;
    }

    li.c-card div.c-card__title::after {
        top: 39%;
        right: 10px;
        height: 15px;
        width: 15px;
    }

    li.c-card:hover div.c-card__title::after {
        background-image: url(/img/common/icon__arrow.svg);
    }

    li.c-card div.c-card__title p {
        font-size: var(--fs-xs--sp);
    }

}

@media screen and (max-width: 390px) {
    li.c-card {
        width: 100%;
        margin-bottom: 0;
        border-radius: 10px;
    }
}

/* ===========================================================

   v2

=========================================================== */

li.c-card--v2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    text-align: left;
    width: 100%;
    z-index: 1;
    padding: 0;
    margin-bottom: 25px;
}

li.c-card--v2 .c-card__image__holder {
    padding-bottom: 10px;
    margin: auto;
    text-align: center;
    vertical-align: middle;
}

li.c-card--v2 .c-card__image__holder img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

li.c-card--v2 div.c-card__title {
    position: relative;
    padding: 15px 23px 19px;
    z-index: 0;
    transition: .3s;
}

li.c-card--v2 div.c-card__title p {
    padding: 0;
    margin: 6px 0 3px;
    font-size: var(--fs-base--pc);
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.05em;
    line-height: 1.56;
}

li.c-card--v2 .c-card__title::after {
    display: none;

}

@media screen and (max-width: 768px) {
    li.c-card--v2 {
        perspective: 1000;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        text-align: left;
        width: 45%;
        z-index: 1;
        padding: 0;
        margin-bottom: 25px;
    }

    li.c-card--v2 div.c-card__title {
        padding: 15px 0 0;
    }

    li.c-card--v2 div.c-card__title p {
        padding: 0;
        margin: 6px 0 3px;
        font-size: var(--fs-base--sp);
        font-weight: 800;
        text-align: center;
        letter-spacing: -0.05em;
        line-height: 1.56;
    }
}