@charset 'UTF-8';
/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Color
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
Base style & container
==================================================== */
body
{
    font-family: 'Noto Sans CJK JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', '游ゴシック', '游ゴシック体', YuGothicMedium, YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ ゴシック', 'MS Gothic', 'HiraKakuProN-W3', 'TakaoExゴシック', TakaoExGothic, 'MotoyaLCedar', 'Droid Sans Japanese', sans-serif;
    font-size: 100%;
    line-height: 1.4;

    color: black;
}

@media screen and (min-width: 1200px)
{
    body
    {
        overflow-x: hidden;
    }
}

.container,
#contents
{
    display: block;

    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-sp
{
    padding: 0 20px;
}

.row
{
    display: block;
    overflow: hidden;
}

.row .col
{
    float: left;
}

.flex-row
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-justify-content: space-between;
       -moz-justify-content: space-between;
        -ms-justify-content: space-between;
            justify-content: space-between;
    -ms-flex-pack: space-between;
}

.flex-row-center
{
    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

.flex-row-bottom
{
    -webkit-align-items: flex-end;
       -moz-align-items: flex-end;
        -ms-align-items: flex-end;
            align-items: flex-end;
}

.flex-row-wrap
{
    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.flex-row .col-lg-6
{
    width: 48.8%;
}

/* ====================================================
Float & clear
==================================================== */
.clearfix
{
    *zoom: 1;
}

.clearfix:before
{
    display: table;

    content: '';
}

.clearfix:after
{
    display: table;
    clear: both;

    content: '';
}

/* ====================================================
Header & footer
==================================================== */
#main-header .top-menu
{
    padding: 20px 0 10px;
}

#main-header .top-menu .container,
#main-header .top-menu #contents
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-align-items: flex-end;
       -moz-align-items: flex-end;
        -ms-align-items: flex-end;
            align-items: flex-end;
    -webkit-justify-content: space-between;
       -moz-justify-content: space-between;
        -ms-justify-content: space-between;
            justify-content: space-between;
    -ms-flex-pack: space-between;
}

#main-header .top-menu .container .logo,
#main-header .top-menu #contents .logo
{
    width: 154px;
    margin-left: 15px;
}

#main-header .top-menu .container .logo img,
#main-header .top-menu #contents .logo img
{
    width: 100%;
}

#main-header .top-menu .container .right-tools,
#main-header .top-menu #contents .right-tools
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

#main-header .top-menu .container .right-tools .search-box,
#main-header .top-menu #contents .right-tools .search-box
{
    position: relative;

    margin-right: 30px;
}

#main-header .top-menu .container .right-tools .search-box input[type='search'],
#main-header .top-menu #contents .right-tools .search-box input[type='search'],
#main-header .top-menu .container .right-tools .search-box input[type='text'],
#main-header .top-menu #contents .right-tools .search-box input[type='text']
{
    font-size: 14px;
    font-size: 1.4rem;

    height: 28px;
    padding: 0 40px 0 20px;

    border: 1px solid #bbb;
    -webkit-border-radius: 50px;
       -moz-border-radius: 50px;
            border-radius: 50px;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
#main-header .top-menu .container .right-tools .search-box input[type='search']:focus,
#main-header .top-menu #contents .right-tools .search-box input[type='search']:focus {
    outline: none;
}
#main-header .top-menu .container .right-tools .search-box input[type='search']::-webkit-search-cancel-button,
#main-header .top-menu #contents .right-tools .search-box input[type='search']::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

#main-header .top-menu .container .right-tools .search-box input[type='text']::placeholder,
#main-header .top-menu #contents .right-tools .search-box input[type='text']::placeholder
{
    color: #949494;
}

#main-header .top-menu .container .right-tools .search-box input[type='text']:focus,
#main-header .top-menu #contents .right-tools .search-box input[type='text']:focus
{
    outline: none;
}

#main-header .top-menu .container .right-tools .search-box button[type='submit'],
#main-header .top-menu #contents .right-tools .search-box button[type='submit']
{
    font-size: 15px;
    font-size: 1.5rem;

    position: absolute;
    top: 50%;
    right: 5px;

    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);

    color: #bbb;
    border: none;
    background: none;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

#main-header .top-menu .container .right-tools .search-box button[type='submit']:focus,
#main-header .top-menu #contents .right-tools .search-box button[type='submit']:focus
{
    outline: none;
}

#main-header .top-menu .container .right-tools .search-box button[type='submit']:hover,
#main-header .top-menu #contents .right-tools .search-box button[type='submit']:hover
{
    cursor: pointer;
}

#main-header .top-menu .container .right-tools .social-btn-group,
#main-header .top-menu #contents .right-tools .social-btn-group
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    margin: 0 -5px;

    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

#main-header .top-menu .container .right-tools .social-btn-group .facebook,
#main-header .top-menu #contents .right-tools .social-btn-group .facebook,
#main-header .top-menu .container .right-tools .social-btn-group .twitter,
#main-header .top-menu #contents .right-tools .social-btn-group .twitter
{
    font-size: 20px;
    font-size: 2rem;
    line-height: 38px;

    display: block;

    width: 38px;
    height: 38px;
    margin: 0 5px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-align: center;

    color: white;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;

    -webkit-backface-visibility: hidden;
}

#main-header .top-menu .container .right-tools .social-btn-group .facebook:hover,
#main-header .top-menu #contents .right-tools .social-btn-group .facebook:hover,
#main-header .top-menu .container .right-tools .social-btn-group .twitter:hover,
#main-header .top-menu #contents .right-tools .social-btn-group .twitter:hover
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    opacity: .6;

    -webkit-backface-visibility: hidden;
}

#main-header .top-menu .container .right-tools .social-btn-group .facebook a,
#main-header .top-menu #contents .right-tools .social-btn-group .facebook a,
#main-header .top-menu .container .right-tools .social-btn-group .twitter a,
#main-header .top-menu #contents .right-tools .social-btn-group .twitter a
{
    display: block;
}

#main-header .top-menu .container .right-tools .social-btn-group .facebook,
#main-header .top-menu #contents .right-tools .social-btn-group .facebook
{
    background-color: #315096;
}

#main-header .top-menu .container .right-tools .social-btn-group .twitter,
#main-header .top-menu #contents .right-tools .social-btn-group .twitter
{
    background-color: #55acee;
}

#main-header .top-menu .container .right-tools .date-time,
#main-header .top-menu #contents .right-tools .date-time
{
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: bold;

    margin-left: 30px;

    color: #e6156c;
}

#main-header .top-menu .container .right-tools .date-time span,
#main-header .top-menu #contents .right-tools .date-time span
{
    font-size: 15px;
    font-size: 1.5rem;
}

#main-header .bottom-menu
{
    position: relative;

    min-width: 1200px;

    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

#main-header .bottom-menu .main-nav > ul > li
{
    float: left;

    width: 12.5%;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-align: center;

    border-top: 4px solid transparent;
    border-left: 1px solid #e5e5e5;

    -webkit-backface-visibility: hidden;
}

#main-header .bottom-menu .main-nav > ul > li:last-of-type
{
    border-right: 1px solid #e5e5e5;
}

#main-header .bottom-menu .main-nav > ul > li:hover
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    border-top-color: #e6156c;

    -webkit-backface-visibility: hidden;
}

#main-header .bottom-menu .main-nav > ul > li:hover .wrap
{
    visibility: visible;

    opacity: 1;
}

#main-header .bottom-menu .main-nav > ul > li a
{
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;

    display: block;

    padding: 12px 15px;

    color: #010101;
}

#main-header .bottom-menu .main-nav > ul > li .wrap
{
    position: absolute;
    z-index: 9999 !important;
    top: 101%;
    right: 0;
    left: 0;

    display: block;
    visibility: hidden;
    overflow: inherit;
    clip: inherit;

    width: 100%;
    max-width: 1170px;
    margin: auto;
    padding: 1px 10px;

    transition: all .3s;

    opacity: 0;
    background-color: #f9f9f9;
}

#main-header .bottom-menu .main-nav > ul > li .wrap .menu
{
    padding: 0 15px;

    text-align: center;
}

