﻿.news-pages-box{
    box-sizing: border-box;
    padding: 60px 0;
}
.news-pages-title-box{
    width: 100%;
    display: block;
    text-align: left;
    position: relative;
}
.news-pages-title-box span{
    font-family: 'Roboto';
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: #5a241f;
    line-height: 40px;
}
.news-pages-title-box h2{
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.1em;
    color: #5a241f;
    line-height: 60px;
    position: relative;
    z-index: 1;
}
.news-pages-title-box::after{
    content: '';
    width: 100%;
    height: 12px;
    display: block;
    background-color: #fae1dc;
    position: absolute;
    bottom: 6px;
    left: 0;
}
.news-pages-edit-box{
    font-family: 'Noto Sans TC';
    font-size: 18px;
    letter-spacing: 0.1em;
    color: #666;
    line-height: 36px;
    margin: 50px 0;
    text-align: left;
}
.news-pages-menu-box{
    width: 100%;
    text-align: right;
    margin-top: 50px;
}
.news-pages-menu{
    display: inline-block;
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
}
.news-pages-arrow{
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: #5a241f;
    line-height: 36px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    transition: all .3s linear;
}
.news-pages-arrow-list{
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: #000;
    line-height: 36px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    margin: 0 50px;
    transition: all .3s linear;
}
.news-pages-menu::after{
    content: '';
    width: 100%;
    height: 12px;
    display: block;
    background-color: #fae1dc;
    position: absolute;
    bottom: 4px;
    left: 0;
}



@media only screen and (max-width: 768px){
    .news-pages-box{
        padding: 40px 0;
    }
    .news-pages-title-box span{
        font-size: 16px;
        line-height: 30px;
    }
    .news-pages-title-box h2{
        font-size: 30px;
        line-height: 40px;
    }
    .news-pages-title-box::after{
        bottom: 0;
    }
    .news-pages-edit-box{
        font-size: 16px;
        line-height: 1.8;
        margin: 30px 0;
    }
    .news-pages-menu-box{
        text-align: center;
        margin-top: 30px;
    }
}
@media only screen and (max-width: 550px){
    .news-pages-box{
        padding: 20px 0;
    }
    .news-pages-title-box span{
        font-size: 14px;
        line-height: 20px;
    }
    .news-pages-title-box h2{
        font-size: 20px;
        line-height: 26px;
    }
    .news-pages-title-box::after{
        height: 6px;
    }
    .news-pages-edit-box{
        font-size: 14px;
        line-height: 1.6;
        margin: 10px 0;
    }
    .news-pages-menu-box{
        margin-top: 20px;
    }
    .news-pages-arrow,
    .news-pages-arrow-list{
        font-size: 16px;
        line-height: 1.8;
    }
    .news-pages-menu::after{
        height: 6px;
    }
    .news-pages-arrow-list{
        margin: 0 30px;
    }
}



@media only screen and (min-width: 769px){
    .news-pages-title-box span,
    .news-pages-title-box h2,
    .news-pages-edit-box,
    .news-pages-img-box,
    .news-pages-menu-box{
        opacity: 0;
    }
    .news-pages-title-box::after{
        transform: scaleX(0);
    }
    .news-pages-title-box.anima span{
        animation: fadeInRight 1s ease 0.5s 1 both;
    }
    .news-pages-title-box.anima h2{
        animation: fade 1s ease 0s 1 both;
    }
    .news-pages-title-box.anima::after{
        transform-origin: left;
        animation: line 1s ease 0s 1 both;
    }
    .news-pages-edit-box.anima{
        animation: fadeInUp 1s ease 0s 1 both;
    }
    .news-pages-img-box.anima{
        animation: fade 1s ease 0s 1 both;
    }
    .news-pages-menu-box.anima{
        animation: fadeInLeft 1s ease 0s 1 both;
    }

    .news-pages-arrow-list::after{
        content: '';
        width: 100%;
        height: 2px;
        position: absolute;
        bottom: 4px;
        left: 0;
        background-color: #000;
        transform: scaleX(0);
        transition: all .3s ease;
    }
    .news-pages-arrow-list:hover{
        color: #000;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    }
    .news-pages-arrow-list:hover::after{
        transform: scaleX(1);
    }
    .news-pages-arrow::after{
        content: '';
        width: 0%;
        height: 2px;
        position: absolute;
        bottom: 4px;
        left: 0;
        background-color: #000;
        transition: all .3s ease;
    }
    .news-pages-arrow:hover::after{
        width: 100%;
    }
    .news-pages-arrow:hover{
        color: #000;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    }
    .news-pages-arrow-prev::after{
        left: initial;
        right: 0;
    }
}