@charset "UTF-8";

/*-----------------------

   common

-----------------------*/

body {
    font-family: 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic';
    word-break: break-all;
    background-image: url(../images/bg_triangle_light.jpg);
}

#wrap {
    background-color: #fff;
}


#wrap a:link,
#wrap a:visited {
    text-decoration: none;
    color: #000;
}

#wrap a:hover {
    opacity: 0.5;
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: bold !important;
    font-size: 110%;
}


/*-----------------------

   hidden_box
-----------------------*/

.hidden_box {
    margin: 2em 0;
    padding: 0;
}

.hidden_box label {
    background: #ffe33f;
    padding: 10px;
    font-weight: bold;
    border: solid 2px #ffe33f;
    cursor: pointer;
    border-radius: 10px;
    width: 100px;
    display: block;
    text-align: center;
    margin: 0px 0px auto auto;
}

.hidden_box label:hover {
    background: #fff;
}

.hidden_box input {
    display: none;
}

.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

.hidden_box input:checked ~ .hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

/*-----------------------

   common-h1

-----------------------*/

#wrap #category h1,
#wrap #series h1,
#wrap #feature h1,
#wrap #author h1,
#wrap #tag h1 {
    display: block;
    max-width: 1360px;
    background: #ffe33f;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 0px;
    margin: 20px auto;
}

#wrap #category h1.bg_g,
#wrap #series h1.bg_g,
#wrap #feature h1.bg_g,
#wrap #author h1.bg_g,
#wrap #tag h1.bg_g {
    background: #ddd;
}


/*-----------------------

   common-list_base

-----------------------*/
.list_block {
    display: flex;
    flex-wrap: wrap;
    max-width: 1360px;
    margin: 0px auto;
}

.list_block li {
    background: #ffe33f;
    width: calc(25% - 10px);
    margin: 5px;
}

.list_block .list_base {
    background: #ffe33f;
    border: 1px solid #ffe33f;
}

.list_block .list_base .photo_area {
    position: relative;
    height: auto;
    background: #FFF;
}

.list_block .list_base .photo_area:after {
    content: "";
    display: block;
    padding-top: 56.25%;
}


.list_block .list_base .photo_area .inner {
    position: absolute;

    width: 100%;
    height: 100%;
}

.list_base .photo_area img {
    position: absolute;

    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;

    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);

}


.list_base .text_area {
    background: #ffe33f;
}

.list_base .article_date {
    display: block;
    background: rgba(51, 51, 51, 0.5);
    font-size: 0.6rem;
    padding: 5px;
    color: #fff;
}

.list_base .article_date .date {
    margin-left: 5px;
    padding-left: 17px;
    background: url('../images/date_icon.png') no-repeat center left;
    background-size: 12px;
    font-size: 0.6rem;
}

.list_base .article_date .author {
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 17px;
    background: url('../images/author_icon01.png') no-repeat center left;
    background-size: 12px;
    font-size: 0.6rem;
    line-height: 0.8rem;
}

.list_base .article_date .author a {
    color: #fff !important;
}


@media screen and (max-width: 751px) {

    .list_base .article_date {
        display: block;
    }

    .list_base .article_date .date,
    .list_base .article_date .author {
        display: block;
    }
}

.list_base .text_area h2 {
    padding: 10px;
    font-weight: bold;
    font-size: 1rem;
    min-height: 3.5rem;
}


.list_base .text_area .group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0px 10px 5px 10px;
}

.list_base .text_area .group a {
    background: #000;
    padding: 1px 5px;
    margin: 2px;
    font-size: 0.6rem;
    color: #fff;
}


.list_base .text_area a.cate {
    color: #fff !important;
}


.list_base .text_area a.tag {
    border-radius: 10px;
    background: #fff;
    color: #000;
}

@media screen and (max-width: 1020px) {
    .list_block li {
        width: calc(33.33% - 10px);
        margin: 5px;
    }
}

@media screen and (max-width: 680px) {
    .list_block li {
        width: calc(50% - 10px);
        margin: 5px;
    }

    .list_base .text_area h2 {
        font-size: 0.8rem;
        line-height: 1rem;
        padding: 5px;
    }

    .list_base .article_date .date,
    .list_base .article_date .author {
        padding-left: 12px;
        background-size: 10px;
    }



    .list_base .text_area .group {
        padding: 0px 5px 5px 5px;
    }

    .list_base .text_area .group a {
        font-size: 0.5rem;
    }


}

