@charset "utf-8";

.main h3 {
    margin-top: 3em;
}
@media screen and (max-width: 1440px) {
    .main {
        padding: 10rem 1.5em;
    }
}
.projectArea {
    margin: 0 auto;
    padding: 0 0 3em;
    max-width: 1440px;
}
.projectGrid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
}
@media screen and (max-width: 1024px) {
    .projectGrid {
        grid-template-columns: 1fr;
    }
}

.project__item h4 {
    background: #D0E9EB;
    margin: 0 0 10px;
    padding: 15px 0;
    font-size: 2.0rem;
    color: #006666;
    text-align: center;
}
.project__gridTable {
    display: table;
	width: 100%;
	table-layout: fixed;
	text-align: left;
    margin: 10px auto 50px;
    padding: 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}
.gridTable__cell {
    display: table-row;
}
.gridTable__cell p {
    display: table-cell;
    padding: 15px;
    border-bottom: 1px solid #b2b2b2;
    font-size: 1.8rem;
    font-weight: 500;
}
p.border__less {
    border-bottom: 0;
}
.gridTable__cell p:nth-child(1) {
    background: #fafafa;
    width: 20%;
}
@media screen and (max-width: 767px) {
    .project__item h4 {
        font-size: 1.8rem;
    }
    .gridTable__cell p {
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 1058px) {
    .gridTable__cell p:nth-child(1) {
        width: 27%;
    }
}

.btn__service {
    width: min(80%, 300px);
    background: #00839E;
    margin: 0 auto;
    text-align: center;
    border-radius: 12px 12px;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 500;
    color: #fff;
}
.btn__service a {
    text-decoration: none;
    transition: 0.3s;
    margin: 0;
    padding: 20px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn__service a:hover {
    opacity: 0.5;
}
.btn__service a span {
    display: inline-block;
    margin: 0 0 0 20px;
    padding: 0;
    border-bottom: 0.5em solid transparent;
    border-left: 0.5em solid #fff;
    border-top: 0.5em solid transparent;
}











