@charset "utf-8";
.projects {
    padding: 10px 0 40px;
    color: black;
}
.projects-navi {
    margin: 10px 0 0;
}
.projects-navi a {
    color: black;
}
.projects-title {
    position: relative;
    margin: 26 0 15px;
    padding: 10px;
    font-size: 35px;
    border-color: coral;
    font-family: "Yu Gothic", sans-serif;
    text-align: center;
}
.projects-title:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    border-bottom: solid 2px #000;
    transform: translateX(-50%);
    animation: border-top 0.5s linear forwards;
}
@keyframes border-top {
    0% {
      width: 0%;
    }
    100% {
      width: 400px;
    }
}
.projects-title:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 76px;
    width: 0;
    border-top: solid 2px #000;
    transform: translateX(-50%);
    animation: border-bottom 0.5s linear forwards;
}
@keyframes border-bottom {
    0% {
      width: 0%;
    }
    100% {
      width: 400px;
    }
}
.projects-card-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.projects-card {
    width: 50%;
    margin-top: 35px;
}
.projects-card-inner {
    padding: 15px 20px;
    background-color: #dbe0e4;
    border-radius: 7px;
    box-shadow: 1px 1px 4px #d2d4d6;
    text-align: center;
    margin: 0 20px;
/*    overflow: hidden;*/
}
.cover {
/*    height: 300px;
    width: 320px;
/*    width: 100%;*/
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 7px;
}
.cover img {
/*    position: relative;
/*    width: 100%;
    height: 300px;
    position: absolute;*/
/*    top: 50%;
/*    transform: translate(-50%,-50%);*/
/*    margin-bottom: 20px;*/
/*    border-radius: 5px;*/
/*    overflow: hidden;*/
}
.projects-main-img {
    width: 100%;
/*    height: 300px;*/
    transform: translate(0%, 0%);
    object-fit: cover;
    position: relative;
    border-radius: 5px;
    border-radius: 7px;
}
table {
    width: 100%;
    padding-top: 20px;
}
table td {
    text-align: center;
    padding: 10px;
}
.con-title {
    border: 1px solid black;
    font-family: "Yu Gothic", sans-serif;
    width: 30%;
    height: 80px;
}
.con-name {
    border: 1px solid black;
    font-family: "Yu Gothic", sans-serif;
}
.pla-title {
    border: 1px solid black;
    font-family: "Yu Gothic", sans-serif;
    width: 30%;
}
.pla-name {
    border: 1px solid black;
    font-family: "Yu Gothic", sans-serif;
}