/*-----------------------

   header

-----------------------*/

#wrap header .header_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 2px solid #ffe33f;
}

#wrap header h1 {
    flex-grow: 0;
    padding: 0px 40px;
    text-align: center;
}

@media screen and (max-width: 400px) {
    #wrap header h1 {
        margin: 0px auto;
    }
}



#wrap header h1 a {
    display: inline-block;
    margin: 10px auto;
}

#wrap header h1 img {
    max-width: 100px;
}

#wrap header nav {
    flex-grow: 1;
    padding: 5px 0px;
}

@media screen and (max-width: 400px) {
    #wrap header nav {
        width: 100%;
    }
}

#wrap header nav ul {
    display: flex;
    justify-content: space-around;
    max-width: 600px;
}

#wrap header nav a {
    font-weight: bold;
    color: #000;
}

@media screen and (max-width: 751px) {

    #wrap header h1 a {
        margin: 10px auto;
    }

    #wrap header h1 img {
        max-height: 40px;
    }

    #wrap header nav {
        font-size: 0.9rem;
        padding: 10px 0px;
    }
}


/*-----------------------

  footer

-----------------------*/
.shere {
    text-align: center;
}

.shere ul {
    display: flex;
    justify-content: center;
}

.shere ul li {
    margin: 20px 10px;
}


footer #infoArea {
    background:
        url(../images/bg_footer_img01.png) no-repeat left bottom,
        url(../images/bg_footer_img02.png) no-repeat right bottom,
        url(../images/bg_footer.png) repeat center top;
    padding-bottom: 10px;
}

footer #infoArea h1 {
    text-align: center;
    font-weight: bold;
    padding: 20px;
}

footer #infoArea a.sodane_form {
    display: block;
    max-width: 300px;
    margin: 0px auto 20px;
}


footer .sns {
    background-color: #ffe33f;
    text-align: center;
}

footer .sns ul {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

footer .sns ul li {
    margin: 0px 10px
}

footer .sns ul li img {
    max-width: 40px;
}


footer .infomation {
    background-color: #ffe33f;
    text-align: center;
    padding: 30px 10px;
    font-weight: bold;
}

footer .infomation a {
    margin: 20px;
}

footer .copyright {
    background-color: #ffe33f;
    text-align: center;
    color: #c0a837;
    padding-bottom: 20px;
}

@media screen and (max-width: 751px) {


    footer #infoArea {
        font-size: 0.8rem
    }

    footer #infoArea a.sodane_form {
        max-width: 200px;
    }

    footer .infomation a {
        font-size: 0.7rem;
        margin: 10px 5px;
    }

}

/*========================================================================================================TOP*/


/*-----------------------

  #topics_slider

-----------------------*/

#wrap #topics_slider {
    margin: 20px 0px;
    padding: 30px 0px;
}

#wrap #topics_slider ul li .photo_area {
    background: #fffde5;
    width: 600px;
    height: 338px;
    position: relative;
    height: auto;
}


#wrap #topics_slider ul li .photo_area:after {
    content: "";
    display: block;
    padding-top: 56.25%;
}


#wrap #topics_slider ul li .photo_area .inner {
    position: absolute;

    width: 100%;
    height: 100%;
}

#wrap #topics_slider ul li .photo_area img {
    position: absolute;

    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;

    margin: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);

}


#wrap #topics_slider h2 {
    background: #ffe33f;
    background-image: url(../images/bg_triangle.png);
    display: block;
    padding: 20px 10px;
    font-weight: bold;
    min-height: 5rem;
}


@media screen and (max-width: 600px) {


    #wrap #topics_slider {
        padding: 0px 0px 30px 0px;
        margin-bottom: 10px;
    }


    #wrap #topics_slider ul li .photo_area {
        width: 300px;
        height: 169px;
    }

    #wrap #topics_slider h2 {
        min-height: 47px;
        padding: 10px;
        font-size: 0.8rem;
    }
}




/*-----------------------

   swiper

-----------------------*/


.swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 0 !important;
}

.swiper1 .swiper-slide {
    background-position: center;
    background-size: cover;
    max-width: 600px;
    max-height: calc(338px + 5rem);
}


@media screen and (max-width: 600px) {
    .swiper1 .swiper-slide {
        max-width: 300px;
        max-height: calc(200px + 5rem);
        /*         max-height: 200px;*/

    }
}


/*-----------------------

  #new_article

-----------------------*/

