@charset "UTF-8";
/*@import url(https://fonts.googleapis.com/css?family=Open+Sans);*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@300&display=swap');*/

/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body,
button {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: 300;
}
body.custom-background{
    background-color: #fdfdfd !important;
    /*background-color: #000000 !important;*/}
.contentTop {
    /*margin-top: 4em !important;*/
}

.disp-hidden{
    display: none !important;
}
/* コントロールオブジェクト用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*ボタン用*/
button{
    border: none;
    background: transparent;
}
button:hover,
a img:hover{
    opacity: 0.7;
    cursor: pointer;
}
button:active,
a img:active{
    position: relative;
    top: 2px;
}
button img,
a img{
    width: 64px;
}
button .imgSmall,
a .imgSmall{
    width: 40px !important;
}

.customBtn{
    background: #7a7a7d;
    color: #fafafa;
    border: none;
    position: relative;
    font-size: 100%;
    font-weight: 400;
    padding: 5px 20px;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
    border-radius: 10px;
}
.customBtn:not(:disabled):hover{
    background: #fafafa;
    color: #4f4b55;
}
.customBtn:before,.customBtn:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 1px;
    width: 0;
    background: #8a8492;
    transition: 400ms ease all;
}
.customBtn:after{
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}
.customBtn:not(:disabled):hover:before,.customBtn:not(:disabled):hover:after{
    width:100%;
    transition:800ms ease all;
}
.customBtn:disabled{
    box-shadow: inset 0 0 0 2px #f0f3f8;
    border-color: #b4b4b4;
    background: #b4b4b4;
    cursor: default;
}
.customBtn2{
    background: #a7a9ad;
    /*background: #b8b9bd;*/
    color: #fafafa;
    font-size: 65%;
    font-weight: 600;
    /*padding: 5px 20px;*/
    transition: 800ms ease all;
    border-radius: 8px;
    border: 1px solid #a7a9ad;
}
/*.customBtn2:disabled{*/
/*    box-shadow: inset 0 0 0 2px #f0f3f8;*/
/*    border-color: #b4b4b4;*/
/*    background: #b4b4b4;*/
/*    cursor: default;*/
/*}*/
.customBtn2-active{
    background: #fafafa;
    color: #4f4b55;
    border: 1px solid #cccccc;
}


/*チェックボックス用*/
input[type="checkbox"] { display: none; }
input[type="checkbox"] + span {
    display: block;
    position: relative;
    /*padding-left: 35px;*/
    /*margin-bottom: 20px;*/
    font: 14px/20px 'Open Sans', Arial, sans-serif;
    color: #4f4b55;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/*input[type="checkbox"] + span:last-child { margin-bottom: 0; }*/
input[type="checkbox"] + span:before {
    content: '';
    display: block;
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #4f4b55;
    left: 0;
    top: 0;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + span:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    /*border-bottom-color:#2ecc71;*/
    /*border-right-color:#2ecc71;*/
    border-bottom-color:#4f4b55;
    border-right-color:#4f4b55;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*ラジオボタン用*/
.radio {
    /*margin: 0.5rem 0.5rem 0 0.5rem;*/
}
.radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.radio input[type="radio"] + .radio-label:before {
    content: '';
    background: #f0f3f8;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1em;
    height: 1em;
    position: relative;
    top: -0.1em;
    margin-right: 0.5em;
    margin-left: 1em;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
}
.radio input[type="radio"] + .radio-label:before:nth-child(1) {
    margin-left: 0;
}
.radio input[type="radio"]:checked + .radio-label:before {
    background-color: #4f4b55;
    box-shadow: inset 0 0 0 2px #f0f3f8;
}
.radio input[type="radio"]:focus + .radio-label:before {
    outline: none;
    border-color: #4f4b55;
}
.radio input[type="radio"]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 2px #f0f3f8;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.radio input[type="radio"] + .radio-label:empty:before {
    margin-right: 0;
}
/*ラジオボタン用（ボタン風）*/
/*fieldset {*/
/*    border: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    text-align: center;*/
/*}*/
/*h1 {*/
/*    margin: 0;*/
/*    line-height: 1.2;*/
/*}*/
/*p {*/
/*    margin: 0 0 1.6rem;*/
/*    padding-bottom: 0.2rem;*/
/*    border-bottom: 1px solid #ddd;*/
/*}*/

.radio-inline__input {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}
.radio-inline__label {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-right: 18px;
    border-radius: 3px;
    transition: all .2s;
}
.radio-inline__input:checked + .radio-inline__label {
    background: #B54A4A;
    color: #fff;
    text-shadow: 0 0 1px rgba(0,0,0,.7);
}
.radio-inline__input:focus + .radio-inline__label {
    outline-color: #4D90FE;
    outline-offset: -2px;
    outline-style: auto;
    outline-width: 5px;
}

/*リンクボタン用*/
a{
    text-decoration-line: none;
}

/* ハンバーガメニュー用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.menu-trigger {
    /*position: relative;*/
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    right: 20px;
}
.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #4f4b55;
    border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
    top: 4px;
}
.menu-trigger span:nth-of-type(2) {
    /*top: 20px;*/
}
.menu-trigger span:nth-of-type(3) {
    bottom: 3px;
}
.menu-trigger.active span:nth-of-type(1) {
    width: 45%;
    -webkit-transform: translate3d(1.7px, 5.5px, 0) rotate(45deg);
    transform: translate3d(1.7px, 5.5px, 0) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(2) {
    -webkit-transform: translate3d(-1px, 0, 0) rotate(-45deg);
    transform: translate3d(-1px, 0, 0) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(3) {
    width: 45%;
    -webkit-transform: translate3d(14.3px, -6.1px, 0) rotate(45deg);
    transform: translate3d(14.3px, -6.1px, 0) rotate(45deg);
}
@media only screen and (min-width: 768px) {
    .menu-trigger {
        display: none !important;
    }
}

/* ヘッダー表示非表示用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header{
    /*background: rgba(255,255,255,0.8);*/
    /*padding: 20px;*/
    position: fixed;
    top: 0;
    /*top: 32px;*/
    transition: .5s;
    width: 100%;
    z-index: 900;
}
.header.hide{
    transform: translateY(-100%);
}

/* ナビゲーションの閲覧中の文字色変更
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-template-page-subscribe-list .nav li:nth-child(1) a {
    color: #4f4b55;
}
.page-template-page-userpost-single .nav li:nth-child(2) a {
    color: #4f4b55;
}
.page-template-page-userpost-list .nav li:nth-child(3) a {
    color: #4f4b55;
}

/* ローディング用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#overlay{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height:100%;
    display: none;
    /*background: rgba(0,0,0,0.6);*/
    background: rgba(0,0,0,0);
}
/*.cv-spinner {*/
/*    height: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/
/*.spinner {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    border: 4px #ddd solid;*/
/*    border-top: 4px #999 solid;*/
/*    border-radius: 50%;*/
/*    animation: sp-anime 0.8s infinite linear;*/
/*}*/
@keyframes sp-anime {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}
.is-hide{
    display:none;
}

