@charset "utf-8";
/* CSS Document */
.blog-header .entry-title em {
    font-style: normal;
    font-weight: 700;
    font-size: 82%;
    position: relative;
    top: -3px;
    left: 10px;
}
.case-list {
    /* margin-top: 6rem; */
    /* display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap; */
    overflow: hidden;
}
/* .case-list.last-row {
  justify-content: flex-start;
} */
.achievement-item {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column; */
    float: left;
    margin-bottom: 5rem;
    width: 49%;
    margin-right: 2%;
}
/* .achievement-item:nth-child(3n + 1) {
    clear: both;
}
.achievement-item:nth-child(3n) {
    margin-right: 0;
} */
.achievement-item:nth-child(odd) {
    clear: both;
}
.achievement-item:nth-child(even) {
    margin-right: 0;
}
.achievement-item img {
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    -ms-transition: .3s ease-out;
    transition: .3s ease-out;
}
.achievement-item:hover img {
    opacity: 0.7;
}
aside#secondary > section, aside#secondary > div {
    display: none;
}
#totop {
    text-align: center;
    margin-bottom: 3em;
}
#totop a:hover {
    color: var(--main);
    text-decoration: underline;
}
.blog-header .entry-title {
    line-height: 1.2;
}
@media (max-width: 768px){
    .achievement-item {
        width: 100%;
        margin-bottom: 3rem;
        max-width: 50rem;
        margin: 0 auto 3rem;
    }
    .blog-header .entry-title em {
        font-size: 86%;
        top: -1px;
        left: 5px;
    }
    main .container {
        padding: 0;
    }
    #primary {
        margin-bottom: 20px;
    }
}