#main-header .bottom-menu .main-nav > ul > li .wrap .menu li
{
    position: relative;

    display: inline-block;

    margin-right: 10px;
}

#main-header .bottom-menu .main-nav > ul > li .wrap .menu li:after
{
    position: absolute;
    top: 50%;
    right: -10px;

    display: inline-block;

    width: 1px;
    height: 16px;

    content: '';
    transform: translateY(-50%);

    background-color: #bbb;
}

#main-header .bottom-menu .main-nav > ul > li .wrap .menu li:last-child:after
{
    display: none;
}

#main-header .bottom-menu .main-nav > ul > li .wrap .menu li a
{
    color: #e6156c;
}

#main-header .bottom-menu .main-nav > ul > li .wrap .menu li a:hover
{
    text-decoration: underline;
}

#main-footer .top-row
{
    min-width: 1200px;
    padding: 18px 0;

    background-color: #f1f1f1;
}

#main-footer .top-row .container,
#main-footer .top-row #contents
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-justify-content: space-between;
       -moz-justify-content: space-between;
        -ms-justify-content: space-between;
            justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

#main-footer .top-row .container .left,
#main-footer .top-row #contents .left
{
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: bold;

    width: 145px;

    color: #333;
}

#main-footer .top-row .container .right,
#main-footer .top-row #contents .right
{
    width: calc(100% - 145px);
}

#main-footer .top-row .container .right .sites-list,
#main-footer .top-row #contents .right .sites-list
{
    overflow: hidden;

    margin-bottom: -10px;
}

#main-footer .top-row .container .right .sites-list li,
#main-footer .top-row #contents .right .sites-list li
{
    float: left;

    width: 15.58%;
    margin-right: 1.3%;
    margin-bottom: 10px;
}

#main-footer .top-row .container .right .sites-list li:nth-of-type(6n),
#main-footer .top-row #contents .right .sites-list li:nth-of-type(6n)
{
    margin-right: 0;
}

#main-footer .top-row .container .right .sites-list li a,
#main-footer .top-row #contents .right .sites-list li a
{
    font-size: 13px;
    font-size: 1.3rem;

    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    padding: 15px 10px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-align: center;

    color: #000;
    background-color: #fff;

    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
       -moz-justify-content: center;
        -ms-justify-content: center;
            justify-content: center;
    -ms-flex-pack: center;
    -webkit-backface-visibility: hidden;
}

#main-footer .top-row .container .right .sites-list li a:hover,
#main-footer .top-row #contents .right .sites-list li a:hover
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    opacity: .6;

    -webkit-backface-visibility: hidden;
}

#main-footer .middle-row
{
    padding: 10px 0;
}

#main-footer .middle-row .container,
#main-footer .middle-row #contents
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-justify-content: space-between;
       -moz-justify-content: space-between;
        -ms-justify-content: space-between;
            justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

#main-footer .middle-row .container .left,
#main-footer .middle-row #contents .left
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

#main-footer .middle-row .container .left .company-logo,
#main-footer .middle-row #contents .left .company-logo
{
    margin-right: 25px;
}

#main-footer .middle-row .container .left .company-logo a,
#main-footer .middle-row #contents .left .company-logo a
{
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: bold;

    color: #000;
}

#main-footer .middle-row .container .left .company-contact,
#main-footer .middle-row #contents .left .company-contact
{
    font-size: 14px;
    font-size: 1.4rem;

    color: #000;
}

#main-footer .middle-row .container .left .company-contact a,
#main-footer .middle-row #contents .left .company-contact a
{
    display: inline-block;

    margin: 0 0 0 15px;
}

#main-footer .middle-row .container .right .sitemap,
#main-footer .middle-row #contents .right .sitemap
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

#main-footer .middle-row .container .right .sitemap li,
#main-footer .middle-row #contents .right .sitemap li
{
    position: relative;

    margin-right: 18px;
}

#main-footer .middle-row .container .right .sitemap li:last-of-type,
#main-footer .middle-row #contents .right .sitemap li:last-of-type
{
    margin-right: 0;
}

#main-footer .middle-row .container .right .sitemap li:after,
#main-footer .middle-row #contents .right .sitemap li:after
{
    position: absolute;
    top: 50%;
    right: -10px;

    display: inline-block;

    width: 1px;
    height: 16px;

    content: '';
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);

    background-color: #6b6b6b;
}

#main-footer .middle-row .container .right .sitemap li:last-of-type:after,
#main-footer .middle-row #contents .right .sitemap li:last-of-type:after
{
    display: none;
}

#main-footer .middle-row .container .right .sitemap li a,
#main-footer .middle-row #contents .right .sitemap li a
{
    font-size: 14px;
    font-size: 1.4rem;

    display: block;

    text-align: center;

    color: #000;
}

#main-footer .bottom-row
{
    min-width: 1200px;
    padding: 6px 0;

    background-color: #464646;
}

#main-footer .bottom-row .copyright p
{
    font-size: 13px;
    font-size: 1.3rem;

    text-align: center;

    color: white;
}

/* ====================================================
Components
==================================================== */
#contents
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    margin-top: 25px;

    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

#contents #main-articles
{
    width: 72.8%;
}

#contents #main-sidebar
{
    width: 27.2%;
    padding-left: 20px;
}

#contents section
{
    margin-bottom: 40px;
}

#contents .section-content
{
    padding: 25px 15px;

    border: 1px solid #e5e5e5;
}

.breadcrumbs
{
    font-size: 13px;
    font-size: 1.3rem;

    margin-bottom: 10px;

    color: #000;
}

.breadcrumbs a
{
    text-decoration: underline;
}

.pagination
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    margin-top: 30px;
    margin-bottom: 60px;

    -webkit-justify-content: center;
       -moz-justify-content: center;
        -ms-justify-content: center;
            justify-content: center;
    -ms-flex-pack: center;
}

.pagination li
{
    margin: 0 5px;
}

.pagination li a
{
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 30px;

    display: block;

    width: 30px;
    height: 30px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-align: center;

    border: 1px solid #e8e0e0;

    -webkit-backface-visibility: hidden;
}

.pagination li a.active,
.pagination li a:hover
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    color: white;
    background-color: #e6156c;

    -webkit-backface-visibility: hidden;
}

.pagination li a.nav
{
    width: 65px;
    margin: 0 10px;
}

/* ====================================================
Typography
==================================================== */
/* ====================================================
Buttons, input, .etc
==================================================== */
.index_pc_detail
{
    margin-bottom: 20px !important;
}

.index_pc
{
    margin-bottom: 20px !important;
}

.index_pc_list
{
    margin-bottom: 20px !important;
}

#topics > .flex-row .ttl
{
    font-size: 20px;
    font-size: 2rem;
}

#column > .flex-row .ttl
{
    font-size: 20px;
    font-size: 2rem;
}

.post-detail .post-ttl
{
    margin-bottom: 15px;
}

.post-detail .post-ttl h1
{
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;

    color: #000;
}

.post-group .ttl::first-letter,
.post-detail .post-ttl h1::first-letter,
.post-detail .post-ttl h1 span
{
    color: #e6156c;
}

.social-btn-group
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;
}

.social-btn-group .facebook,
.social-btn-group .twitter
{
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 30px;
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    text-align: center;
    color: white;
	border-radius:30px;
}

.social-btn-group .facebook
{
    background-color: #315096;
}

.social-btn-group .twitter
{
    background-color: #55acee;
}

.post-detail .post-time
{
    font-size: 13px;
    font-size: 1.3rem;

    color: #828282;
}

.post-detail .post-content
{
    margin-top: 35px;
}

.post-detail .post-content p
{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;

    margin-bottom: 20px;

    color: #000;
}

.post-detail .post-content dl
{
    margin-bottom: 20px;
}

.post-detail .post-content dl dt,
.post-detail .post-content dl dd
{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;

    color: #000;
}

.post-detail .post-content .post-excerpt
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    margin-bottom: 20px;
}

.post-detail .post-content .post-excerpt .img
{
    width: 315px;
    padding-right: 15px;
}

.post-detail .post-content .post-excerpt .img figcaption
{
    font-size: 14px;
    font-size: 1.4rem;

    margin-top: 2px;

    color: #828282;
}

