/*
Theme Name:     sfdb theme
Theme URI:
Description:    sfdb theme for BuddyApp
Author:         sfdb.jp
Author URI:     https://www.sfdb.jp
Template:       buddyapp
Tags:  
License: GNU General Public License
License URI: license.txt
*/

/*
* Please add your custom styles below
*/

/*
ここに独自の CSS を追加することができます。

詳しくは上のヘルプアイコンをクリックしてください。
*/

/* ページヘッダーアラート */
.top-urgent__content {
    font-size: 14px;
/*    color: #856404;*/
}

.top-urgent__link a {
    display: inline-block;
    margin-top: 8px;
/*    color: #004085;*/
    text-decoration: underline!important;
}

@keyframes slideInTop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-top {
  animation: slideInTop 0.8s ease-out forwards;
}

/* メンバーシングルでのアバター設定 */
#buddypress div#item-header img.avatar {
  max-width: 120px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  /*float: left;*/
  margin: 0 5px 0 0;
  -webkit-border-radius: 0%;
  -moz-border-radius: 0%;
  border-radius: 0%;
  border: 0px solid rgba(255, 255, 255, 0.1);
}
/* アクティビティフィードのアバター */
#buddypress ul#activity-stream.activity-list > li .activity-avatar img {
    margin-right: 0;
    width: 50px;
    height: 50px;
    object-fit: cover;
}
/* あしあとのアバター */
.buddypresswcamp img.avatar {
  float: left;
  margin: 0 10px 15px 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.buddypresswcamp img {
  height: 40px;
  margin: 1px;
  width: 40px;
  object-fit: cover;
}
/* ウィジェットのアバター */
.widget.buddypress div.item-avatar img {
    display: inline-block;
    height: 40px;
    margin: 1px;
    width: 40px;
    object-fit: cover;
}
.widget.buddypress ul.item-list img.avatar {
    height: 40px;
    margin-right: 10px;
    width: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    object-fit: cover;
}
/* 右上メニューのアバター */
.header-right a img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    object-fit: cover;
}
.second-menu-icon-wrapper {
    display: block;
    width: auto;
    padding: 0 12px;
    text-align: center;
    float: right;
}
/* 右メニュー内のアバター */
.user-avatar-wrapper img {
    border-radius: 50%;
    float: left;
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-right: 15px;
}
/* どうしていますかのアバター */
#whats-new-avatar img.avatar {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    max-width: 25px;
    width: 25px;
    height: 25px;
    object-fit: cover;
}
/* メッセージのアバター */
.bp-messages-wrap img.avatar {
    transition: none;
    max-width: 100%;
    max-height: 100%;
    width: 35px;
    height: 35px;
    object-fit: cover;
}
.bbpm-avatar img {
    display: block;
    border-radius: var(--bm-avatar-radius) !important;
    object-fit: cover;
}
/* イケるぜ未返信のアバター */
#buddypress ul.item-list li .item-wrap .item-cover .item-avatar img.avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* モバイルでの右メニュー矢印を右端に */
.scroll-container-wrapper .scroll-container {
    position: absolute;
    top: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    right: -20px;
}

/* 右メニューを常に展開 */
ul#menu-right-menu {
    display: block;
    margin-left: 8px;
}

/* 右メニュー内メンバー名 */
.user-avatar-wrapper .username {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    vertical-align: text-bottom;
    line-height: 20px;
}

/* 右メニュースクロール */
@media screen and (max-width: 767px) {
  .second-menu-section {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 52px); /* footer相当の高さを引く */
  }

  .header-icons {
    flex: 0 0 auto;
    display: none;
  }

  .header-menu {
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: none;
    margin-top: 10px;
  }
}

/* サブメニューを常に表示 */
.basic-menu>.has-submenu>.submenu>li.has-submenu>.submenu {
    position: static;
    margin: 5px 0 0;
    display: block !important;    
}
/* メンバー名横アロー非表示 */
.kleo-user_avatar-nav .menu-arrow {
    display: none !important;
}

/* メニューのアロー（+など）があるなら非表示 */
.basic-menu>.has-submenu>.submenu>li.has-submenu>.menu-arrow {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 7px;
    right: 0;
    margin: 0;
    font-size: 16px;
    text-align: center;
    padding: 0;
    float: none;
}

/* サブメニュー左装飾 */
.basic-menu>.has-submenu>.submenu>li.has-submenu>.submenu>li>a:before {
    content: '';
    display: block;
    position: absolute;
    width: 14px;
    height: 1px;
    border-radius: 4px;
    /* opacity: -1.5; */
    top: 13px;
    left: 15px;
}
/* ネストが深くても崩れないようにマージン調整 
#menu-right-menu .basic-menu .submenu li {
    margin-left: 1em; 
}*/

/* ログイン画面下部 */
.aboutus {
    max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}
.kleo-login-wrap .login-create-account-wrapper {
    background-color: rgba(255,255,255,.34);
    padding: 20px 30px;
    margin: 1px 0 0;
    margin-bottom: 0px;
}

/* ページタイトル周り */
#page-title h1 {
    padding: 0;
    margin: 0;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 20px;
}
/* タイトルの大文字化無効 */
#page-title h1, .entry-link, .entry-title h2 {
    text-transform: none;
}
/* ページタイトルのパディング */
#page-title {
	padding: 10px 0;
    clear: both;
}

/* アクティビティ投稿者名文字設定 */
#buddypress ul#activity-stream.activity-list > li .activity-content .activity-header p > a:first-child {
    font-family: 'Montserrat';
    color: #513750;
    font-weight: 700;
}

/* アクティビティ本文の文字サイズ */
#buddypress .activity-inner > p {
    word-wrap: break-word;
    font-size: 16px;
	margin-bottom: 1em;
}

/* アクティビティ本文の重複を避ける */
.activity-inner > p:first-of-type {
  display: none;
}