#wrap #new_article h1 {
    background-image: url(../images/bg_dot.png);
    font-family: 'Kosugi Maru', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 5px;
    padding: 10px;
    margin: 20px 0px;
}

#wrap #new_article #articlepager {
    text-align: center;
    margin-top: 40px;
    line-height: 2rem;
}

#wrap #new_article #articlepager span.current_page {
    font-size: 12px;

    margin: 1px;
    padding: 3px 8px;

    color: #000;
    border: 1px solid #000;
    background: #FFE33F;
}

#wrap #new_article #articlepager a.link_before {
    margin-right: 9px;
}

#wrap #new_article #articlepager a.link_next {
    margin-left: 9px;
}

#wrap #new_article #articlepager a {
    font-size: 12px;

    margin: 1px;
    padding: 3px 8px;

    color: #000;
    border: 1px solid #000;
    background: #ffffff;
}

#wrap #new_article #articlepager a,
#wrap #new_article #articlepager a:visited {
    text-decoration: none;
}

#wrap #new_article #articlepager a:hover {
    text-decoration: none;

    color: #ccc;
    border: 1px solid #ebd985;
    background: #fff;
    background-color: #f2f1ba;
}



/*-----------------------

  #series_slider

-----------------------*/
#wrap #series_slider {
    background-image: url(../images/bg_triangle.png);
    padding: 0px;
    margin: 20px 0px;
}

#wrap #series_slider h1 {
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 20px;
}

#wrap #series_slider h1 span {
    padding: 0px 20px;
    border-bottom: 2px solid #ffe33f;
}

#wrap #series_slider ul {
    display: flex;
}

#wrap #series_slider ul li {
    padding: 20px;
}

#wrap #series_slider ul li .series_block {
    background: #c0a837;
    position: relative;
    position: relative;
    border-radius: 10px;
    text-align: center;
}

#wrap #series_slider ul li .series_block .series_title {
    background-color: rgba(0, 0, 0, 0.3);
    display: block;
    width: 100%;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    font-weight: bold;
    opacity: 1;
    z-index: 10;
    color: #fff;
    /*    text-shadow: 1px 1px 1px #000;*/
    padding: 10px;
    text-align: center;
    /* border-top: 2px solid #fff;
    border-bottom: 2px solid #fff; */
}

#wrap #series_slider ul li .series_block img {
    opacity: 0.8;
    border-radius: 10px;
    height:160px;
    object-fit: contain;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    #wrap #series_slider ul li .series_block .series_title {
        font-size: 0.8rem;
    }
}


/*-----------------------

  #ranking

-----------------------*/

.uzou {
    max-width: 800px;
    margin: 0px auto;
}

#ranking {
    background-image: url(../images/bg_boxdot.png);
    background-size: 64px;
    padding: 10px 0 20px;
}

#wrap #ranking h1 span {
    background-color: #ffe33f;
    padding: 5px 20px;
}

#ranking h1 {
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 20px 20px 40px 20px;
}

/*
#ranking dl {
    max-width: 1360px;
    padding: 20px;
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
}

#ranking dl dt,
#ranking dl dd {
    margin-bottom: 10px;
}


#ranking dl dt {
    display: block;
    width: 6rem;
    counter-increment: rank;
    background-color: #ffe33f;
    text-align: center;
    padding-top: 20px;
    font-size: 2rem;
    font-weight: bold;
}


#ranking dl .list_rank {
    width: calc(100% - 6rem);
    background-color: #fffde5;
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
    align-items: center;
}

#ranking dl .list_rank .photo_area {
    position: relative;
    height: auto;
    background: #fff;
    width: 200px;
    min-height: 100px;
}

#ranking dl .list_rank .photo_area:after {
    content: "";
    display: block;
    padding-top: 56.25%;
}


#ranking dl .list_rank .photo_area .inner {
    position: absolute;
    display: flex;

    width: 100%;
    height: 100%;
}

#ranking dl .list_rank img {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}

#ranking dl .list_rank .article_txt {
    padding: 10px 10px 0px;
}
#ranking dl .list_rank .article_txt a{
    display: block !important;
}


#ranking dl .list_rank h2 {
    padding: 10px;
    font-weight: bold;
    font-size: 1rem;
}


@media screen and (max-width: 680px) {


    #ranking dl dt {
        width: 2rem;
    }

    #ranking dl .list_rank {
        width: calc(100% - 2rem);
        flex-wrap: wrap;
        justify-content: center;
    }


    #ranking dl .list_rank h2 {
        font-size: 0.8rem;
    }

    #ranking dl .list_rank .article_txt .group a {
        font-size: 0.5rem;
    }

}


*/



