/* ---------------------------------------
    common
--------------------------------------- */
h2.title  {
    letter-spacing: 4px;
    text-align: center;
}

/* ---------------------------------------
    font
--------------------------------------- */
h2  {
    margin-bottom: 0;
}

h2.title span.sub {
    display: block;
    font-size: 1.4rem;
    color: #50a883;
    margin-bottom: 20px;
}

/* ---------------------------------------
    投稿ページ
--------------------------------------- */
html    {
    width: 100%;
    overflow-x: hidden;
}

body    {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

main    {
    flex: 1;
    width: 100%;
}
/* ---------------------------------------
    layout
--------------------------------------- */
main   {
    background-color: #f3f5f7;
}

p.entry-data {
    margin-bottom: 30px;
}

span.category {
    display: inline-block;
    font-size: 1.4rem;
    padding: 2px 17px;
    margin-left: 20px;
    background-color: #000;
    color: #fff;
}

span.category.news  {
    background-color: #fff;
    color: #3f4344;
    border: 1px solid #3f4344;
}

h2.pagetitle {
    font-size: 2.8rem;
}

.entry-content {
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid;
    line-height: 1.8;
}

.entry-content p   {
    line-height: 1.8;
}

.pager {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 80px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}

.pager span.next,
.pager span.prev    {
    position: relative;
}

.pager span.next    {
    padding-right: 36px;
}

.pager span.prev    {
    padding-left: 36px;
}

.pager span.next::before,
.pager span.next::after{
	content: "";
	display: block;
	-webkit-transform: skewX(45deg);
	transform: skewX(45deg);
	position: absolute;
	right: 2px;
    bottom: 7px;
}

.pager span.next::before{
	width: 26px;
    height: 2px;
	background: #50a883;
}

.pager span.next::after{
	width: 2px;
    height: 8px;
	background: #50a883;
    right: 5px;
}

.pager span.prev::before,
.pager span.prev::after{
	content: "";
	display: block;
	-webkit-transform: skewX(-45deg);
	transform: skewX(-45deg);
	position: absolute;
	left: 2px;
    bottom: 7px;
}

.pager span.prev::before{
	width: 26px;
    height: 2px;
	background: #50a883;
}

.pager span.prev::after{
	width: 2px;
    height: 8px;
	background: #50a883;
    left: 5px;
}

.all_news   {
    display: inline-block;
}
/* ---------------------------------------
    responsive
    tab
--------------------------------------- */
@media screen and (max-width: 1100px) {
}

@media screen and (max-width: 770px) {
    article.single {
        margin-top: 30px;
        padding: 40px 0 60px;
    }
}
/* ---------------------------------------
    responsive
    sp
--------------------------------------- */
@media screen and (max-width: 640px) {
    article.single {
        margin-top: 0;
        padding: 30px 0 50px;
    }

    span.category   {
        vertical-align: bottom;
    }

    h2.pagetitle {
        font-size: 2.2rem;
        line-height: 1.6;
    }

    p.entry-data    {
        margin-bottom: 20px;
    }

    .entry-content  {
        padding-top: 20px;
        margin-top: 6px;
    }
}