/* アクティビティでメディアをアップした記事の文字設定 */
.rtmedia-activity-container .rtmedia-activity-text {
    font-size: 16px;
	padding-bottom: 30px;
}

/* アクティビティコメントの文字設定 */
#buddypress #activity-stream p {
    margin: 2px 0 10px 0;
    font-size: 16px;
}

#rtmedia-uploader-form .rtm-plupload-list canvas,form .rtmedia-container .rtm-plupload-list canvas,#rtmedia_uploader_filelist canvas {
    display: block;
    width: 100px;
    height: auto;
}

/*rtmediaライトボックス下部コンテンツを消す */
.rtm-ltb-action-container {
    background-color: rgba(0,0,0,0.6);
    bottom: 0;
    color: #fff;
    line-height: 38px;
    opacity: 0;
    padding: 0 10px;
    position: absolute;
    width: 100%;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    display: none;
}
.mfp-content .rtm-single-meta {
    background: #fff;
    overflow: hidden;
    padding: 20px 20px 110px;
    position: relative;
    vertical-align: top;
    display: none;
}

/**/
.rtmedia-item-title {
    display: none;
}

/* アバターアップロード時のクロッピング */
#avatar-crop-pane {
    margin: 0 auto;
    overflow: hidden;
/*    border-radius: 50%; */
}

/* メンバーページのスペック */
.profile-spec {
	font-size: 11px;
	margin-bottom: 1em;
	line-height: 2em;
}

/* ユーザー名チェック */
.username_checker span.available {
	display: block;
	color: #1a9b00;
	background: #dffcd9;
	font-size: 12px;
}
.username_checker span.error{
	display:block;
	color: #fff;
	background: #e41717;
	font-size: 12px;
}

/* メンバーループからアップデートを非表示 */
#buddypress ul#admins-list.item-list li .item .update,
#buddypress ul#member-list.item-list li .item .update,
#buddypress ul#members-list.item-list li .item .update,
#buddypress ul#groups-list.item-list li .item .update {
    display: none;
    margin-bottom: 10px;
}

/* RSSリンクを消す */
#buddypress div.item-list-tabs .feed {
    display: none;
}
#buddypress div#subnav.item-list-tabs ul li {
/*    display: none; */
    margin-top: 0;
}

/* 投稿公開設定フォーム */
#buddypress #whats-new-form #whats-new-options .rtmedia-plupload-container select {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    /*display: none;*/
}

/* プロフィール編集フィールドの「公開範囲」を非表示 */
#buddypress .field-visibility-settings, #buddypress .field-visibility-settings-toggle, #buddypress .field-visibility-settings-notoggle {
    color: #888;
    display: none;
}

/* 「このサイトへの登録は簡単です。以下の欄に記入すれば、すぐにアカウントを設定できます。」を非表示 */
p.register-info {
  display: none;
}

/* ライブ通知の位置 */
#achtung-overlay {
    overflow: hidden;
    position: fixed;
    right: 20px;
    bottom:10px;
    width: 280px;
    z-index:9999;
}

/* ライブ通知の文字等 */
.achtung {
    display:none;
    margin-bottom: 0px;
	padding: 8px 8px;
	background-color: #ff2a5b;
	color: #fff;
	width: 250px;
	font-weight: normal;
	font-size: 90%;
	position:relative;
	overflow: hidden;
    -moz-box-shadow: #aaa 1px 1px 2px;
    -webkit-box-shadow: #aaa 1px 1px 2px;
    box-shadow: #aaa 1px 1px 2px;  
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
    /* Note that if using show/hide animations, IE will lose
       this setting */
    opacity: .85;
    filter:Alpha(Opacity=85);
}

/* ブログのコメント欄タイトル非表示 */
h3.comment-reply-title, h3.comments-title {
    font-size: 16px;
    display: none;
}

/* プロフィールページの項目非表示 */
.bp-widget .field_1,
.bp-widget .field_4,
.bp-widget .field_5,
.bp-widget .field_6,
.bp-widget .field_7,
.bp-widget .field_15,
.bp-widget .field_627,
.bp-widget .field_149,
.bp-widget .field_150,
.bp-widget .field_599,
.bp-widget .field_600,
.bp-widget .field_601,
.bp-widget.\%e3\%83\%97\%e3\%83\%ad\%e3\%83\%95\%e5\%86\%99\%e7\%9c\%9f { /* プロフ写真グループ */
    display: none;
}

/* 非公開写真を設定していないときにはアンロック！ボタンを非表示 */
body:not(.show-unlock-button) .follow-button {
    display: none !important;
}

/* フッターメニューのちょっと拡大 */
ul#menu-mobile-bottom-menu li.menu-item:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease, color 0.3s ease; /* スムーズなアニメーション */
}

ul#menu-mobile-bottom-menu li.menu-item:hover i {
    color: red; /* アイコンに色を付ける */
    transition: color 0.3s ease;
}

/* フッターメニューのテキスト非改行 */
.bnav_menu_items {
    position: relative;
    white-space: nowrap;
}

/* フッター通知カウントの文字設定 */
.notification_bell .bnb-pending-notifications span {
    position: absolute;
    right: -8px;
    top: -6px;
    color: white;
    background: #ea0a0a;
    font-size: 9px;
    padding: 0 5px;
    font-weight: 400;
    border-radius: 15px;
    height: 15px;
    min-width: 15px;
    width: auto;
    text-align: center;
    line-height: 15px;
}

/* フッターメッセージバッヂ */
.bpbmuc.bpbmuc-hide-when-null.bpbmuc-preserve-space[data-count="0"] {
    visibility: hidden;
	display: none;
}
/* フッターメッセージバッヂ */
.bpbmuc {
    background: #ea0a0a;
    border-radius: 15px;
    color: white;
    font-size: 9px;
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    vertical-align: middle;
    text-align: center;
    margin-right: 0;
    position: absolute;
    top: -3px;
    right: 12px;
    z-index: 10;
}

