#guideBlock {
    background-image: var(--img-bg-orange);
    background-repeat: repeat;

    position: relative;
}

#pageHeader {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 90px;
}

#imgTop {
    position: relative;
    transform: translateX(-50%);
    left: 50%;
    height: 150px;
}

#guideContent {
    width: 100%;
    margin: 20px auto 0;

    position: relative;
}


#guideList {
    width: 90%;
    margin: 20px auto 0;

    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
    justify-content: space-between;
}

.guide-item {
    position: relative;
    margin-bottom: 100px;
}

.guide-item-bg {
    width: 100%;
}

.guide-item-bg > img {
    width: 100%;
}

.guide-item-content {
    position: absolute;
    width: 80%;
    left: 10%;
    top: 43%;
}

.guide-item-content .title {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: darkgreen;
    margin: 0 0 3px;
}

.guide-item-content .desc {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
    color: #E75B32;
}

.guide-item-entry {
    background-image: var(--img-btn-blue);
    background-repeat: no-repeat;
    background-size: 100% 100%;

    width: 150px;
    height: 45px;

    position: relative;
    left: -10px;
    margin-top: 5px;

    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-item-entry > a {
    color: white;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.guide-item-role {
    position: absolute;
    width: 150px;
    bottom: -50px;
    right: -25px;
}


#imgGrass {
    background-image: var(--img-fence);
    background-repeat: repeat-x;
    background-size: auto 150px;

    width: 100%;
    height: 150px;
    overflow: hidden;
}