@charset "UTF-8";

.base-tana-section {
    margin: 0 auto;
    padding: 0 20px 60px;
}

.base-tana-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.base-tana-section-title::before,
.base-tana-section-title::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("/img/usr/common/section/icon_cracker.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.base-tana-section-title::after {
    transform: scaleX(-1);
}

.base-tana-section-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.base-tana-section-item {
    flex: 0 0 calc(50% - 5px);
    box-sizing: border-box;
}

.base-tana-section-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================================
   PC用設定 (780px以上)
   ===================================== */
@media screen and (min-width: 780px) {
    .base-tana-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 0 20px;
    }

    .base-tana-section-title {
        font-size: 25px;
    }

    .base-tana-section-title::before,
    .base-tana-section-title::after {
        width: 40px;
        height: 40px;
    }

    .base-tana-section-items {
        justify-content: center;
        gap: 20px;
    }

    .base-tana-section-item {
        flex: 0 0 calc(25% - 15px);
    }
}