/*==============================================================

	Text and Img 3column List
	
===============================================================*/
.problem-solving-support-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}
.problem-solving-support-company-name {
    color: #038;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}
.problem-solving-support-industry {
    font-size: .9em;
    text-align: center; 
}
.problem-solving-support-more {
    font-size: .9em;
    margin-top: auto;
    text-align: right; 
}
.timg3colst * {
	box-sizing:border-box;
}
.timg3colst ul {
	display: block;
	width: 100%;
	margin: 0px auto;
    list-style: none;
}
.timg3colst ul li {
    border: 1px solid #038;
    border-radius: 15px;
    padding: 15px;
}
.radius-image img {
    border: 1px solid #038;
    border-radius: 15px; 
}

@media screen and (min-width: 767px) {
	.timg3colst ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		margin: 0px auto 80px;
    	list-style: none;
        gap: 0 30px
	}
	.timg3colst ul li {
        display: flex;
        flex-direction: column;
		width: 30.5%;
	}
}

@media screen and (max-width: 767px) {
	.timg3colst ul {
		margin: 0px auto 80px;
	}
    .timg3colst ul li {
        margin-bottom: 30px;  
    }
}