@charset "utf-8";
body {
    background-size: cover;
}

.industry-list-page-mv {
    padding: 5% 0;
    text-align: center;
}

.industry-block-container {
    display: flex;
    flex-wrap: wrap;
    align-items: top;
    justify-content: center;
    gap: 40px 3%;
    padding: 0;
}

.industry-block-link {
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.2s;
    background-color: white;
}

.industry-block-link:hover {
    box-shadow: rgba(51, 51, 51, 0.3) 0 0 7px;
}

.industry-block {
    list-style: none;
    display: block;
    width: 95%;
    max-width: 320px;
    margin: 0 auto;
}

.industry-block-thumbnail img {
    width: 100%;
    opacity: 0.85;
}

.industry-block-thumbnail img.industry-opacity-thumbnail {
    opacity: 0.8;
}

.industry-block-title {
    text-align: center;
}

.industry-tug-box {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    gap: 10px 3%;
    padding: 0 3% 5% 3%;
}

.tug {
    color: #F2728D;
    padding: 5px 10px;
    border: #F2728D 1px solid;
    border-radius: 5px;
    box-shadow: rgba(51, 51, 51, 0.2) 0 0 4px;
}

@media (max-width:768px) {
    .industry-list-page-mv {
        padding: 5% 0 10% 0;
    }
    .industry-block-link {
        box-shadow: rgba(51, 51, 51, 0.3) 0 0 7px;
    }
    .industry-block-link:hover {
        opacity: 0.9;
    }
}