@charset "UTF-8";

.news-contents {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    padding: 100px 0;
    margin: auto;
}

article {
    width: 74%;
}

.post_contents {
    margin-right: 20px;
    width: 100%;
}

.post_text {
    text-align: left;
    width: 100%;
}

.post_date {
    display: inline-block;
    font-size: 2.4rem;
    margin-bottom: 25px;
}

.category {
    display: inline-block;
    background-color: #093E4E;
    color: #FCFCFC;
    padding: 9px 13px;
}

.post_title {
    display: inline-block;
    font-size: 2.6rem;
    margin-bottom: 60px;
}

.post_inner {
    line-height: 3.0rem;
}

.post_inner p {
    display: inline-block;
    margin-bottom: 60px;
}

.btn_wrap {
    text-align: center;
    border-bottom: none;
}

.send_btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 400px;
    height: 70px;
    font-size: 16px;
    font-family: 'ryo-text-plusn';
    letter-spacing: .6px;
    color: #FCFCFC;
    background: #1F7C99;
    text-align: center;
    outline: none;
    transition: ease .2s;
}

.send_btn:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: rgb(53, 157, 133);
    background: linear-gradient(144deg, rgba(53, 157, 133, 1) 0%, rgba(10, 69, 103, 1) 100%);
    width: 400px;
    height: 70px;

    /*アニメーション*/
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: left top;
}

.send_btn:after {
    content: '';
    position: absolute;
    top: 49%;
    right: 20px;
    width: 20px;
    height: 19px;
    z-index: 3;
    background: url(../svg/arrow_w.svg);
    line-height: 0;
    transform: translate(-50%, -50%);
}

.send_btn:hover:before {
    transform-origin: right top;
    transform: scale(1, 1);
}

.send_btn:hover:after {
    background: url(../svg/arrow_w.svg);
}

.send span {
    display: inline-block;
    margin-top: 25px;
    position: relative;
    z-index: 3;
    color: #FCFCFC;
}

/* asideここから */
aside {
    width: 22%;
    margin-left: 74px;
}

.aside_title {
    font-size: 2.8rem;
    color: #093E4E;
    border-bottom: solid 1px #272727;
    text-align: left;
    padding-bottom: 18px;
}

aside ul {
    list-style: none;
    text-align: left;
}

aside ul a {
    text-decoration: none;
    color: #333;
}

.category_title {
    display: inline-block;
    font-size: 2.0rem;
    margin-bottom: 10px;
}

aside ul li {
    border-bottom: solid 1px #E3E3E3;
    padding: 20px 0;
}

aside ul li:hover {
    background-color: #F0FCFF;
}

@media(max-width:780px) {
    .news-contents {
        display: block;
        width: 90%;
        padding: 60px 0 100px;

    }

    article {
        width: 100%;
        margin-bottom: 100px;
    }

    .post_inner p {
        margin-bottom: 40px;
    }

    .send_btn {
        width: 320px;
    }

    /* asideここから */

    aside {
        width: 100%;
        margin-left: 0;
    }
}