/*
Theme Name: template
Theme URI:
Author: Universal Interactive
Author URI:
Version: 1.0
License: Universal Interactive
License URI: https://www.u-active.jp/
*/

@charset "utf-8";




/* --------------------------------------------------------------------------------
site common style
-------------------------------------------------------------------------------- */

.h4_tit02 {
    padding: 15px 30px;
    border-bottom: solid 2px #fff;
    margin-bottom: 0 !important;
}
.h4_tit02:after {
    display: none;
}
.h4_tit02 a {
    color: #3092de !important;
    text-decoration: none;

}
.h4_tit02 a:hover {
    text-decoration: underline;
}
.div_boxMinPost{
    background: #e5f9ff;
}
.div_boxMinPost .div_boxMinInner{
    padding: 20px 30px 24px;
}




/* --------------------------------------------------------------------------------
aside style
-------------------------------------------------------------------------------- */


/* aside global
---------------------------------------- */

#asideBoxWrap {
    margin-bottom: 30px;
    overflow: hidden;
}

.asideBox {
    margin-bottom: 40px;
}

.asideBox h3 {
    font-family: 'Mplus 1p',sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: #3092de;
    padding-bottom: 3px;
    text-align: left;
}

.asideCalender {}




/* aside list
---------------------------------------- */

.asideList {}

.asideList ul {
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #e0effd;
    padding: 20px;
}

.asideList li {
    background-color: #fff;
}
.asideList li+li {
    border-top: dashed 1px #d6b4ff;
}

.asideList li a {
    display: block;
    padding: 12px 18px;
    text-decoration: none!important;
    position: relative;
    color: #000;
    text-align: left;
    line-height: 1.4;
    color: #000;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
@-webkit-keyframes bgscroll{
    0%{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100%{
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
}
@keyframes bgscroll{
    0%{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100%{
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
}
.asideList li a:before {
    content: "";
    display: block;
    position: absolute;
    left: -8px;
    right: 0;
    top: 0;
    bottom: 0;
    background: #e0effd;
    z-index: -1;
    -webkit-animation: bgscroll 0.3s infinite linear;
    animation: bgscroll 0.3s infinite linear;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.asideList li a:hover {
    color: #3092de;
}
.asideList li a:hover:before {
    opacity: 1;
}




/* aside calender
------------------------------------------ */

.asideCalender {}

#wp-calendar {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    padding: 0!important;
    margin-bottom: 30px;
    background: url(../../common/img/bg_dot_lg.png);
    line-height: 1.6;
}


#wp-calendar caption {
    text-align: center;
    line-height: 100%;
    padding: 10px 0 10px 0;
    font-weight: bold;
    color: #3092de;
    background: #e0effd;
}


#wp-calendar thead th {
    font-weight: bold;
    border-bottom: solid 1px #3092de;
}
#wp-calendar tfoot {
    background: #e0effd;
}
#wp-calendar tfoot td {
    background: transparent;
    height: 35px;
    line-height: 35px;
    padding: 0;
}
#wp-calendar tfoot td a {
    color: ##3092de;
}


#wp-calendar th,
#wp-calendar td {
    padding: 8px 0;
    text-align: center;
    width: 14.29%;
    width: calc(100% / 7);
    color: #3092de;
}
#wp-calendar tr th:last-child,
#wp-calendar tr td:last-child {
    border-right: none;
}

#wp-calendar td a {
    font-weight: bold;
    color: #6dcbfb;
    text-decoration: none;
}

#wp-calendar td a:hover {
    font-weight: bold;
    text-decoration: underline;
}




/* --------------------------------------------------------------------------------
content style
-------------------------------------------------------------------------------- */


/* text
---------------------------------------- */

.div_text01 {
    clear: both;
    overflow: hidden;
}

.div_text01 p {
    overflow: hidden;
}

.blogTextTop{
    overflow: hidden;
}


/* btn
---------------------------------------- */

.btnDetail {
    text-align: right !important;
    margin-top: 0;
}

.btnDetail a {
    display: inline-block;
    line-height: 1;
    font-size: 120%;
    width: 200px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    background-color: #6dcbfb;
    color: #fff !important;
    position: relative;
    text-decoration: none;
}
.btnDetail a:after {
    content: "";
    display: block;
    position: absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border: solid 2px #fff;
    border-width: 2px 2px 0 0;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
@-webkit-keyframes hoverarrow{
    0%{
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    50%{
        -webkit-transform: rotate(45deg) translate(5px, -5px);
        transform: rotate(45deg) translate(5px, -5px);
    }
    100%{
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}
@keyframes hoverarrow{
    0%{
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    50%{
        -webkit-transform: rotate(45deg) translate(5px, -5px);
        transform: rotate(45deg) translate(5px, -5px);
    }
    100%{
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}
.btnDetail a:hover {
    text-decoration: none !important;
}
.btnDetail a:hover:after {
    -webkit-animation: hoverarrow 0.3s;
    animation: hoverarrow 0.3s;
}




/* content_comment
---------------------------------------- */

.content_comment_wrap {
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}




/* content_comment  */

.content_comment {
    line-height: 30px !important;
    border-radius: 15px;
    padding: 0 14px;
    background-color: #fff;
    color: #d6b4ff;
    margin-bottom: 5px;
}


.content_comment a {
    color: #d6b4ff !important;
}

.content_comment a:hover {
    text-decoration: underline!important;
}

.div_single01 .content_comment_wrap {
    overflow: hidden;
    margin-bottom: 25px;
}

.div_single01 .content_comment {
    background-color: #d6b4ff;
    color: #fff;
}
.div_single01 .content_comment a {
    color: #fff !important;
}





/* date  */

.date {
    line-height: 30px !important;
    border-radius: 15px;
    padding: 0px 14px;
    background-color: #fff;
    margin-right: 10px;
    color: #3092de;
    margin-bottom: 5px;
}

.div_single01 .date {
    background-color: #3092de;
    color: #fff;
}



/* img
---------------------------------------- */

.thumbnailWrap {
    display: block;
    float: left;
    margin: 5px 20px 20px 0;
    width: 230px;
}

.thumbnailWrap img {
    width: 100% !important;
    height: auto;
}

.div_single01 p img[class*="wp-image"] {
    width: 300px;
    height: auto;
    display: block;
}

.div_single01 .alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.div_single01 .aligncenter {
    float: none;
    margin: 0 auto 20px;
}

.div_single01 .alignnone ,
.div_single01 .alignleft {
    float: left;
    margin: 0 20px 20px 0;
}





/* pager index
------------------------------------------ */

#pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 15px;
}


#pager>* {
    display: block;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #6dcbfb;
    position: relative;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 110%;
}
#pager>*:nth-child(n+2) {
    margin-left: 50px;
}
#pager>.dots{
    width: 25px;
    background-color: transparent;
}
#pager>.prev,
#pager>.next{
    width: 100px;
}

#pager>.current {
    pointer-events: none;
}
#pager>a{
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}
#pager>a:hover,
#pager>.current{
    background-color: #ffff5d;
    color: #6dcbfb !important;
}



/* pager single
------------------------------------------ */

#pager.single>a{
    width: 200px;
}