.post-detail .post-content .post-excerpt .content
{
    width: calc(100% - 315px);
}

.post-detail .post-content .related-posts
{
    margin-top: 20px;
}

.post-detail .post-content .related-posts .ttl
{
    margin-bottom: 15px;
}

.post-detail .post-content .related-posts .ttl span
{
    font-size: 16px;
    font-size: 1.6rem;

    color: #000;
}

.post-detail .post-content .related-posts ul li
{
    margin-bottom: 15px;
}

.post-detail .post-content .related-posts ul li a
{
    font-size: 16px;
    font-size: 1.6rem;

    color: #e6156c;
}

.post-detail .post-content .related-posts ul li a:hover
{
    text-decoration: underline;
}

/* 出典元 */
.post-detail .post-content .referrer_area
{
    margin: 0 0 20px;
}
.post-detail .post-content .referrer_area .ttl
{
    display: inline-block;
    margin: 0 0 0 1em;
    font-size: 13px;
    font-size: 1.3rem;
}

.post-detail .post-content .referrer_area p
{
    display: inline-block;
    margin: 0 0.5em 0 0;
    line-height: 1.5;
}

.post-detail .post-content .referrer_area p a
{
    font-size: 13px;
    font-size: 1.3rem;
    color: #e6156c;

}
.post-detail .post-content .referrer_area li a:hover
{
    text-decoration: underline;
}
.post-group .ttl
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;

    color: #000;
}

.post-group .ttl span
{
    color: #e6156c;
}

.post-group .links a
{
    font-size: 13px;
    font-size: 1.3rem;

    color: #e6156c;
}

.post-group .links a:before
{
    font-family: FontAwesome, sans-serif;
    font-size: 11px;
    font-size: 1.1rem;

    display: inline-block;

    margin-right: 3px;

    content: '\f054';
}

.post-group .links a:hover
{
    text-decoration: underline;
}

.post-group .post-count
{
    font-size: 15px;
    font-size: 1.5rem;

    color: #000;
}

.post-group .post-count span
{
    display: inline-block;

    margin-top: 10px;
    margin-bottom: 5px;

    color: #999;
}

.posts-list
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    margin-bottom: -1px;

    border: 1px solid #e5e5e5;

    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.posts-list > li
{
    width: 50%;
    margin-bottom: -1px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;

    -webkit-backface-visibility: hidden;
}

.posts-list > li:nth-of-type(2n)
{
    border-right: none;
}

.posts-list > li .img
{
    width: 80px;
}

.posts-list > li .detail
{
    width: calc(100% - 80px);
    padding-left: 12px;
}

.posts-list > li .detail .name
{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    color: #000;

    -webkit-backface-visibility: hidden;
}

.posts-list > li .detail .info
{
    font-size: 13px;
    font-size: 1.3rem;

    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    margin-top: 10px;

    text-align: right;

    color: #828282;

    -webkit-justify-content: flex-end;
       -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
            justify-content: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

.posts-list > li .detail .info .category
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

.posts-list > li .detail .info .category:before
{
    display: block;

    width: 1px;
    height: 15px;
    margin-right: 10px;
    margin-left: 15px;

    content: '';

    background-color: #bebebe;
}

.posts-list > li a
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    padding: 15px;

    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.posts-list > li:hover
{
    background-color: #f3f3f3;
}

.posts-list > li:hover .detail .name
{
    font-weight: bold;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-decoration: underline;

    color: #e6156c;

    -webkit-backface-visibility: hidden;
}

.posts-list > li:hover .notice-img
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-decoration: underline;

    color: #e6156c;

    -webkit-backface-visibility: hidden;
}

.posts-list.pickup-posts
{
    padding: 15px;
}

.posts-list.pickup-posts .img
{
    width: 360px;
}

.posts-list.pickup-posts .img img
{
    width: 100%;
}

.posts-list.pickup-posts .detail
{
    width: calc(100% - 360px);
    padding-left: 15px;
}

.posts-list.pickup-posts .detail .post-tags
{
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 26px;

    position: relative;

    display: inline-block;

    height: 24px;
    padding: 0 18px;

    color: white;
    background-color: #e6156c;
}

.posts-list.pickup-posts .detail .post-tags:after
{
    position: absolute;
    top: 0;
    left: 100%;

    display: block;

    content: '';

    border: 12px solid transparent;
    border-left: 10px solid #e6156c;
}

.posts-list.pickup-posts .detail .name
{
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;

    margin-top: 5px;

    color: #000;
}

.posts-list.pickup-posts .detail .info
{
    font-size: 13px;
    font-size: 1.3rem;

    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    color: #828282;

    -webkit-justify-content: flex-end;
       -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
            justify-content: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

.posts-list.pickup-posts .detail .info .category
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

.posts-list.pickup-posts .detail .info .category:before
{
    display: block;

    width: 1px;
    height: 15px;
    margin-right: 10px;
    margin-left: 15px;

    content: '';

    background-color: #bebebe;
}

.posts-list.pickup-posts .detail .excerpt
{
    font-size: 15px;
    font-size: 1.5rem;

    margin: 5px 0;

    color: #000;
}

.posts-list.pickup-posts .detail .cta
{
    text-align: right;
}

.posts-list.pickup-posts .detail .cta a
{
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 26px;

    display: inline-block;

    height: 28px;
    padding: 0 25px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    color: #e6156c;
    border: 1px solid #e6156c;
    -webkit-border-radius: 28px;
       -moz-border-radius: 28px;
            border-radius: 28px;

    -webkit-backface-visibility: hidden;
}

.posts-list.pickup-posts .detail .cta a:hover
{
    color: white;
    background-color: #e6156c;
}

.posts-list.single-row li
{
    width: 100%;

    border-right: none;
}

.posts-list.single-row li .name
{
    font-size: 15px;
    font-size: 1.5rem;
}

.posts-list.single-row li .info
{
    margin-top: 5px;

    text-align: left;

    -webkit-justify-content: flex-start;
       -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
            justify-content: flex-start;
    -ms-flex-pack: flex-start;
}

.posts-list.style02 li a .img
{
    width: 100px;
}

.posts-list.style02 li a .img img
{
    width: 100%;
}

.posts-list.style02 li a .detail
{
    width: calc(100% - 100px);
}

.posts-list.style02 li a .detail .name
{
    font-size: 17px;
    font-size: 1.7rem;
}

.posts-list.style02 li a .detail .info
{
    margin-top: 5px;
}

.posts-list.style02 li a .detail.detail-extra
{
    width: 100%;
    padding-left: 0;
}

.posts-list.style02 li a .detail.detail-extra .name
{
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: normal;

    margin-top: 10px;
}

.posts-list.style02 li a .detail.detail-extra .info .hashtag
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;
}

.posts-list.style02 li a .detail.detail-extra .info .hashtag li
{
    margin-left: 10px;
}

.posts-list.style02 li a:hover .detail.detail-extra .name
{
    text-decoration: none;

    color: #000;
}

.posts-list.style03
{
    border: none;
}

.posts-list.style03 li
{
    width: 100%;
    margin-bottom: 15px;

    border: none;
}

.posts-list.style03 li:last-of-type
{
    margin-bottom: 0;
}

.posts-list.style03 li a
{
    padding: 0;

    background-color: #fff;
}

.posts-list.style03 li a:hover
{
    background-color: #fff;
}

.posts-list.style03 li a .img
{
    width: 150px;
}

.posts-list.style03 li a .detail
{
    width: calc(100% - 150px);
}

.posts-list.style03 li a .detail .name
{
    font-size: 20px;
    font-size: 2rem;
}

.posts-list.style03 li a .detail .info
{
    font-size: 13px;
    font-size: 1.3rem;

    margin: 5px 0;

    color: #828282;
}

.posts-list.style03 li a .detail .excerpt
{
    font-size: 15px;
    font-size: 1.5rem;
}

.posts-list.style03 li a .detail .hashtag
{
    margin-top: 10px;

    text-align: right;
}

.posts-list.style03 li a .detail .hashtag li
{
    font-size: 13px;
    font-size: 1.3rem;

    display: inline-block;

    width: auto;
    margin-left: 10px;

    text-align: right;

    color: #8c8c8c;
}

.posts-list-col3 li
{
    width: 33.33333%;
}

