@charset "utf-8";
/*===========================
add
===========================*/

/* 基本カラー  */

.fcBasic {
	color:#1a9962;
}



.list-nav {
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}
.list-nav li {
    width: 15%;
    margin-right: 1.66%;
    text-align: center;
    margin-bottom: 2%;
}
.list-nav li a {
    text-decoration: none;
    height: 54px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    cursor: pointer;
    transition: 0.4s;
    background: #fff;
    color: #333;
}
.list-nav li a:hover, .list-nav li a.active {
    background-color: #0ca1e4;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .list-nav li {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 2%;
        text-align: center;
    }
}
@media screen and (max-width: 600px) {
    .list-nav li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 2%;
        text-align: center;
    }
}
@media screen and (max-width: 600px) {
    .list-nav li:nth-child(2n) {
        margin-right: 0;
    }
}
.list-box {
    display: flex;
    flex-wrap: wrap;
}
.list-box a {
    width: 23%;
    margin-right: 2%;
    margin-bottom: 2%;
    box-sizing: border-box;
    padding: 15px;
    text-decoration: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2);
    text-decoration: none;
    color: #333;
}
.list-box a:hover{
	opacity: .6;
}
@media screen and (max-width: 768px) {
    .list-box a {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }
}
@media screen and (max-width: 768px) {
    .list-box a:nth-child(2n) {
        margin-right: 0;
    }
}
.list-box .photo {
    margin-bottom: 15px;
    box-shadow: none;
}
.list-box img {
    box-shadow: none;
    border-radius: 0 !important;
    width: 100%;
    height: auto;
}

.list-box h3 {
    margin: 0;
    padding: 0;
    font-size: 1em;
    text-align: left;
}
.list-box h3:after{
	display: none;
}
.det-box h3 {
    text-align: left;
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid #cfcfcf;
    font-size: 1.5em;
    font-weight: bold;
}
.det-box h3:after {
display: none;
}
.space-evenly{
	    display: flex;
    justify-content: space-evenly;
}