/* Avatar2設定 */
#buddypress div#item-header-avatar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
	align-items: flex-end;
}

/* 画像がある場合 */
div#item-header-avatar .subavatar .bpxcftr-image {
    max-width: 100%;
    object-fit: cover;
    height: 60px;
    width: 60px;
    margin: 10px 5px 0 0;
}

/* 画像がない場合（エリアを保持しつつ非表示） */
div#item-header-avatar .subavatar.empty {
    width: 60px;
    height: 60px;
    margin: 10px 5px 0 0;
    background: none;
    border: 1px dashed #ccc; /* 空白があることを示すための点線（必要なら） */
}

/* 自身のプロフィールページで表示される「misteryman.png」の編集リンク */
div#item-header-avatar .subavatar .edit-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: relative;
   /* overflow: hidden;  はみ出し防止 */
   /* border-radius: 50%;  画像を丸くする場合 */
}

/* 画像のサイズを統一 */
div#item-header-avatar .subavatar .edit-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* タップ時に少し暗くする */
div#item-header-avatar .subavatar .edit-avatar:active img {
    opacity: 0.7;
}

/* 非公開写真設定 */
div#item-header-avatar .unlockavatar .bpxcftr-image {
    max-width: 100%;
    object-fit: cover;
    height: 25px;
    width: 25px;
    margin: 10px 5px 0 0;
}

/* Xprofile 画像アップロードサムネイル設定 */
.field_type_image .bpxcftr-image {
    max-width: 100%;
    object-fit: cover;
    width: 100px;
    height: 100px;
}

/* メンバーシングルカバー設定 */
#item-header-wrap {
	margin-bottom: 0;
}

.bp-title-section .bp-page-title {
	font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.buddypress .breadcrumb {
    padding-left: 0;
    margin-left: 0;
	display: none;
}

.bp-title-section {
    line-height: 1;
    float: left;
    padding: 0 0 10px;
    width: 100%;
}
.bp-title-section .bp-page-title {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.05em;
}
#buddypress div#subnav.item-list-tabs ul, #group-create-tabs.item-list-tabs ul {
    display: inline-block;
    margin-bottom: 0;
}

/* =========================================
 * WPCodeにあったもの
 * ========================================= */
/* Root-css */
.fit-vids-style {
    display: none;
}
svg.ystdb-section__divider-image.has-white-fill {
    fill: #ffffff;
}
/*  */
.option-label {
  margin: 5px auto;
  font-size: 1em !important;
  font-weight: 500 !important;
}
/* reCAPTCHA非表示 */
.grecaptcha-badge { visibility: hidden; }

/* Activity-css */
/*body #buddypress div, body #buddypress dl, body #buddypress input[type=reset], body #buddypress input[type=search], body #buddypress input[type=submit], body #buddypress li {
    border-radius: 12px;
    background-clip: padding-box;
}*/
.bp-group-activity-preview, .bp-member-activity-preview, .buddyx-user-preview {
    position: relative;
    margin: 0 0 15px;
    padding: 0;
    border: 1px solid var(--global-border-color);
    border-radius: 12px!important;
}

.bp-group-preview-cover img, .bp-member-preview-cover img {
    background: #c5c5c5;
    -o-object-fit: cover;
    object-fit: cover;
    border: 0;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: 1;
    height: 30vh;
}

.bp-group-short-description, .bp-member-short-description {
    position: relative;
    text-align: center;
}

.bp-group-avatar-content.has-cover-image, .bp-member-avatar-content.has-cover-image {
    width: 120px!important;
    margin-top: -75px;
}
.bp-group-avatar-content, .bp-member-avatar-content {
    width: 120px;
    position: relative;
    z-index: 2;
    margin: auto;
    height: 120px;
    object-fit: cover;
}
.bp-group-avatar-content img.group-photo, 
.bp-group-avatar-content img.profile-photo, 
.bp-member-avatar-content img.group-photo, 
.bp-member-avatar-content img.profile-photo, 
.buddyx-user-avatar-content img {
    margin: 0 auto 10px!important;
    max-width: 150px;
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
	float: none!important;
    -webkit-box-shadow: 0 2px 5px 0 rgb(18 43 70 / 12%), 0 0 0 1px #e7edf2;
    box-shadow: 0 2px 5px 0 rgb(18 43 70 / 12%), 0 0 0 1px #e7edf2;
    border: 3px solid #fff;
    border-radius: 50%!important;
}

p.bp-member-nickname {
    display: none;
}
p[class$="short-description-title"]{
    font-size: 14px !important;
    padding: 10px 0;
    font-weight: normal;
    letter-spacing: 0.03em;
}
.buddypress-wrap .activity-inner .bp-group-short-description p, .buddypress-wrap .activity-inner .bp-member-short-description p, .buddypress-wrap .activity-inner .buddyx-user-short-description p {
    margin-bottom: 0!important;
}

.activity-list .activity-item .activity-inner p {
    word-wrap: break-word;
}
.activity-list .activity-item .activity-content p {
    margin: 0;
}
.buddypress-wrap .activity-inner p {
    padding: 0 15px;
    margin-bottom: 15px !important;
}
/* =========================================
 * WPCodeにあったものここまで
 * ========================================= */
 
 
/* グループ作成 */
#create-group-form {
  padding: 0;
}
#buddypress form.standard-form .left-menu {
  float: left;
  display: none;
}
#buddypress form.standard-form .main-column {
  margin-left: 0;
}



/* Push Notification */
.pnfpb_ic_push_settings_table_label_checkbox {
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1em !important;
    font-weight: 400 !important;
    /* font-weight: 500; */
}

.subscribe-display-on {
    width: 100%;
}