.posts-list-col3 li:nth-of-type(2n)
{
    border-right: 1px solid #e5e5e5;
}

.posts-list-col3 li:nth-of-type(3n)
{
    border-right: none;
}

.posts-list-col3 li .img
{
    width: 100%;
}

.posts-list-col3 li .notice-img
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;

    padding-top: 10px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    color: #000;

    -webkit-backface-visibility: hidden;
}

.tags-list,
.categories-list
{
    margin-bottom: 40px;
}

.tags-list .ttl,
.categories-list .ttl
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;

    color: #000;
}

.tags-list ul,
.categories-list ul
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.tags-list ul li,
.categories-list ul li
{
    margin-top: 10px;
    margin-right: 10px;
}

.tags-list ul li a,
.categories-list ul li a
{
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 20px;

    display: block;

    height: 22px;
    padding: 0 15px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-align: center;

    color: #e6156c;
    border: 1px solid #e6156c;
    -webkit-border-radius: 44px;
       -moz-border-radius: 44px;
            border-radius: 44px;

    -webkit-backface-visibility: hidden;
}

.tags-list ul li a:hover,
.categories-list ul li a:hover
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    color: white;
    background-color: #e6156c;

    -webkit-backface-visibility: hidden;
}

.categories-list ul li a
{
    line-height: 30px;

    height: 32px;

    color: #000;
    border-color: #e5e5e5;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background-color: #f4f4f4;
}

.categories-list ul li a:hover
{
    color: #e6156c;
    border-color: #e5e5e5;
    background-color: #f4f4f4;
}

#main-sidebar .tags-list,
#main-sidebar .categories-list
{
    margin-bottom: 20px;
    padding: 15px;

    border: 1px solid #e5e5e5;
}

#main-sidebar .tags-list .ttl,
#main-sidebar .categories-list .ttl
{
    font-size: 15px;
    font-size: 1.5rem;

    text-align: center;
}

.posts-ranking
{
    margin-bottom: 20px;

    border: 1px solid #e5e5e5;
    border-top: 3px solid #464646;
}

.posts-ranking .ttl
{
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;

    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    padding: 7px;

    text-align: center;

    color: #000;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;

    -webkit-justify-content: center;
       -moz-justify-content: center;
        -ms-justify-content: center;
            justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

.posts-ranking .ttl img
{
    margin-right: 8px;
}

.posts-ranking .ranking-items
{
    counter-reset: post-ranking;
}

.posts-ranking .ranking-items li
{
    position: relative;

    counter-increment: post-ranking;

    border-bottom: 1px solid #e5e5e5;
}

.posts-ranking .ranking-items li:last-of-type
{
    border-bottom: none;
}

.posts-ranking .ranking-items li:before
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;

    position: absolute;
    top: 8px;
    left: 8px;

    display: block;

    content: counter(post-ranking);
    letter-spacing: -2px;

    color: #e6156c;
}

.posts-ranking .ranking-items li a
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    padding: 8px 0;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
       -moz-justify-content: space-between;
        -ms-justify-content: space-between;
            justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-backface-visibility: hidden;
}

.posts-ranking .ranking-items li a .img
{
    width: 68px;
    padding-right: 8px;
}

.posts-ranking .ranking-items li a .img img
{
    width: 100%;
}

.posts-ranking .ranking-items li a .detail
{
    font-size: 13px;
    font-size: 1.3rem;

    width: calc(100% - 60px);
    padding: 0 20px 0 35px;
}

.posts-ranking .ranking-items li a .detail .post-name
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    color: #000;

    -webkit-backface-visibility: hidden;
}

.posts-ranking .ranking-items li a .detail .post-datetime
{
    color: #828282;
}

.posts-ranking .ranking-items li a:hover
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    background-color: #f3f3f3;

    -webkit-backface-visibility: hidden;
}

.posts-ranking .ranking-items li a:hover .detail .post-name
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-decoration: underline;

    color: #e6156c;

    -webkit-backface-visibility: hidden;
}

/*slide pc kosu*/
.slider-show
{
    position: relative;

    margin: .5rem;

    text-align: center;

    background: #fff;
}

.slider-show img
{
    width: 100%;
    height: 100%;
}

.slider-show p
{
    font-size: 1.4rem !important;
}

.slider-show .txt
{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;

    overflow: auto;

    margin-bottom: 0 !important;
    padding-bottom: 30px;

    text-align: left;

    color: #828282 !important;
}

.slider-show.big
{
    max-width: 600px;
    margin: 0 auto;
}

.slider-show .btn
{
    font-size: 0;
    line-height: 0;
    line-height: 95px;

    position: absolute;
    top: 50%;

    display: block;

    width: 34px;
    height: 95px;
    padding: 0;

    cursor: pointer;
    transform: translateY(-50%);

    color: transparent;
    border: 1px solid #e5e5e5;
    outline: none;
    background: transparent;
}

.slider-show .btn:hover
{
    opacity: .5;
}

.slider-show .btn:before
{
    font-family: 'fontawesome';
    font-size: 22px;

    color: #575757;
}

.slider-show .btn-prev
{
    z-index: 1;
    top: 42%;
    left: -55px;
}

.slider-show .btn-prev:before
{
    content: '\f053';
}

.slider-show .btn-next
{
    z-index: 1;
    top: 42%;
    right: -55px;
}

.slider-show .btn-next:before
{
    content: '\f054';
}

.slider-thumnail
{
    display: inline-block;

    width: 100%;
}

.slider-thumnail li
{
    float: left;

    box-sizing: border-box;
    width: 156px;
    height:106px;
    margin-right: 1%;
    margin-bottom: 1%;

    border: 3px solid transparent;
}

.slider-thumnail li:nth-child(5n)
{
    margin-right: 0;
}

.slider-thumnail li:hover
{
    border: 3px solid #e6156c;
}

.slider-thumnail li.active
{
    border: 3px solid #e6156c;
}

.slider-thumnail li a
{
    display: inline-block;

    width: 100%;
}

.slider-thumnail li a:hover
{
    opacity: .5;
}
.slider-thumnail li a img{
	display:block;
	height:100px;
	width:auto;
	margin:0 auto;
}


.slider-single .slick-next,
.slider-single .slick-prev
{
    box-sizing: border-box !important;
    width: 34px !important;
    height: 95px !important;

    border: 1px solid #e5e5e5 !important;
}

.slider-single .slick-next:before,
.slider-single .slick-prev:before
{
    font-family: 'fontawesome';
    font-size: 22px;

    color: #575757;
}

.slider-single .slick-next
{
    top: 42% !important;
    right: 50px;
}

.slider-single .slick-next:before
{
    content: '\f054';
}

.slider-single .slick-prev
{
    z-index: 1;
    top: 42% !important;
    left: 50px;
}

.slider-single .slick-prev:before
{
    content: '\f053';
}

.btn-move
{
    display: block;

    max-width: 600px;
    margin: 16px auto 0;

    text-align: center;

    background-color: #f6f6f6;
}

.btn-move a
{
    font-size: 18px;
    font-size: 1.8rem;

    display: inline-block;

    width: 100%;
    padding: 15px 20px;

    border: 1px solid #aaa;
    border-radius: 6px;
}

.btn-move a:hover
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    opacity: .6;

    -webkit-backface-visibility: hidden;
}

#main-header-sp
{
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;

    width: 100%;
    height: 120px;

    background: #fff;
    box-shadow: 0 0 0 transparent, 0 0 0 transparent, 0 0 15px rgba(0, 0, 0, .2), 0 0 0 transparent;
}

#main-header-sp .logo
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    width: 100%;
    height: 120px;

    -webkit-justify-content: center;
       -moz-justify-content: center;
        -ms-justify-content: center;
            justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

#main-header-sp .logo img
{
    width: auto;
    height: 70px;
}

#main-header-sp .btn-search-sp
{
    font-size: 45px;

    position: absolute;
    top: 50%;
    left: 20px;

    transform: translateY(-50%);
}

#main-header-sp .news-toppic
{
    position: absolute;
    top: 50%;
    left: 110px;

    transform: translateY(-50%);
}

