.page_head, .project {
    padding: 60px 0;
}



.page_head_des p {
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
}
 .page_head_ttl {
    text-align: center;
    color: var(--mcolor);
    font-weight: bold;
    font-size: 2.5em;
    margin-bottom: 20px;
}
.project {
    background: #fbfbfb;
}

.project_list {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    gap: 40px 20px;
}

.project_itm {
    position: relative;
    width: calc(100% / 3 - 15px);
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s;
}

.project_itm_img {
    margin: 0;
	transition: all 0.5s;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.project_itm:hover .project_itm_img {
	transform: scale(1.1);
}

.project_itm_txt {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--mcolor);
    background: linear-gradient(180deg, rgb(11 91 80 / 1%) 0%, rgb(11 91 80 / 55%) 50%, rgba(11, 91, 80, 1) 100%);
    color: #fff;
    padding: 10px 20px;
}

.project_itm_ttl {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2em;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project_itm_add {
    background: url(/assets/images/ico_map_white.png) no-repeat left center;
    background-size: 20px;
    padding-left: 25px;
}

.project_itm:hover {
    transform: translateY(-10px);
}

.btn_more {
    margin-top: 20px;
    text-align: center;
}

    .btn_more a {
        display: inline-block;
        background-color: #0b5b50;
        border: none;
        border-radius: 18px;
        color: white;
        font-weight: bold;
        font-size: 13px;
        cursor: pointer;
        padding: 5px 20px;
        transition: background-color 0.3s ease;
    }

.partner {
    padding: 0 0 60px;
}

.partner_list p {
    border-radius: 5px;
    margin: 0 5px 0;
    padding: 15px;
    border: 1px solid #dbdbdb;
	height: 100px;
}
.partner_list p:hover img {
	transform: scale(1.1);
}
.partner_list p img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
	
}
@media(max-width:768px) {
    .page_head, .project {
        padding: 40px 0;
    }

    .page_head_ttl {
        font-size: 1.5em;
    }

    .page_head_des {
        font-size: 16px;
    }

    .project_list {
        gap: 15px;
    }

    .project_itm {
        width: calc(100% / 2 - 10px);
    }

    .project_itm_txt {
        padding: 5px 10px;
    }

    .project_itm_ttl {
        font-size: 1em;
    }

    .project_itm_add {
        background-size: 15px;
        padding-left: 20px;
    }
}

@media(max-width:480px) {
    .project_itm_txt {
        padding: 5px;
    }

    .project_itm_ttl {
        font-size: 16px;
        line-height: 1.4;
    }

    .project_itm_add {
        font-size: 13px;
    }
	.page_head_des p {
		font-size: 16px;
	}
	.card-title {
		padding: 0;    
		font-size: 20px;
	}

}