.pnfpb_card {
    padding: 10px;
    text-align: left;
    background-color: #dcdcdeb5;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}

.pnfpb_column_buddypress_functions {
    width: 100%;
}

.pnfpb_max_width_236 {
    max-width: 80%;
}

/* プロフィール欄入力必須文字指定*/
span.bp-required-field-label {
    color: #FF2A5B;
    font-weight: 600;
}

/* xprofile テキストエリアコンテンツフィット　*/
#buddypress .standard-form textarea {
	width : 100%;
	height: auto;
	min-height: 5lh; 
	max-height: 10lh;
	overflow:auto;
}

/* xprofile 説明文のHTMLタグ処理　*/
p.description  {
    white-space: pre-wrap; /* 改行をそのまま表示 */
}

/* iOSPWA向けセーフエリア確保 */
.bnav_bottom_nav_wrapper {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: env(safe-area-inset-bottom) !important;
    padding-left: 0px;
}

/* お気に入り関連 */
.favorite-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.favorite-item .avatar {
  flex-shrink: 0;
}

.favorite-item .avatar a {
  display: inline-block;
}

.favorite-item .avatar img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.user-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-break: break-word;
}

.user-info a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.user-meta-line {
  font-size: 11px;
  margin-top: 4px;
}

.latest-access {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.remove-fav-btn {
  text-align: right;
  margin-top: 8px;
}

.delete-button {
  display: flex;
  align-items: center;
}

.delete-fav {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.delete-fav .fa-trash {
  margin-right: 5px;
}

/* ボタンデザイン */
.add-fav {
  background-color: rgba(255,255,255,0.2)!important;
  width: auto;
  padding: 8px 30px !important;
  border-radius: 30px !important;
  margin: 5px 0 0 auto;
  text-transform: uppercase;
  font-weight: 100 !important;
  font-size: 12px !important;
  display: inline-block;
}

.rmv-fav {
  background-color: rgba(255,255,255,0.2)!important;
  width: auto;
  padding: 8px 30px !important;
  border-radius: 30px !important;
  margin: 5px 0 0 auto;
  text-transform: uppercase;
  font-weight: 100 !important;
  font-size: 12px !important;
  display: inline-block;
}

.rmv-fav-list {
  background-color: rgba(0,0,0,0.7)!important;
  width: auto;
  padding: 8px 30px !important;
  border-radius: 30px !important;
  margin: 5px 0 0 auto;
  text-transform: uppercase;
  font-weight: 100 !important;
  font-size: 12px !important;
  display: inline-block;
}

.favme, .ufavme {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: normal;
  font-style: normal;
}

.favme:before {
  content: '\f08a';
  display: none;
}

.ufavme:before {
  content: '\f00c';
  display: none;
}

/*p.fav-total {
  display: none;
}*/

.items-following h3 {
  display: none;
  margin-top: -6em;
}

/* 不要な li 表示の上書き */
.fav-members-list li {
  all: unset;
}

/* お気に入りページ：ページネーションUI
   メンバー一覧UIに合わせる */
/* お気に入りページ：ページネーションUI
   実HTML（fav-members-pagination と pagination-links が同じ要素）に合わせる */
#buddypress .fav-members-pagination.pagination-links{
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 26px 0 32px;
  padding: 0;
  border: 0;
  text-align: center;
}

#buddypress .fav-members-pagination.pagination-links > *{
  display: inline-flex !important;
  flex: 0 0 auto !important;
  float: none !important;
  margin: 0 !important;
  vertical-align: middle;
}

#buddypress .fav-members-pagination.pagination-links a,
#buddypress .fav-members-pagination.pagination-links span{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 32px;
  height: 32px;
  padding: 0 6px !important;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: inherit;;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
}

#buddypress .fav-members-pagination.pagination-links a:hover{
  opacity: .7;
}

#buddypress .fav-members-pagination.pagination-links .current{
  position: relative;
  font-weight: 500;
  pointer-events: none;
}

#buddypress .fav-members-pagination.pagination-links .current::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 999px;
}

#buddypress .fav-members-pagination.pagination-links .dots{
  min-width: auto;
  padding: 0 2px !important;
  color: #666;
}

#buddypress .fav-members-pagination.pagination-links .prev,
#buddypress .fav-members-pagination.pagination-links .next{
  display: inline-flex !important;
  font-size: 0;
  min-width: 28px;
  position: relative;
}

#buddypress .fav-members-pagination.pagination-links .prev::before,
#buddypress .fav-members-pagination.pagination-links .next::before{
  font-size: 26px;
  line-height: 1;
  color: #111;
  display: block;
}

#buddypress .fav-members-pagination.pagination-links .prev::before{
  content: "‹";
}

#buddypress .fav-members-pagination.pagination-links .next::before{
  content: "›";
}

@media (max-width: 640px) {
  #buddypress .fav-members-pagination.pagination-links{
    gap: 6px !important;
  }

  #buddypress .fav-members-pagination.pagination-links a,
  #buddypress .fav-members-pagination.pagination-links span{
    min-width: 28px;
    height: 28px;
    padding: 0 4px !important;
    font-size: 12px;
  }
}

/* アクションボタンデザイン */
#buddypress div#item-header div#item-buttons {
    width: 100%;
    float: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
#buddypress #item-body div.item-list-tabs ul li span, #buddypress #item-body div.item-list-tabs ul li a {
    display: inline-block;
    padding: 1em 2em 1em 0;
    font-size: 0.750em;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.04em;
}

/* サブナビのカウンターデザイン（ナビタブ同様に）*/
#buddypress #item-body div.item-list-tabs ul li:not(.current):not(.selected) span {
    display: inline-block;
    background: #666; /* 濃い灰色 */
    color: #fff;
    font-family: 'Montserrat';
    font-size: 10px;
    padding: 0 6px;
    height: 15px;
    line-height: 15px;
    border-radius: 7px;
    letter-spacing: 0.04em;
    text-align: center;
    font-weight: 400;
    -webkit-transition: background-color 0.3s ease-out;
    -moz-transition: background-color 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out;
    -ms-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
}
  