#main-header-sp .news-toppic a
{
    font-size: 20px;
    font-size: 2rem;

    display: inline-block;

    padding: 9px 15px;

    color: #fff;
    border-radius: 20px;
    background: #e6156c;
}

#main-header-sp .social-btn-group
{
    position: absolute;
    top: 50%;
    right: 14%;

    transform: translateY(-50%);
}

#main-header-sp .social-btn-group .facebook
{
    font-size: 45px;

    display: inline-block;

    margin-right: 35px;

    color: #315096;
}

#main-header-sp .social-btn-group .twitter
{
    font-size: 45px;

    display: inline-block;

    color: #55acee;
}

#main-header-sp .right-tools
{
    display: none;
}

#globalmenu
{
    display: none;
}

#globalmenu ul
{
    display: none;
}

#switchBtnArea
{
    position: relative;
}

#switchBtn
{
    position: absolute;
    top: 50%;
    right: 30px;

    width: 40px;
    height: 40px;

    transform: translateY(-50%);

    border-radius: 5px;
    outline: none;
}

#switchBtn .menu-trigger
{
    position: relative;

    width: 43px;
    height: 36px;
}

#switchBtn .menu-trigger span
{
    position: absolute;
    left: 0;

    width: 100%;
    height: 7px;

    border-radius: 5px;
    background-color: #333;
}

#switchBtn .menu-trigger,
#switchBtn .menu-trigger span
{
    display: inline-block;

    box-sizing: border-box;

    -webkit-transition: all .3s;
            transition: all .3s;
}

#switchBtn .menu-trigger span:nth-of-type(1)
{
    top: 0;
}

#switchBtn .menu-trigger span:nth-of-type(2)
{
    top: 14px;
}

#switchBtn .menu-trigger span:nth-of-type(3)
{
    top: 27px;
}

#switchBtn.btnClose .menu-trigger span:nth-of-type(1)
{
    -webkit-transform: translateY(3px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
}

#switchBtn.btnClose .menu-trigger span:nth-of-type(2)
{
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
}

#switchBtn.btnClose .menu-trigger span:nth-of-type(3)
{
    display: none;
}

#rwdMenuWrap
{
    position: absolute;
    top: 120px;
    left: 0;

    width: 100%;
}

#rwdMenuWrap ul
{
    display: none;
    overflow: auto;

    width: 100%;
    max-height: calc(100vh - 150px);
    margin: 0;
    padding: 0;

    background-color: #fff;
    box-shadow: 0 0 0 transparent, 0 0 0 transparent, 0 0 15px rgba(0, 0, 0, .2), 0 0 0 transparent;
}

#rwdMenuWrap ul li
{
    width: 100%;

    border-bottom: #aaa 1px dotted;
}

#rwdMenuWrap ul li:last-child
{
    border-bottom: none;
}

#rwdMenuWrap ul li a
{
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: bold;

    position: relative;

    display: block;

    padding: 12px 15px;

    text-align: left;
    text-decoration: none;

    color: #010101;
}

#rwdMenuWrap ul li a:after
{
    position: absolute;
    top: 22px;
    right: 40px;

    width: 10px;
    height: 10px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    border-top: 3px solid #010101;
    border-right: 3px solid #010101;
}

#rwdMenuWrap ul li .wrap
{
    display: none;
    overflow: inherit;

    width: 100%;

    transition: all .3s;
}

#rwdMenuWrap ul li .wrap .menu
{
    display: block;
    overflow: hidden;

    padding: 0 15px;

    text-align: center;

    box-shadow: none;
}

#rwdMenuWrap ul li .wrap .menu li
{
    position: relative;

    display: inline-block;

    width: 100%;
    margin-right: 10px;
}

#rwdMenuWrap ul li .wrap .menu li:first-child
{
    border-top: #aaa 1px dotted;
}

#rwdMenuWrap ul li .wrap .menu li a
{
    color: #e6156c;
}

#rwdMenuWrap ul li .wrap .menu li a:hover
{
    text-decoration: underline;
}

#rwdMenuWrap ul li .wrap .menu li a:after
{
    display: none;
}

#rwdMenuWrap ul li .show
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    -webkit-backface-visibility: hidden;
}

#rwdMenuWrap ul li .show:after
{
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    transform: rotate(132deg);

    -webkit-backface-visibility: hidden;
}

#rwdMenuWrap ul li .show .wrap
{
    display: block !important;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    -webkit-backface-visibility: hidden;
}

/*main-sp*/
#contents-sp
{
    width: 100%;
}

#contents-sp .container,
#contents-sp #contents
{
    width: 100%;
    padding: 0 20px;
}

#contents-sp #main-articles
{
    margin-top: 140px;
}

#contents-sp .posts-list
{
    border-right: none;
    border-left: none;
}

#contents-sp .posts-list > li
{
    width: 100%;

    border-right: none;
}

#contents-sp .posts-list > li .img
{
    width: 170px;
}

#contents-sp .posts-list > li .detail
{
    width: calc(100% - 170px);
    padding-left: 20px;
}

#contents-sp .posts-list > li .detail .name
{
    font-size: 32px;
    font-size: 3.2rem;
}

#contents-sp .posts-list > li .detail .info
{
    font-size: 18px;
    font-size: 1.8rem;
}

#contents-sp .posts-list > li a
{
    padding: 40px 20px;
}

#contents-sp .posts-list.pickup-posts
{
    border-top: none;
    border-right: none;
    border-left: none;
}

#contents-sp .posts-list.pickup-posts .img
{
    width: 100%;
}

#contents-sp .posts-list.pickup-posts .detail
{
    width: 100%;
}

#contents-sp .posts-list.pickup-posts .detail .name
{
    font-size: 35px;
    font-size: 3.5rem;

    margin-top: 20px;
}

#contents-sp .posts-list.pickup-posts .detail .info
{
    font-size: 18px;
    font-size: 1.8rem;

    margin-top: 20px;
}

#contents-sp #main-sidebar .posts-ranking .ttl
{
    font-size: 33px;
    font-size: 3.3rem;

    padding: 9px;
}

#contents-sp #main-sidebar .posts-ranking-fix
{
    margin-bottom: 0;

    border-bottom: none;
}

#contents-sp #main-sidebar .tags-list,
#contents-sp #main-sidebar .categories-list
{
    padding: 20px;
}

#contents-sp #main-sidebar .tags-list .ttl,
#contents-sp #main-sidebar .categories-list .ttl
{
    font-size: 30px;
    font-size: 3rem;
}

#contents-sp #main-sidebar .tags-list .ttl .fa,
#contents-sp #main-sidebar .categories-list .ttl .fa
{
    color: #e6156c;
}

#contents-sp #main-sidebar .tags-list ul li,
#contents-sp #main-sidebar .categories-list ul li
{
    margin-top: 20px;
    margin-right: 20px;
}

#contents-sp #main-sidebar .tags-list ul li a,
#contents-sp #main-sidebar .categories-list ul li a
{
    font-size: 20px;
    font-size: 2rem;
    line-height: 60px;

    height: 60px;
    padding: 0 32px;
}