/* プログレスバー用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.progress {
    position: fixed;
    display: inline-block;
    top: 1px;
    z-index: 1000;
    width: 100%;
    height: 1.5px;
    border: 0;
    /*background-color: #acece6;*/
    background-color: transparent;
    border-radius: 2px;
    background-clip: padding-box;
    /*margin: 0.5rem 0 1rem 0;*/
    overflow: hidden; }
.progress .determinate {
    position: absolute;
    /*background-color: inherit;*/
    top: 0;
    bottom: 0;
    background-color: #4f4b55;
    transition: width .3s linear; }
.progress .indeterminate {
    background-color: #4f4b55; }
.progress .indeterminate:before {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
.progress .indeterminate:after {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s; }
@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%; }
    60% {
        left: 100%;
        right: -90%; }
    100% {
        left: 100%;
        right: -90%; } }
@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%; }
    60% {
        left: 100%;
        right: -90%; }
    100% {
        left: 100%;
        right: -90%; } }
@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%; }
    60% {
        left: 107%;
        right: -8%; }
    100% {
        left: 107%;
        right: -8%; } }
@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%; }
    60% {
        left: 107%;
        right: -8%; }
    100% {
        left: 107%;
        right: -8%; } }

/* ポスト一覧共通用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.postList p,
.postList img,
.postList video,
.postList audio,
.postList iframe,
.postList textarea{
    width: 100%;
}
/*.postList textarea{*/
/*    width: 98%;*/
/*    margin-left: 7px;*/
/*}*/
.postList .attcCntnt{
    margin: -9px 0 6px;
}
.postList .video-js{
    width: 100%;
    margin-bottom: 7px;
}

/* 埋め込みURL用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.instagram-media{
    min-width: initial !important;
    max-width: initial !important;
}
.twitter-tweet{
    min-width: initial !important;
}

/* video.js用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.video-js video:focus,
.video-js video:active{
    outline: 0;
}

/* 画面共通用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*placeholder削除用*/
input:focus::-webkit-input-placeholder {
    color: transparent;
}
input:focus::-moz-placeholder {
    color: transparent;
}
input:focus::-ms-input-placeholder {
    color: transparent;
}
input:focus::placeholder {
    color: transparent;
}
/*コンテンツのフッター*/
.contentFooter{
    /*border-bottom: 1px solid #ccc;*/
    margin: 0 0 22px 0;
}
form{
    margin-top: inherit;
}

/*項目のhelpテキスト*/
.helpTxt{
    display:none;
}



/* ホーム投稿画面
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#dispSearch{
    /*display: contents;*/
    /*top: -250px;*/
    /*height: 300px;*/
}
#dispSearch div{
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    /*height: 40px;*/
    /*border-radius: 2px;*/
    /*color: #fdfdfd;*/
    /*background-color: #4f4b55;*/
}
#dispSearch p{
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    /*margin: 0 0 5px 0;*/
    margin: 1px 0 1px 0;
    padding: 0;
}
#usrPstSearch{
    display: none;
    margin-bottom: -10px;
}
#txtSearch{
    /*height: 30px;*/
    font-size: 1em;
    border-radius: 30px;
    margin-top: 13px;
}
.btnSearch{
    padding: 0;
    margin-top: 13px;
}