#buddypress #item-body div.item-list-tabs ul li#received-personal-li.current.selected span,
#buddypress #item-body div.item-list-tabs ul li#sent-personal-li.current.selected span{
    display: inline-block;
    background: #ff2a5b;
    color: #fff;
    font-family: 'Montserrat';
    font-size: 10px;
    padding: 0 6px;
    height: 15px;
    line-height: 15px;
    border-radius: 7px;
    letter-spacing: 0.04em;
    text-align: center;
    font-weight: 400;
    -webkit-transition: background-color 0.3s ease-out;
    -moz-transition: background-color 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out;
    -ms-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
}

#buddypress ul.item-list#admins-list li,
#buddypress ul.item-list#member-list li,
#buddypress ul.item-list#members-list li,
#buddypress ul.item-list#friend-list li, 
#buddypress ul.item-list#groups-list li {
  float: left;
  border: 0;
  padding: 0;
  text-align: center;
  /*
        &:hover {
          .item-cover {
            background-size: 110% !important;
          }
        }
        */
  width: 100%;
}
#buddypress ul.item-list#admins-list li .item,
#buddypress ul.item-list#member-list li .item,
#buddypress ul.item-list#members-list li .item,
#buddypress ul.item-list#friend-list li .item,
#buddypress ul.item-list#groups-list li .item {
  padding: 0 1em 10%;
  -webkit-transition: padding 0.4s ease;
  -moz-transition: padding 0.4s ease;
  -o-transition: padding 0.4s ease;
  -ms-transition: padding 0.4s ease;
  transition: padding 0.4s ease;
}
@media only screen and (min-width: 480px) {
  #buddypress ul.item-list#admins-list li,
  #buddypress ul.item-list#member-list li,
  #buddypress ul.item-list#members-list li,
  #buddypress ul.item-list#groups-list li {
    width: 49.99%;
  }
}
@media only screen and (min-width: 992px) {
  #buddypress ul.item-list#admins-list li,
  #buddypress ul.item-list#member-list li,
  #buddypress ul.item-list#members-list li,
  #buddypress ul.item-list#groups-list li {
    width: 33.3%;
  }
}
@media only screen and (min-width: 1200px) {
  #buddypress ul.item-list#admins-list li,
  #buddypress ul.item-list#member-list li,
  #buddypress ul.item-list#members-list li,
  #buddypress ul.item-list#groups-list li {
    width: 24.99%;
  }
}
@media only screen and (min-width: 1900px) {
  #buddypress ul.item-list#admins-list li,
  #buddypress ul.item-list#member-list li,
  #buddypress ul.item-list#members-list li,
  #buddypress ul.item-list#groups-list li {
    width: 19.99%;
  }
}

/* プロフィールシングルヘッダーパディング */
#buddypress div#item-header {
  overflow: hidden;
  position: relative;
	padding:40px 20px 0;
	text-align: center;
}

/* クイック投稿固定UI */
/* 共通スタイル */
.fixed-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
}

.fixed-button button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    width: 50px; /* 幅を固定 */
    height: 50px; /* 高さを固定 */
    border-radius: 50%; /* 完全な円形にする */
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center; /* テキストを中央に配置 */
    align-items: center; /* テキストを中央に配置 */
    transition: background-color 0.3s ease;
}

.fixed-button button:hover {
    background-color: #005f8d;
}


/* モバイル向けドロップダウンメニュー */
#redirect-menu {
    position: absolute;
    bottom: 60px;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    padding: 8px 0;
    width: 200px;
}

#redirect-menu a {
    display: flex; /* アイコンとテキストを横並びに */
    align-items: center; /* アイコンとテキストを縦方向で中央揃え */
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

#redirect-menu a i {
    margin-right: 8px; /* アイコンとテキストの間に余白を追加 */
    font-size: 18px; /* アイコンのサイズ調整（必要に応じて変更） */
    vertical-align: middle; /* アイコンをテキストと垂直方向でセンター揃え */
}

#redirect-menu a:hover {
    background-color: #f7f7f7;
}

/* モバイル最適化 */
@media (max-width: 768px) {
    .fixed-button {
        bottom: 120px;
        right: 10px;
    }

    #redirect-menu {
        width: 180px;
    }

    #redirect-menu a {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* インジケーターのスタイル */
.avatar-status {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    z-index: 10;
}

.status-green { background-color: green; }
.status-yellow { background-color: yellow; }
.status-orange { background-color: orange; }
.status-purple { background-color: purple; }

li.kleo-user_avatar-nav span.avatar-status,
#whats-new-avatar span.avatar-status,
.acomment-avatar .avatar-status {
	display: none;
}

/* クイック投稿記事表示 */
.last-activity-content {
background-color: #fafafa;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #c5c5c5;
    /* font-weight: bold; */
    font-size: 14px!important;
    color: black;
    transition: background-color 0.3s, transform 0.3s;
}
.last-activity-time {
    font-size: 0.75em;  /* 小さくする */
    color: #666;  /* 少し淡い色にして目立たせない */
}
.last-activity-content:hover {
    background-color: #c5c5c5;  /* ホバー時の背景色 */
    transform: scale(1.05);  /* 少し拡大 */
    cursor: pointer;
}

.last-activity-content a {
    text-decoration: none;
    color: #0073aa;  /* リンク色 */
}

.last-activity-content a:hover {
    text-decoration: underline;
}
#buddypress div#item-header div#item-meta #latest-update a {
    display: block;
}