.ranking-items-sp
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    width: 100%;

    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.ranking-items-sp li
{
    position: relative;

    width: 50%;
    padding: 20px;

    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.ranking-items-sp li:nth-child(5n+1)
{
    width: 100%;
}

.ranking-items-sp li:nth-child(5n+1) .post-name
{
    font-size: 35px;
    font-size: 3.5rem;

    margin-top: 20px;
}

.ranking-items-sp li:nth-child(5n+1) .info
{
    font-size: 18px;
    font-size: 1.8rem;

    margin-top: 20px;
}

.ranking-items-sp li .counter
{
    font-size: 26px;
    line-height: 50px;

    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 79px;
    height: 79px;
    padding-left: 10px;

    color: #fff;
    background: url('../img/ico-ranking.png');
    background-size: 100% 100%;
}

.ranking-items-sp li .post-name
{
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;

    margin-top: 20px;

    color: #000;
}

.ranking-items-sp li .post-datetime
{
    font-size: 18px;
    font-size: 1.8rem;

    display: inline-block;

    width: 100%;

    text-align: right;

    color: #828282;
}

.ranking-items-sp.style02 li:nth-child(5n+1)
{
    width: 50%;
}

.ranking-items-sp.style02 li:nth-child(5n+1) .post-name
{
    font-size: 28px;
    font-size: 2.8rem;
}

.list-post-sp
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    width: 100%;

    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.list-post-sp li
{
    position: relative;

    width: 50%;
}

.list-post-sp li .ttl
{
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;

    margin-bottom: 3px;
    padding-left: 20px;

    color: #000;
}

.list-post-sp li .ttl span
{
    color: #e6156c;
}

.list-post-sp li .detail
{
    display: inline-block;

    width: 100%;
    padding: 20px;

    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.list-post-sp li .detail .img
{
    width: 100%;
}

.list-post-sp li .detail .post-name
{
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;

    margin-top: 20px;

    color: #000;
}

.list-post-sp li .detail .post-datetime
{
    font-size: 18px;
    font-size: 1.8rem;

    margin-top: 6px;

    color: #828282;
}

.list-post-sp li .btn-view-list
{
    display: block;

    box-sizing: border-box;
    max-width: 300px;
    margin: 10px auto 30px;

    text-align: center;
}

.list-post-sp li .btn-view-list a
{
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;

    position: relative;

    display: inline-block;

    width: 100%;
    padding: 12px 5px;

    color: #e6156c;
    border: 1px solid #e6156c;
    border-radius: 4px;
}

.list-post-sp li .btn-view-list a:after
{
    font-family: 'fontawesome';

    position: absolute;
    top: 40%;
    right: 60px;

    display: block;

    width: 12px;
    height: 17px;

    content: '\f105';
    transform: translateY(-50%);
}

.list-post-sp li:nth-child(2n) .detail
{
    border-right: none;
}

.ad-img
{
    display: block;

    max-width: 630px;
    margin: 0 auto 40px;
}

.ad-img .img
{
    float: left;

    width: 47.5%;
    margin-right: 5%;
}

.ad-img .img img
{
    width: 100%;
}

.ad-img .img:nth-child(2n)
{
    margin-right: 0;
}

#main-footer-sp .container,
#main-footer-sp #contents
{
    width: 100%;
    max-width: 630px;
    padding: 0 20px;
}

#main-footer-sp .top-row
{
    padding: 18px 0;

    background-color: #f1f1f1;
}

#main-footer-sp .top-row .heading
{
    display: inline-block;

    width: 100%;

    text-align: center;
}

#main-footer-sp .top-row .heading p
{
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: bold;

    color: #000;
}

#main-footer-sp .top-row ul
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-justify-content: center;
       -moz-justify-content: center;
        -ms-justify-content: center;
            justify-content: center;
    -ms-flex-pack: center;
    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

#main-footer-sp .top-row ul li
{
    position: relative;

    display: inline-block;

    margin-top: 3px;
    margin-right: 25px;
}

#main-footer-sp .top-row ul li:last-of-type
{
    margin-right: 0;
}

#main-footer-sp .top-row ul li:after
{
    position: absolute;
    top: 50%;
    right: -10px;

    display: inline-block;

    width: 1px;
    height: 16px;

    content: '';
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);

    background-color: #6b6b6b;
}

#main-footer-sp .top-row ul li:last-of-type:after
{
    display: none;
}

#main-footer-sp .top-row ul li a
{
    font-size: 15px;
    font-size: 1.5rem;

    display: block;

    text-align: center;

    color: #000;
}

#main-footer-sp .bottom-row
{
    padding: 6px 0;

    background-color: #464646;
}

#main-footer-sp .bottom-row .copyright p
{
    font-size: 13px;
    font-size: 1.3rem;

    text-align: center;

    color: white;
}

#main-footer-sp .middle-row
{
    padding: 10px 0;
}

#main-footer-sp .middle-row .container,
#main-footer-sp .middle-row #contents
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-justify-content: center;
       -moz-justify-content: center;
        -ms-justify-content: center;
            justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

#main-footer-sp .middle-row .container .sitemap,
#main-footer-sp .middle-row #contents .sitemap
{
    display: -webkit-box;
    display:    -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;

    -webkit-align-items: center;
       -moz-align-items: center;
        -ms-align-items: center;
            align-items: center;
}

#main-footer-sp .middle-row .container .sitemap li,
#main-footer-sp .middle-row #contents .sitemap li
{
    position: relative;

    margin-right: 18px;
}

#main-footer-sp .middle-row .container .sitemap li:last-of-type,
#main-footer-sp .middle-row #contents .sitemap li:last-of-type
{
    margin-right: 0;
}

#main-footer-sp .middle-row .container .sitemap li:after,
#main-footer-sp .middle-row #contents .sitemap li:after
{
    position: absolute;
    top: 50%;
    right: -10px;

    display: inline-block;

    width: 1px;
    height: 16px;

    content: '';
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);

    background-color: #6b6b6b;
}

#main-footer-sp .middle-row .container .sitemap li:last-of-type:after,
#main-footer-sp .middle-row #contents .sitemap li:last-of-type:after
{
    display: none;
}

#main-footer-sp .middle-row .container .sitemap li a,
#main-footer-sp .middle-row #contents .sitemap li a
{
    font-size: 15px;
    font-size: 1.5rem;

    display: block;

    text-align: center;

    color: #000;
}

.search-box-sp
{
    position: relative;
    top: -3px;

    display: none;

    width: 100%;
    margin: 0 auto;
    padding: 5px 0 20px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    background: white;
    box-shadow: 1px 7px 8px 0 rgba(0, 0, 0, .23);

    -webkit-backface-visibility: hidden;
}

.search-box-sp form
{
    position: relative;

    max-width: 80%;
    margin: auto;
}