/* ユーザ投稿画面
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pstStts{
    margin-top: 10px;
}
.lblPstStts{
    margin-left: 1em;
}
input[type="file"]{
    position: absolute;
    z-index: -9999;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    line-height: 0;
    outline: 0;
    border: 0;
    opacity: 0;
}
.selectFileLine {
    height: 1px;
    position: absolute;
    /*bottom: 0;*/
    margin-top: -10px;
    margin-left: 15px;
    width: 47px;
    background: #4f4b55;
}
.flPrvw,
.flPrvwImg,
.flPrvwVdo,
.flPrvwAdo,
.flPrvwCntnt,
.flPrvwUrl
{
    margin-bottom: 5px;
}
.btnFileDel{
    text-align: right;
    padding: 0;
}
.flThmbnl{
    background-color: #f0f3f8;
    border-radius: 3px;
    margin-top: -5px;
    margin-bottom: 11px;
}

.btnOnemb{
    text-align: right;
    /*padding-top: 8px;*/
}
.btnOnemb button:first-child,
.btnOnemb button:last-child{
    padding: 0;
}
@media (max-width: 767px) {
    .btnOnemb button{
        padding: 0;
    }
}
.previewOnemb{
    margin-bottom: 5px;
    margin-top: -4px;
}
@media (max-width: 767px) {
    .previewOnemb iframe{
        width: 100%;
    }
}
.postButton,
.postFile {
    text-align: center;
}

/* 画面共通用（モーダル共通）
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html.modalset {
    overflow: hidden;
}
.mdlSctn1_z{
    z-index: 300;
}
.mdlSctn2_z{
    z-index: 400;
}
.mdlSctn3_z{
    z-index: 500;
}
.mdlSctn4_z{
    z-index: 600;
}
.mdlSctn5_z{
    z-index: 700;
}

.mdlLyr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mdlLyr_mask {
    position: absolute;
    background: rgba(51, 51, 51, 0.7);
    width: 100%;
    height: 100%;
    margin-top: 3px;
}
#rctnLyr_mask,
#postRctnLyr_mask,
#rspnsLyr_mask,
#srchLyr_mask {
    background: rgba(51, 51, 51, 0);
}
.btnMdlLyrCncl{
    position: absolute;
    right: 11px;
}
.chatUserDlg .btnMdlLyrCncl,
.chtMsgImg_base .btnMdlLyrCncl,
.rule_base > .btnMdlLyrCncl,
.stripe_base > .btnMdlLyrCncl{
    top: 8px;
}
.mdlPostList_base .btnMdlLyrCncl{
    top: 0;
    right: 3px;
}
.mdlLyrScrl{
    overflow: auto;
    max-height: 85vh;
    -ms-overflow-style: none;
    background-color: #ffffff;
    border-radius: 14px;
}
@media screen and (max-width: 767px) {
    .mdlLyrScrl{
        max-height: 75vh;
    }
}
.mdlLyrScrl::-webkit-scrollbar {
    display: none;
}

/* 画面共通用（モーダル個別）
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.mdlLyrDtl_inner {
    /*display: none;*/
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 480px;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
    .mdlLyrDtl_inner {
        max-width: 365px;
    }
}

/* その他共通
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pageBackWrap{
    margin-bottom: 8px;
}
.pageBack{
    position: relative;
    top: 5px;
    width: 100%;
    text-align: left;
    margin: 5px;
}
.pageBack label{
    position: relative;
    margin: 5px;
    bottom: 3px;
    font-size: 85%;
}
.imgLarge{
    width: 80px !important;
}
.imgMid{
    width: 60px !important;
}
.imgSmall{
    width: 40px !important;
}
.imgSS{
    width: 28px !important;
}
.imgSS2{
    width: 16px !important;
}
.imgSS3{
    width: 14px !important;
}
.imgSS4{
    width: 24px !important;
}
.imgSS5{
    width: 20px !important;
}
.imgSS6{
    width: 38px !important;
}
.imgSS7{
    width: 32px !important;
}
.txtSmall{
    font-size: 85%;
}
.txtSS{
    font-size: 75%;
}
.txtWght500{
    font-weight: 500;
}
.txtWght600{
    font-weight: 600;
}
.txtcntr{
    text-align: center;
}
.txtrght{
    text-align: right;
}
.txtlft{
    text-align: left;
}
.vrtclmid{
    vertical-align: middle;
}
.dispNone{
    display: none;
}
.disp-hidden{
    display: none !important;
}
.txtClamp1{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.txtClamp2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.txtClamp3{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gridNowrap{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.width100{
    width: 100%;
}
.height0{
    height: 0;
}
.txtUL {
    text-decoration: underline;
}