/* 発情バッヂ */
.new-activity-badge {
    position: absolute;
    right: 11px;
    top: -2px;
    color: white;
    background: #ea0a0a;
    font-size: 9px;
    padding: 0 5px;
    font-weight: 400;
    border-radius: 15px;
    height: 15px;
    min-width: 15px;
    width: auto;
    text-align: center;
    line-height: 15px;
	z-index: 100;
}

/* アクティビティ「お気に入り」ボタン非表示 */
#buddypress ul#activity-stream.activity-list > li .activity-content .activity-meta .fav {
    padding: 4px 20px 4px 40px;
    display: none;
}

/* Form */
register-page form.standard-form input[type="tel"],
#register-page form.standard-form input[type="number"],
#register-page form.standard-form input[type="date"],
#register-page form.standard-form input[type="url"],
#register-page form.standard-form input[type="text"],
#register-page form.standard-form input[type="email"],
#register-page form.standard-form input[type="password"] {
  background-color: transparent;
  padding: 4px;
  width: 100% !important;
  margin-bottom: 20px;
  font-size: 16px;
}

#buddypress .standard-form textarea,
#buddypress .standard-form input[type=text],
#buddypress .standard-form input[type=color],
#buddypress .standard-form input[type=date],
#buddypress .standard-form input[type=datetime],
#buddypress .standard-form input[type=datetime-local],
#buddypress .standard-form input[type=email],
#buddypress .standard-form input[type=month],
#buddypress .standard-form input[type=number],
#buddypress .standard-form input[type=range],
#buddypress .standard-form input[type=search],
#buddypress .standard-form input[type=tel],
#buddypress .standard-form input[type=time],
#buddypress .standard-form input[type=url],
#buddypress .standard-form input[type=week],
#buddypress .standard-form select,
#buddypress .standard-form input[type=password],
#buddypress .dir-search input[type=search],
#buddypress .dir-search input[type=text],
#buddypress .groups-members-search input[type=search],
#buddypress .groups-members-search input[type=text] {
  border-radius: 0;
  color: #888;
  /*font: inherit;*/
  font-size: 16px;
  width: 100%!important;
  /*padding: 6px;*/
}
#buddypress div.dir-search input[type=text],
#buddypress li.groups-members-search input[type=text] {
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-weight: normal;
}

#buddypress ul#activity-stream.activity-list > li .activity-comments form .ac-reply-content .ac-textarea textarea {
  padding: 10px;
  font-size: 16px;
}

/* Table odd,even color */
table:not(#wp-calendar) tr:nth-child(even) td {
    background: #fff;
}
@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  #buddypress table.profile-fields tr td.label {
    /*border-right: 1px solid #eaeaea;*/
    font-weight: 600;
    width: 100%;
    background: rgba(153, 153, 153, 0.1);
}
  .profile-fields td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
}

/**/
/* 共通スタイル */
.user-groups-section {
/*    margin: 20px 0;
    padding: 10px 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px; */
    overflow: hidden;
}

.user-groups-section h3 {
    margin-left: 15px;
    font-size: 18px;
    color: #333;
}

/* 横スクロールエリア */
.user-groups-horizontal-scroll {
    display: flex;
    gap: 10px; /* グループカード間の間隔 */
    overflow-x: auto; /* 横スクロールを有効化 */
    padding: 10px 10px 10px 0;
    scroll-behavior: smooth; /* スムーズなスクロール */
    -ms-overflow-style: none; /* IE用スクロールバー非表示 */
    scrollbar-width: none; /* Firefox用スクロールバー非表示 */
}

.user-groups-horizontal-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari用スクロールバー非表示 */
}

/* グループカードデザイン */
.user-group-card {
    flex: 0 0 auto; /* 横スクロールのための固定幅 */
    width: 120px; /* モバイルデフォルト幅 */
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px!important;
    overflow: hidden;
    transition: transform 0.2s;
}

.user-group-card:hover {
    transform: scale(1.05); /* ホバー時に少し拡大 */
}

/* カード内の画像 */
.user-group-card img {
    width: 100%;
    height: 80px;
    object-fit: cover; /* 画像を枠内に収める */
    border-bottom: 1px solid #ddd;
}

.user-group-card p {
    margin: 5px 2px; /* マージンを小さめに */
    font-size: 13px; /* フォントサイズを調整 */
    color: #333; /* テキスト色を濃く */
    text-align: center; /* テキストを中央揃え */
    white-space: nowrap; /* テキストを1行に収める */
    overflow: hidden; /* はみ出し部分を隠す */
    text-overflow: ellipsis; /* はみ出し部分を "..." に */
}

/* レスポンシブ対応 */
@media (min-width: 600px) {
    .user-group-card {
        width: 120px; /* タブレット以上でカード幅を広げる */
    }

    .user-group-card img {
        height: 100px; /* 画像の高さも調整 */
    }

    .user-group-card p {
        font-size: 14px; /* フォントサイズを大きく */
    }
}

@media (min-width: 1024px) {
    .user-groups-section {
        margin: 30px 0;
    }

    .user-groups-horizontal-scroll {
        gap: 15px; /* カード間の間隔を広げる */
    }

    .user-group-card {
        width: 140px; /* デスクトップ以上でさらに幅を広げる */
    }

    .user-group-card img {
        height: 120px;
    }

    .user-group-card p {
        font-size: 16px;
    }
}

/* 鍵バッジ */
/* メンバーループ内のみアバターのスタイルを適用 */
.bp-member-loop {
    position: relative;
    display: inline-block;
    width: 80px; /* 必要に応じてサイズを調整 */
    height: 80px; /* 必要に応じてサイズを調整 */
}

/* メンバーループ内でアバター画像を整える */
.bp-member-loop img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* アスペクト比を保って画像をカバー */
}

/* メンバーループ内で鍵バッジを右下に配置 */
.bp-member-loop .private-image-badge {
    position: absolute;
    bottom: 1px;  /* 右下に配置 */
    right: 1px;  /* 右下に配置 */
    width: 24px;
    height: 24px;
    z-index: 10;
}