.search-box-sp input[type='text']
{
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 50px;

    width: 100%;
    height: 50px;
    padding: 0 40px 0 20px;

    border: 1px solid #bbb;
    border-radius: 50px;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.search-box-sp input[type='text']::placeholder
{
    color: #949494;
}

.search-box-sp input[type='text']:focus
{
    outline: none;
}

.search-box-sp button[type='submit']
{
    font-size: 25px;
    font-size: 2.5rem;

    position: absolute;
    top: 50%;
    top: 45%;
    right: 10px;

    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);

    color: #bbb;
    border: none;
    background: none;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.search-box-sp button[type='submit']:focus
{
    outline: none;
}

.search-box-sp button[type='submit']:hover
{
    cursor: pointer;
}

.activated
{
    display: block !important;
}

.detail-pc
{
    margin-bottom: 60px;
    padding: 0 20px;

    border-bottom: 1px solid #ccc;
}

.detail-pc h1
{
    font-size: 35px;
    font-size: 3.5rem;
    font-weight: bold;

    margin-bottom: 15px;
}

.detail-pc span.txt-follow
{
    font-size: 18px;
    font-size: 1.8rem;

    display: block;

    margin-bottom: 20px;
}

.detail-pc img
{
    width: 100%;
}

.detail-pc .arrow-link
{
    font-size: 18px;
    font-size: 1.8rem;

    position: relative;

    display: inline-block;

    margin-bottom: 15px;
    padding: 4px 30px 4px 19px;

    border: 1px solid #ccc;
    background: #f4f4f4;
}

.detail-pc .arrow-link i
{
    position: absolute;
    top: 8px;
    right: 5px;
}

.detail-pc p
{
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.5;

    margin-bottom: 50px;

    color: #333;
}

.detail-pc .section
{
    margin: 80px 0 70px;
}

.txt-follow
{
    color: #828282;
}

.tags-detail .ttl
{
    font-size: 28px;
    font-size: 2.8rem;

    float: left;

    width: 150px;
}

.tags-detail ul
{
    float: left;

    width: calc(100% - 180px);
    padding-left: 20px;
}

.tags-detail ul li a
{
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: normal;
    line-height: 1;

    height: auto;
    padding: 5px 15px;
}

.shade-post
{
    text-align: center;
}

.shade-post ul
{
    margin: 0 -12px 50px;
}

.shade-post ul li
{
    float: left;

    width: 33.333%;
    padding: 0 12px;
}

.shade-post ul li a
{
    font-size: 38px;
    font-size: 3.8rem;
    line-height: 1;

    display: block;

    padding: 10px 0;

    color: white;
    border-radius: 4px;
}

.shade-post ul li a.twitter
{
    background: #55acee;
}

.shade-post ul li a.facebook
{
    padding: 12px 0 8px;

    background: #315096;
}

.shade-post ul li a.line
{
    background: #1dcd00;
}

.shade-post ul li a.line img
{
    width: 34px;
    margin-top: 2px;

    vertical-align: top;
}

.list-link-sp
{
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;

    padding-top: 20px;

    border-top: 7px solid #464646;
}

.list-link-sp h2
{
    font-weight: bold;
}

.list-link-sp h2 .txt-follow
{
    font-size: 30px !important;

    display: inline-block !important;

    color: #e6156c;
}

.list-link-sp ul li a
{
    display: block;

    padding: 20px 0;

    border-top: 1px solid #ccc;
}

.list-link-sp ul li a small
{
    font-size: 20px;
    font-size: 2rem;

    display: inline-block;

    margin-left: 5px;
}

.posts-ranking.posts-ranking-fix
{
    border-top: 7px solid #464646;
    border-right: none;
    border-left: none;
}

.posts-ranking.posts-ranking-fix .ttl
{
    font-size: 33px;
    font-size: 3.3rem;

    padding: 16px !important;
}

.posts-ranking.posts-ranking-fix .ttl img
{
    margin-right: 15px;
}

.load-more
{
    margin: 20px 0 60px;
    padding: 0 20px;
}

.load-more a
{
    font-size: 33px;
    font-size: 3.3rem;
    font-weight: bold;

    position: relative;

    display: block;

    padding: 22px 0;

    text-align: center;

    color: #e6156c;
    border: 1px solid #e6156c;
    border-radius: 4px;
}

.load-more a i
{
    position: absolute;
    top: 50%;
    right: 25px;

    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.list-item-sp li
{
    display: none;
}

#rwdMenuWrap
{
    z-index: 1;
}

.title-list
{
    font-size: 38px;
    font-size: 3.8rem;
    font-weight: bold;

    padding: 23px 20px;

    color: white;
    background: #e6156c;
}

.index_sp_list .title-list
{
    margin-top: -20px;
}

.index_sp_list .posts-list
{
    border-right: none;
    border-left: none;
}

.index_sp_list .posts-list.pickup-posts .img
{
    padding: 5px;
}

.index_sp_list .posts-list.pickup-posts .detail
{
    padding: 0 5px;
}

.main-slider-sp .slider .slider-show.big
{
    max-width: 650px;
}

.main-slider-sp .slider .slider-show .btn
{
    top: 45%;

    border: none;
}

.main-slider-sp .slider .slider-show .btn.btn-next
{
    right: -40px;
}

.main-slider-sp .slider .slider-show .btn.btn-next:before
{
    font-size: 32px;
    font-size: 3.2rem;
}

.main-slider-sp .slider .slider-show .btn.btn-prev
{
    left: -40px;
}

.main-slider-sp .slider .slider-show .btn.btn-prev:before
{
    font-size: 32px;
    font-size: 3.2rem;
}

.main-slider-sp .slider .slider-show .txt
{
    font-size: 18px !important;

    margin-top: 5px;
    padding-bottom: 0;
}

.main-slider-sp .slider-thumnail
{
    padding: 0 20px;
}

.main-slider-sp .slider-thumnail li
{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;

    border: none;
}

.main-slider-sp .slider-thumnail li:nth-child(5n)
{
    margin-right: 2%;
}

.main-slider-sp .slider-thumnail li:nth-child(3n)
{
    margin-right: 0;
}

.main-slider-sp .slider-thumnail li.active
{
    border: 3px solid #e6156c;
}

.main-slider-sp .slider-thumnail li a img
{
    width: 100%;
}

.main-slider-sp .txt-list-thumnail
{
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;

    margin: 8px 0 20px;
    padding: 15px 20px;

    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.kasou-sp
{
    padding: 0 20px;
}

.kasou-sp .txt-follow
{
    font-size: 18px;
    font-size: 1.8rem;

    margin: 8px 0 20px;
}

.kasou-sp .shade-post ul
{
    margin-bottom: 80px;
}

#contents-sp .kasou-sp .post-group .ttl
{
    font-size: 26px;
    font-size: 2.6rem;

    margin-bottom: 15px;
}

#contents-sp .kasou-sp .post-group .posts-list-col3
{
    margin-bottom: 0;

    border: none;
}

#contents-sp .kasou-sp .post-group .posts-list-col3 li
{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;

    border: none;
}

#contents-sp .kasou-sp .post-group .posts-list-col3 li:nth-child(3n)
{
    margin-right: 0;
}

#contents-sp .kasou-sp .post-group .posts-list-col3 li a
{
    display: block;

    padding: 0;
}

#contents-sp .kasou-sp .post-group .posts-list-col3 li a img
{
    width: 100%;
}

.btn-move.btn-block-sp
{
    max-width: 100%;
    margin-top: 0;

    background: none;
}

.btn-move.btn-block-sp a
{
    font-size: 33px;
    font-size: 3.3rem;

    padding: 25px 20px;

    background: #f6f6f6;
}

/* ====================================================
SP/Single Pager対応
==================================================== */
.detail-pc p.nexttitle{
	width:512px;
	margin:auto;
}
.detail-pc p.nexttitle a{
	display:inline-block;
	padding:10px 20px;
	font-weight:bold;
	width:100%;
	word-break: break-all;
	background-color:#E6156C;
	color:#FFFFFF;
	text-align:center;
	text-decoration:underline;
}
.detail-pc p.nexttitle a:hover{
	text-decoration:none;
}

.detail-pc p.nexttitle a span.nextanch{
	display:inline-block;
	font-weight:bold;
	margin-right:20px;
}

.detail-pc .link-list{
	text-align:center;
	margin-top: 45px;
}
.detail-pc .link-list p{
	display:inline-block;
}
.detail-pc .link-list p.prevLink,
.detail-pc .link-list p.nextLink{
	border:1px solid #e5e5e5;
	width:120px;
	padding:8px 18px;
	text-align:center;
	font-size:0.8em;
}
.detail-pc .link-list p.prevLink{
	margin-right:20px;
}
.detail-pc .link-list p.nextLink{
	margin-left:20px;
}
.detail-pc .link-list p.pagerLink .post-page-numbers span{
	display:inline-block;
	padding:8px 18px;
	margin:0 4px;
	border:1px solid #e5e5e5;
	font-size:0.8em;
	background-color:#FFF;
	color:#333;
}
.detail-pc .link-list p.pagerLink .post-page-numbers.current span{
	background-color:#e6156c;
	color:#FFF;
}

.post-group-new .link-list .pagination{
	margin-bottom:40px;
}
.post-group-new .link-list .pagination li a,
.post-group-new .link-list .pagination li span{
	display:inline-block;
	padding:8px 18px;
	margin:0 4px;
	border:1px solid #e5e5e5;
	font-size:2.6rem;
    line-height: 1.6;
}
.post-group-new .link-list .pagination li span{
	color:#FFF;
	background-color:#e6156c;
}
.post-group-new .link-list .pagination li a{
	width:52px;
	height:59px;
	color:#333333;
}
.post-group-new .link-list .pagination li a:hover{
}

.detail-pc .link-list p.prevLink:hover,
.detail-pc .link-list p.nextLink:hover,
.detail-pc .link-list p.pagerLink a span:hover{
	background-color:#e6156c;
	color:#FFF;
}

.post-group-new .link-list .pagination li a.next,
.post-group-new .link-list .pagination li a.prev{
	width:118px;
}

.detail-pc div.phptotitle{
	margin-top:20px;
	text-align:center;
}
.detail-pc div.phptotitle a{
	max-width:420px;
	padding:10px 20px;
	font-weight:bold;
	font-size:1em;
	word-break: break-all;
	background-color:#E6156C;
	color:#FFFFFF;
	text-align:center;
	text-decoration:underline;
}
.detail-pc div.phptotitle a:hover{
	text-decoration:none;
}

.detail-pc .cont_img img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
	margin:auto;
}
.detail-pc .icon_camera{
	position:absolute;
	right:0;
	top:0;
}

.detail-pc .icon_camera a{
	display:block;
	float:right;
	width:28px;
	height:28px;
	opacity:0.75;
}
.detail-pc .icon_camera a:hover{
	opacity:0.5;
}
.detail-pc .caption-box{
	position:relative;
	margin:auto;
	width:600px;
	min-height:28px;
	margin-top:12px;
	margin-bottom:15px;
}
.detail-pc .caption-box .txt-follow{
	margin:0;
	padding-right:35px;
	text-align:center;
	font-size:100%;
}

ul.ban-area{
	margin-bottom:20px;
}
ul.ban-area li{
	padding-bottom:6px;
}
ul.ban-area li img{
	max-width:100%;
}

/* 記事関連画像 */
.post-detail .artist-relation-images_area
{
    margin: 0 0 10px;
}
.post-detail .artist-relation-images_area ul
{
    display: inline-block;
    width: 100%;
}
.post-detail .artist-relation-images_area ul li
{
    float: left;
    box-sizing: border-box;
    width: 156px;
    height: 106px;
    margin-right: 1%;
    margin-bottom: 1%;
    margin-left: 0;
    border: 3px solid transparent;
    list-style-type: none;
}
.post-detail .artist-relation-images_area ul li:nth-child(5n)
{
    margin-right: 0;
}
.post-detail .artist-relation-images_area ul li:hover
{
    border: 3px solid #e6156c;
}
.post-detail .artist-relation-images_area ul li a
{
    display: inline-block;
    width: 100%;
}
.post-detail .artist-relation-images_area ul li a:hover
{
    opacity: .5;
}
.post-detail .artist-relation-images_area ul img {
	display: block;
	margin:0 auto;
    height: 100px;
    width: auto;
    max-width:150px;
	object-fit:contain;
}

/* 芸能人DB情報 */
.post-group .artist_area_top
{
    padding: 24px 0;
}
.post-group .artist_area_top .ph
{
    float: left;
    width: 20%;
}
.post-group .artist_area_top .ph img
{
    max-width: 100%;
    height: auto;
}
.post-group .artist_area_top .comment
{
    float: right;
    width: 78%;
}
/* 続きを見る */
.artist_area_top .grad-wrap {
    position: relative;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 1em 0;
}
.artist_area_top .grad-wrap + .grad-wrap {
  margin-top: 40px;
}
.artist_area_top .grad-trigger {
    z-index: 2;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 148px;
    margin: auto;
    padding: .5em 0;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #e6156c;
    color: #e6156c;
    font-size: 1.3rem;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}
.artist_area_top .grad-trigger:hover {
    background: #e6156c;
    color: #fff;
}

.artist_area_top .grad-item {
  position: relative;
  overflow: hidden;
}
.artist_area_top .grad-item.is-hide {
  height: 40px; /*隠した後の高さ*/
}
.artist_area_top .grad-item p + p {
  margin-top: 1em;
}
.artist_area_top .grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}
.artist_area_top .grad-trigger.is-show + .grad-item::before {
  display: none;
}


.post-group .profile table
{
    width: 100%;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    font-size: 15px;
    font-size: 1.5rem;
}
.post-group .profile table th,
.post-group .profile table td {
    padding: 1em;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
    font-size: 1.5rem;
}
.post-group .profile table dd
{
    margin: 0 0 1em;
}
.post-group .profile table dd:last-child
{
    margin:0;
}

.post-group .profile table th
{
    width: 20%;
    background: #f1f1f1;
}
.post-group .profile a
{
    font-size: 16px;
    font-size: 1.6rem;
    color: #00f;
}
.post-group .profile a:hover
{
    text-decoration: underline;
}
.post-group .artist-images_area
{
    padding: 30px 0;
}
.post-group .artist-images_area ul
{
    display: inline-block;
    width: 100%;
}

.post-group .artist-images_area ul li
{
    float: left;
    box-sizing: border-box;
    width: 19.2%;
    margin-right: 1%;
    margin-bottom: 1%;
    margin-left: 0;
    border: 3px solid transparent;
    list-style-type: none;
}
.post-group .artist-images_area ul li:nth-child(5n)
{
    margin-right: 0;
}
.post-group .artist-images_area ul li:hover
{
    border: 3px solid #e6156c;
}
.post-group .artist-images_area ul li a
{
    display: inline-block;
    width: 100%;
}
.post-group .artist-images_area ul li a:hover
{
    opacity: .5;
}
.post-group .artist-images_area ul img {
    max-width: 100%;
    height: auto;
}


.artist-relation_area
{
    padding: 0 0 28px;
}
.artist-relation_area .ttl
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
}
.artist-relation_area .ttl::first-letter{
    color: #e6156c;
}
.artist-relation_area ul
{
    display: flex;
    flex-wrap: wrap;
}
.artist-relation_area ul li
{
    float: left;
    box-sizing: border-box;
    width: 19.2%;
    margin-right: 1%;
    margin-bottom: 1%;
    margin-left: 0;
    border: 3px solid transparent;
    list-style-type: none;
}
.artist-relation_area ul li:nth-child(5n)
{
    margin-right: 0;
}
.artist-relation_area ul li:hover
{
    border: 3px solid #e6156c;
}
.artist-relation_area ul li a
{
    display: inline-block;
    width: 100%;
}
.artist-relation_area ul li a span{
    display: block;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
    padding-top: 5px;
}
.artist-relation_area ul li a:hover img
{
    opacity: .5;
}
.artist-relation_area ul li a:hover span
{
    color:#e6156c;
}
.artist-relation_area ul img {
    max-width: 100%;
    height: auto;
}

