/* 26.7.10　表示崩れの修正 */
@media screen and (max-width: 768px) {
    .hero__content {
        min-height: auto;
    }
    .features-section .feature-card:nth-child(even) .feature-card__inner {
        flex-wrap: wrap;
    }
    .services-list .service-item:nth-child(even) {
        flex-wrap: wrap;
    }
}

/* 26.7.10　記事掲載にスライド実装 */
@media screen and (max-width: 768px) {
    .articles-grid .swiper-wrapper {
        flex-wrap: unset;
    }
}
.articles-grid .swiper-wrapper {
    justify-content: unset;
}

/* 26.7.30　言語切替ボタン */
.header__nav span {
    display: flex;
}
.header__nav > div {
    display: flex;
    align-items: center;
}
.header__nav span a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 40px;
    border: 1px solid #dce8e8;
}
.header__nav span a:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-right: none;
}
.header__nav span a:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.header__nav span a.lang_current {
    background: #dce8e8;
    color: #999;
}
@media screen and (max-width: 768px) {
    .header__nav span {
        display: flex;
        justify-content: center;
    }
    .header__nav span a {
        color: #fff;
        width: 40vw;
        height: 10vw;
        background: linear-gradient(90deg,#29ccb1,#14bdcc);
    }
}