/* ウィジェット内では影響を与えないように */
.widget .item-avatar img {
    width: auto;
    height: auto;
}

/* Popupモーダル表示時の全体パッディング */
html.pum-open.pum-open-overlay.pum-open-scrollable body>:not([aria-modal=true]) {
    padding-right: 0;
}

/* いいね関連 */
.bplikes-list .avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
/* あしあと関連 */
.bp-footprints-list .avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* モバイル専用スタイル */
/* すべてのxProfile Imageフィールドのファイル選択ボタンにカスタムクラスを適用 */
.hidden-file-input {
  display: none !important;
}

.custom-upload-wrapper {
  display: inline-block;
  width: 100%;
 /* max-width: 300px; */
  margin: 10px 0;
}

.custom-upload-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background-color: #F7F7F7; /* 淡いグレー背景 */
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.3s;
  padding: 6px;
}

.custom-upload-button:hover {
  background-color: #f0f0f0;
  transform: scale(1.02);
}

.custom-upload-button img {
  max-height: 100%;
  max-width: 100%;
  pointer-events: none; /* タップ時にimgじゃなく親divが反応 */
}

/* マッチのバッヂ */
/* Matchバッヂとチップのスタイル */
.match-badge-wrapper {
  position: relative;
  display: inline-block;
}

.verified-badge {
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-left: 4px;
  cursor: pointer;
}

.match-tooltip {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

/* メンバー一覧と友達一覧ページで「追加」「解除」ボタンを非表示 */
.directory.members .friendship-button.not_friends,
.directory.members .friendship-button.is_friend,
.friends.bp-user .friendship-button.not_friends,
.friends.bp-user .friendship-button.is_friend {
	display: none !important;
}

/* 「イケるぜアピール未返信（保留中）」ボタンは表示 */
.directory.members .friendship-button.awaiting_response_friend,
.friends.bp-user .friendship-button.awaiting_response_friend {
	display: inline-block !important;
}

/* アンロック・相手アンロック一覧でも「追加」「解除」ボタンを非表示 */
.following.bp-user .friendship-button.not_friends,
.following.bp-user .friendship-button.is_friend,
.followers.bp-user .friendship-button.not_friends,
.followers.bp-user .friendship-button.is_friend {
	display: none !important;
}

/* 「イケるぜアピール未返信（保留中）」ボタンは表示 */
.following.bp-user .friendship-button.awaiting_response_friend,
.followers.bp-user .friendship-button.awaiting_response_friend {
	display: inline-block !important;
}

/* マイプロフィールボタン効果 */
.my-profile-button {
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.my-profile-button:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.my-profile-button .icon-user {
    display: inline-block;
    transition: transform 0.5s ease;
}

.my-profile-button:active .icon-user {
    transform: rotate(360deg);
}

/* いいねバッヂ */
.like-badge {
    position: absolute;
    right: -7px; /* ←ここを微調整 */
    top: -2px;
    color: white;
    background: #ea0a0a;
    font-size: 9px;
    padding: 0 5px;
    font-weight: 400;
    border-radius: 15px;
    height: 15px;
    min-width: 15px;
    width: auto;
    text-align: center;
    line-height: 15px;
    z-index: 100;
}

/* ミートバッヂ */
.sfdb-meet-new-badge{
  right: 10px;
  top: -2px;
}

/* 強制デフォルトアイコン上書き（ログアウト） */
.icon-buddyapp-default:before {
	content: "\e97a";
}

/* 通報モーダル */
/* 影と角丸を追加 */
#report-user-modal > div {
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/* フォーム内 */
#report-user-form textarea {
    font-size: 16px;
	width : 100%;
	height: auto;
	min-height: 5lh; 
	max-height: 10lh;
	overflow:auto;
}

/* Better Message 通報*/
.bm-report-message-panel .bm-report-message-panel-description #bm-report-message-panel-description-textarea {
    background: rgba(var(--bm-bg-color), 1) !important;
    border-radius: 3px;
    border: 1px solid rgba(var(--bm-border-secondary-color), 1) !important;
    box-sizing: border-box;
    padding: 10px 25px 10px 10px;
    font-size: 16px;
    transition: border-color .2s;
    color: rgba(var(--bm-text-color), 1) !important;
    width: 100%;
    min-height: 95px;
}

.bpxcftr-from-to-edit-field {
  display: flex;
  align-items: center;
  gap: 0.4em;
  flex-wrap: nowrap;
}

/* From/To フィールドを横並びにし、歳～歳の表示に整形 */
#buddypress .standard-form .bpxcftr-from-to-edit-field {
  display: flex;
  align-items: center;
  gap: 0.4em;
  flex-wrap: nowrap;
  margin-bottom: 1em;
}

#buddypress .standard-form .bpxcftr-from-to-edit-field input[type="number"] {
  width: 40px !important;
/*  font-size: 16px;
  padding: 5px;
  border-radius: 4px;
  color: #333;*/
}

iframe {
    border: none !important;
    max-width: 100%;
}

/* カスタムリスト */
ul.custom-list {
    padding: 1em 0 1em 1em;
}
.custom-list {
  list-style-position: inside;   /* リストマーカーをテキストの内側に */
  padding-left: 1em;             /* 左余白 */
}

.custom-list li {
  text-indent: -1em;             /* 1行目を左に引き出す */
  padding-left: 1em;             /* 2行目以降の位置調整 */
  font-size: 16px;
}

/* メニュー */
.menu-list>li>a {
    display: block;
    position: relative;
    font-size: .875em;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: none;
    line-height: 1.5em /* 行間 */
}

a[href*="/meet/#sfdb-meet-"]{
  color:inherit;
  font-weight:600;
  text-decoration:underline;
}