.artist-sns_area
{
    border: 1px solid #e5e5e5;
    margin: 0 0 40px;
}

.artist-sns_area h3
{
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    padding: 7px;
    text-align: left;
    color: #000;
    border-top: 3px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.artist-sns_area h3.ttl::first-letter{
    color: #e6156c;
}
.artist-sns_area ul
{
    height: 300px;
    overflow-y: auto;
}
.artist-sns_area li
{  
    font-size: 15px;
    font-size: 1.5rem;
    padding: 15px;
    border-bottom: 1px dashed #e5e5e5;
}
.artist-sns_area li a
{
    color: #e6156c;
}
.hotword h3.ttl::first-letter{
    color: #e6156c;
}
.artist_area_works div{
	margin-bottom:30px;
}
.artist_area_works h3.ttl{
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}
.artist_area_works h3.ttl::first-letter{
    color: #e6156c;
}
.artist_area_works ul{
}
.artist_area_works ul li {
	font-size:1.5rem;
	list-style-type: disc;
	list-style-position: outside;
	margin-left:25px;
}
.artist_area_works ul li a{
    color: #e6156c;
	font-weight:bold;
}
.artist_area_works ul li a:hover{
	text-decoration:underline;
}
.artist_area_works span{
	font-size:1.2rem;
	color:#8B8B8B;
	font-weight:normal;
}
.artist_area_works div > span{
	display:block;
	margin-top:10px;
}

.author-desc{
	text-align:right;
}
.author-desc a{
	font-size:1.3rem;
	font-weight:bold;
	color:#E6156C;
	text-decoration:none;
}
.author-desc a:hover{
	text-decoration:underline;
}
.author-box{
	margin-top:26px;
	margin-left:10px;
}
.author-box .author-img{
	float:left;
	margin-right:40px;
}
.author-box .author-img img{
	width:160px;
	height:160px;
	border-radius:50%;
	border: 2px solid #e6156c;
}
.author-info > h1,
.author-info > div {
	margin-bottom:6px;
}
.author-info h1{
	font-size:20px;
}
.author-info .author-alt{
	font-size:12px;
	color:#818181;
}
.author-info .author-title{
	font-size:16px;
	font-weight:bold;
}
.author-box .social-btn-group{
	margin-top:16px;
}
.author-box .social-btn-group .facebook,
.author-box .social-btn-group .twitter{
	line-height: 45px;
	width: 45px;
	height: 45px;
}
.author-memo{
	margin:20px 0 0px 10px;
	font-size:15px;
	color:#000;
}
.author-memo a{
	color:#e6156c;
	text-decoration:none;
}
.author-memo a:hover{
	text-decoration:underline;
}

/*# sourceMappingURL=maps/style.css.map */
