/* --------------------------------
トップ 
-------------------------------- */
/* fv */
.fv {
    /* background-image: url('/wp-content/themes/ganbariyasan/assets/images/fv.jpg'); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 565px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fv p { 
    font-size: 5rem;
    color: #fff;
    text-align: center;
}

/* introduction */
.introduction .title{
    font-weight: bold;
}

.introduction .introduction_msg{
    position: relative;
}

.introduction .introduction_msg img{
    position: absolute;
    top: 0;
    right: 0;
}

.introduction p{
    text-align: center;
    color: #934C08;
    font-size: 3rem;
    margin-top: 130px;
}

/* achievements */
.achievements_list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    row-gap:125px;
    column-gap: 15%;
}

.achievements_item img{
    width: 100%;
    height: auto;
}

.achievements_item_title{
    font-size: 2.5rem;
    color: #934C08;
    margin-top: 35px;
}

@media screen and (max-width: 786px) {
    .introduction .introduction_msg{
        position: static;
    }
    
    .introduction .introduction_msg img{
        position: static;
        display: block;
        margin: 0 auto;
    }

    .achievements_list {
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 50px;
    }

  }