/*-----------------------

  #ranking new!

-----------------------*/

#ranking #w-rank {
    max-width: 1360px;
    margin: 0px auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
}

/*
#ranking #w-rank span {
    background: #ffe33f;
    border-radius: 20px;
    font-size: 20px;
    padding: 20px;
    counter-increment: rank;
}
*/


#ranking #w-rank .list_rank {
    border: 1px solid #ffe33f;
    width: calc(20% - 10px);
    position: relative;
    background: #fffde5;
    border-radius: 5px;
}

#ranking #w-rank .list_rank span {
    display: inline-block;
    position: absolute;
    top: -6px;
    left: 10px;
    margin: 0;
    padding: 10px 0;
    z-index: 2;
    width: 40px;
    text-align: center;
    color: #000;
    font-size: 17px;
    font-weight: bold;
    background: linear-gradient(#ffba00 0%, #ffe33f 100%);
    border-radius: 2px 0 0 0;
}

#ranking #w-rank .list_rank span:before {
    position: absolute;
    content: '';
    top: 0;
    right: -6px;
    border: none;
    border-bottom: solid 6px #cf4a2d;
    border-right: solid 6px transparent;
}


#ranking #w-rank .list_rank span:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 20px solid #ffe33f;
    border-right: 20px solid #ffe33f;
    border-bottom: 10px solid transparent;
}

#ranking #w-rank .list_rank .photo_area {
    position: relative;
    height: auto;
    background: #fff;
    width: 100%;
    min-height: 100px;
    border-radius: 5px 5px 0px 0px;
}

#ranking #w-rank .list_rank .photo_area:after {
    content: "";
    display: block;
    padding-top: 56.25%;
}

#ranking #w-rank .list_rank img {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}

#ranking #w-rank .list_rank h2 {
    padding: 10px;
    font-weight: bold;
}

/*

@media screen and (max-width: 850px) {
    #ranking #w-rank {
        flex-wrap: wrap;
    }

    #ranking #w-rank .list_rank {
        width: calc(33% - 10px);
        margin-bottom: 20px;
    }
}
*/

@media screen and (max-width: 850px) {
    #ranking #w-rank {
        flex-wrap: wrap;
        max-width: 80%;
    }

    #ranking #w-rank .list_rank {
        width: calc(100% - 10px);
        margin-bottom: 20px;
    }
}



/*========================================================================================================category*/


/*-----------------------

  category

-----------------------*/

#wrap #category #category_list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 1360px;
    margin: 0px auto;
    text-align: center;
}

#wrap #category #category_list li {
    align-items: center;
    margin: 5px;
}

#wrap #category #category_list li a > h2 {
    background-color: #000;
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 10px;
    padding-left: 30px;
}

#wrap #category #category_list li a > h2:hover {
    opacity: 0.5;
}

.arrow_r {
    position: relative;
    display: inline-block;
    color: #333;
    text-decoration: none;
}

.arrow_r:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -4px;
    transform: rotate(45deg);
}


/*========================================================================================================series*/

/*-----------------------

  series

-----------------------*/

#wrap #series .list_block li .list_base .text_area a {
    display: block;
    min-height: 5rem;
}

@media screen and (max-width: 680px) {
    #wrap #series .list_block li .list_base .text_area a {
        min-height: 3rem;
    }

}

/*========================================================================================================feature*/

/*-----------------------

  feature

-----------------------*/

#wrap #feature .list_block li .list_base .text_area a {
    display: block;
    min-height: 5rem;
}

@media screen and (max-width: 680px) {
    #wrap #feature .list_block li .list_base .text_area a {
        min-height: 3rem;
    }
}

/*-----------------------

    feature_subpage

-----------------------*/

#wrap #feature_sub .feature_main {
    background-color: #fff7d2;
    display: block;
    max-width: 600px;
    margin: 20px auto;
}

#wrap #feature_sub .feature_main h2 {
    background-color: #ffe33f;
    padding: 20px;
    font-weight: bold;
    font-size: 1rem;
}

#wrap #feature_sub .feature_main p {
    padding: 20px;
}

#wrap #feature_sub .feature_main p a{
    color: #4a87ff;
	text-decoration: underline;"
}



#wrap #feature_sub .feature_main .photo_area {
    position: relative;
    height: auto;
    background: #FFFDE5;
}