/* SFDB meet avatar fix */
.sfdb-meet-archive-card__avatar{
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.sfdb-meet-archive-card__avatar img{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.sfdb-meet-composer-close{
  width:36px;
  height:36px;
  min-width:36px;
  min-height:36px;
  border-radius:50%;
  padding:0 !important;
  display:flex;
  align-items:center;
  justify-content:center;
}

.sfdb-meet-composer-close{
    font-size: 34px;
    font-weight: 400;
}

.sfdb-meet-composer-close{
  flex-shrink:0;
}

.sfdb-meet-archive-action{
  margin: 14px 0 2em;
}

.sfdb-meet-archive-action__btn{
  width:100%;
  display:inline-block;
  min-height:40px;
  padding:10px 40px;
  font-size:0.750em;
  border-radius:30px;
  background:#e83e62;
  color:#fff;
  text-align:center;
  margin:0;
}

.sfdb-meet-archive-action__btn:hover,
.sfdb-meet-archive-action__btn:focus{
  color:#fff;
  text-decoration:none;
  opacity:.9;
}

.sfdb-meet-empty{
  padding: 18px;
  border: 1px dashed rgba(0,0,0,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.85);
  text-align: center;
}

.sfdb-meet-empty__text{
  font-weight: 700;
  margin-bottom: 8px;
}

.sfdb-meet-empty__sub{
  margin-bottom: 16px;
  color: #666;
  font-size: 0.92em;
}

.sfdb-meet-empty__action{
  max-width: 320px;
  margin: 0 auto;
}

.sfdb-meet-archive-card.is-own-meet{
  border-color: rgba(232,62,98,.28);
  box-shadow: 0 2px 12px rgba(232,62,98,.08);
}

.sfdb-meet-archive-card__head-main{
  min-width: 0;
}

.sfdb-meet-archive-card__own-label{
  display: inline-block;
  margin-bottom: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(232,62,98,.12);
  color: #b83257;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.sfdb-meet-archive-lead{
  margin:12px 0 18px;
  font-size:0.95em;
  color:#666;
}

.sfdb-meet-archive__pager--top{
  margin: 0 0 16px;
}

/* プロフィールページに最新のミート投稿を表示する */
.user-meet-section{
  margin: 28px 0 10px;
}

.user-meet-section h4{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 400;
}

.user-meet-card{
  display: block;
  padding: 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  color: inherit;
  text-decoration: none;
}

.user-meet-card:hover,
.user-meet-card:focus{
  color: inherit;
  text-decoration: none;
}

.user-meet-card__status{
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #c04a6a;
}

.user-meet-card__meta{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 13px;
  color: #777;
}

.user-meet-card__date{
  font-size: 15px;
  font-weight: 800;
  padding: 8px 0;
}

.user-meet-card__time{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 10px;
  background: #f3f0f4;
  color: #5c5c61;
  font-size: 14px;
  font-weight: 700;
}

.user-meet-card__message{
  line-height: 1.55;
  font-size: 14px;
  color: #5b5b60;
  word-break: break-word;
  font-weight: 400;
}

.user-meet-card__link{
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #7a4df3;
}

.user-meet-empty{
  padding: 14px;
  border: 1px dashed rgba(0,0,0,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
}

.user-meet-empty__text{
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.user-meet-empty__action{
  margin-top: 8px;
}

.user-meet-empty__link{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #7a4df3;
  text-decoration: underline;
}

.user-meet-empty__link:hover,
.user-meet-empty__link:focus{
  color: #7a4df3;
  text-decoration: underline;
}

/* LP */
.sfdb-lp-future-lists{
    margin-top: 0;
}

/* =========================================
 * Group activity notification jump focus
 * 通知から飛んだ activity を強調表示
 * ========================================= */
body.groups #buddypress ul.activity-list li.activity-item[id^="activity-"] {
  scroll-margin-top: 84px;
}

body.groups #buddypress ul.activity-list li.activity-item:target {
  outline: 2px solid rgba(255, 45, 85, .45);
  box-shadow: 0 0 0 6px rgba(255, 45, 85, .12);
  transition: box-shadow .25s ease, outline-color .25s ease;
/*  border-radius: 12px; */
}

/* =========================================
 * PNFPB iOS install banner - text only
 * ========================================= */

#pnfpb-pwa-dialog-ios-container {
  left: 0px;
  right: 0px;
  bottom: 0px;
  max-width: none;
}

#pnfpb-pwa-dialog-ios-container .pnfpb-pwa-dialog-ios-box {
  background: #4a344c;
  border-radius: 0;
  padding: 20px 16px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
#pnfpb-pwa-dialog-ios-container .pnfpb-pwa-dialog-ios-title {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding-right: 36px; /* × ボタンぶん */
}

/* 左の既存共有アイコンは消す */
#pnfpb-pwa-dialog-ios-container .pnfpb-apple-share-icon {
  display: none;
}

/* テキスト本体 */
#pnfpb-pwa-dialog-ios-container .pnfpb-pwa-dialog-ios-title p {
  margin: 0;
  color: #ffffff;
  white-space: pre-line;
  line-height: 1.45;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

/* 1行目だけタイトル風に */
#pnfpb-pwa-dialog-ios-container .pnfpb-pwa-dialog-ios-title p::first-line {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

/* 閉じるボタン */
#pnfpb-pwa-dialog-ios-container .pnfpb-notice-dismiss {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 28px;
  height: 28px;
}

#pnfpb-pwa-dialog-ios-container .pnfpb-notice-dismiss::before {
  color: #ffffff;
  font-size: 28px;
}

/* スマホ向け微調整 */
@media (max-width: 480px) {
  #pnfpb-pwa-dialog-ios-container .pnfpb-pwa-dialog-ios-title p {
    font-size: 14px;
  }

  #pnfpb-pwa-dialog-ios-container .pnfpb-pwa-dialog-ios-title p::first-line {
    font-size: 18px;
  }
}