/*海外旅行ページのスタイル*/

@charset 'utf-8';

main {
    margin-top: 20px;
}

.main_header h1 {
    text-align: center;
}

.main_blog {
    background-color: #fff;
    margin: 0 2rem;
    padding: 10px 30px 30px 30px;
    border-radius: 10px;
}

.main_blog h2 {
    text-align: center;
}

.blog_filter {
    display: flex;
    justify-content: center;
}

/*海外旅行ブログ一覧のスタイル*/
.all_blog {
    margin: 20px 2rem;
    padding: 10px 30px 30px 30px;
    background-color: #fff;
    border-radius: 10px;
}

.all_blog_list {
    list-style: none;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/*背景スライドのスタイル*/
.img_01{
    background-image: url('../img/slide/tajmahal.jpg');
    animation: slide-animation-01 20s infinite;
}

.img_02{
    background-image: url('../img/slide/travel100.jpg');
    animation: slide-animation-02 20s infinite;
}

.img_03{
    background-image: url('../img/slide/indiangate2.jpg');
    animation: slide-animation-03 20s infinite;
}

.item_1 {
    background-color: whitesmoke;
}