#wrap #feature_sub .feature_main .photo_area:after {
    content: "";
    display: block;
    padding-top: 56.25%;
}


#wrap #feature_sub .feature_main .photo_area .inner {
    position: absolute;
    width: 100%;
    height: 100%;
}

#wrap #feature_sub .feature_main .photo_area img {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 680px) {

    #wrap #feature_sub .feature_main {
        max-width: 300px;
    }

    #wrap #feature_sub .feature_main h2,
    #wrap #feature_sub .feature_main p {
        font-size: 0.8rem;
        padding: 10px;
    }

}


/*========================================================================================================author*/

/*-----------------------

  author

-----------------------*/

#wrap #author .author_list {
    max-width: 1300px;
    margin: 0px auto;
}


#wrap #author .author_list li {
    display: flex;
    border: 2px solid #ffe33f;
    padding: 10px;
    margin: 10px 50px;
    box-shadow: 5px 5px 0px rgba(255, 227, 63, 0.2);
}


#wrap #author .author_list .photo_area img {
    width: 100px;
    height: auto;
    border-radius: 50px;
    margin: 10px;
    border: 3px solid #ffe33f;
}

#wrap #author .author_list .text_area {
    width: calc(100% - 110px);
}


#wrap #author .author_list .text_area h2 {
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding: 5px;
    border-bottom: 2px dotted #ffe33f;
}

#wrap #author .author_list .text_area p {
    min-height: 2.5rem;
    padding: 5px;
}

#wrap #author .author_list .text_area p a {
    color: #4a87ff;
    text-decoration: underline;
}

#wrap #author .author_list .text_area .btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: 10px 0px 0px 0px;
    border-radius: 20px;
    text-decoration: none;
}


@media screen and (max-width: 680px) {

    #wrap #author .author_list li {
        margin: 10px;
    }

    #wrap #author .author_list .text_area {
        width: calc(100% - 90px);
    }

    #wrap #author .author_list .photo_area img {
        width: 80px;
        height: 80px;
        border-radius: 40px;
        margin: 0px 10px 0px 0px;
    }

    #wrap #author .author_list .text_area h2 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    #wrap #author .author_list .text_area p {
        font-size: 0.8rem;
    }

    #wrap #author .author_list .text_area .btn {
        font-size: 0.8rem;
        margin: 5px 0px 0px 0px;
    }
}


/*-----------------------

   #authorProfile

-----------------------*/

#wrap #authorProfile {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0px auto;

    box-sizing: border-box;
    border: 4px solid #FFE33F;
    padding: 10px;

    background: url('../images/bg_author_profile.png') no-repeat bottom right;

    background-size: auto;
}

#wrap #authorProfile .photo_area {
    width: 220px;
}

#wrap #authorProfile .photo_area img {
    width: 200px;
    height: auto;
    border-radius: 100px;
    margin-right: 20px;
    border: 3px solid #ffe33f;
}

#wrap #authorProfile .text_area {
    width: calc(100% - 220px);
}

#wrap #authorProfile .text_area h1 {
    display: inline-block;
    background-color: transparent;
    border-bottom: 2px dotted #FFE33F;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5rem;
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px;
}

#wrap #authorProfile .text_area .who {
    color: #ffe33f;
    padding: 0px;
    font-weight: bold;
    min-height: 0px;
}

#wrap #authorProfile .text_area p {
    padding: 5px;
}

#wrap #authorProfile .text_area p a {
	color: #4a87ff;
    text-decoration: underline;
}


@media screen and (max-width: 751px) {

    #wrap #authorProfile {
        justify-content: center;
        background-size: 50% auto;
        font-size: 0.8rem;
        line-height: 1rem;
        margin: 0px 10px;
    }

    #wrap #authorProfile .photo_area {
        width: 100%;
        text-align: center;
    }

    #wrap #authorProfile .photo_area img {
        width: 150px;
        height: 150px;
        border-radius: 75px;
        margin-right: 0px;
        margin: auto;
    }

    #wrap #authorProfile .text_area {
        width: 100%;
        margin-top: 10px;
    }
}






/*========================================================================================================tag*/
/*-----------------------

  tag

-----------------------*/

#wrap #tag .tag_list {
    max-width: 1300px;
    margin: 0px auto 30px;
    display: flex;
    flex-wrap: wrap;
}


#wrap #tag .tag_list li a {
    display: block;
    border-radius: 20px;
    background: #fff;
    color: #000;
    padding: 5px;
    border: 1px solid #ffe33f;
    margin: 5px;
}