@charset "UTF-8";

/* ==========================================================================
   1. プロフィール全体のレイアウト
   ========================================================================== */
.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* 見出し (H3) のカード風装飾 */
.entry-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 35px 0 15px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 6px solid #06C755; /* LINEグリーンのアクセント */
    display: flex;
    align-items: center;
}

/* 項目ごとの区切り線 */
.entry-content h3 + p,
.entry-content h3 + div {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    padding: 0 15px 15px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

/* --------------------------------------------------------------------------
   2. 画像グリッド & モヤ画像 (ぼかし)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   2. 画像グリッド（3列に並べる画像）
   -------------------------------------------------------------------------- */
/* プロフィール中盤にある、小さく並べたい画像のみを対象にします。
   ※ .mrc-blur-link（ぼかし画像）はここから除外しました。
*/
.entry-content > img:not(:first-of-type),
.entry-content > a:not(.mrc-blur-link) > img {
    display: inline-block !important;
    vertical-align: top;
    width: calc(33.333% - 10px) !important;
    margin: 0 10px 15px 0 !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .entry-content > img:not(:first-of-type),
    .entry-content > a:not(.mrc-blur-link) > img {
        width: calc(50% - 10px) !important;
    }
}

/* --------------------------------------------------------------------------
   2-2. モヤ画像 (全幅表示：メイン写真とサイズを合わせる)
   -------------------------------------------------------------------------- */
/* 1. 外側の枠：上の画像と同じように「横幅いっぱい」に広げる */
.mrc-blur-link {
    display: block !important;
    width: 100% !important; /* 33.33%などの設定を完全に上書き */
    max-width: 100% !important;
    margin: 0 0 20px 0 !important; /* 上の画像と同じ下の余白だけ入れる */
    padding: 0 !important;
    position: relative !important;
    text-decoration: none !important;
}

/* 2. 画像本体：サイズは変えず、ぼかしフィルターだけを適用 */
img.bbb {
    filter: blur(25px) !important;
    -webkit-filter: blur(25px) !important;
    width: 100% !important;  /* 親要素いっぱいに広げる */
    height: auto !important; /* 比率を維持 */
    display: block !important;
    margin: 0 !important;
    border-radius: 12px;     /* 上の画像に合わせて角丸にする */
}

/* 3. ボタン：画像の中央に浮かせるだけ。レイアウトには干渉しない */
.mrc-blur-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
    /* ボタン自体のデザイン */
    background: linear-gradient(135deg, #06C755 0%, #05a346 100%) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

/* --------------------------------------------------------------------------
   3. スマート通知ボタン (シフト通知予約)
   -------------------------------------------------------------------------- */
.mrc-btn-container {
    text-align: left;
    margin: 15px 0;
}

/* ボタンの共通サイズ：画像通りの存在感に修正 */
.mrc-line-btn.modern, .mrc-fav-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    
    /* ★サイズの最適化：幅を固定し、上下の厚みを出す */
    width: 100%;             /* スマホでは横幅いっぱいに */
    max-width: 280px;        /* PCや幅広画面でも画像に近いサイズに制限 */
    padding: 12px 0 !important; 
    
    font-size: 14px !important; /* 文字がはっきり見える大きさ */
    font-weight: bold;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    box-sizing: border-box;
}

/* 画像の上に乗っている「LINEログインで表示」ボタン */
.mrc-blur-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 999 !important;

    /* ★ ここで緑のグラデーションを指定 ★ */
    background: linear-gradient(135deg, #06C755 0%, #05a346 100%) !important;
    color: #ffffff !important; /* 文字を白に固定 */
    
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    text-decoration: none !important;
    border: none !important;
}

/* オレンジ色の文字が残るのを防ぐための念押し */
.mrc-blur-link, .mrc-blur-link:hover {
    text-decoration: none !important;
    color: #ffffff !important;
}

/* ログイン前：LINEグリーン */
.mrc-line-btn.modern {
    background: linear-gradient(135deg, #06C755 0%, #05a346 100%) !important;
    color: #fff !important;
}

/* ログイン後：通知予約中 (白背景 + 赤枠) */
.mrc-fav-btn {
    background: #fff !important;
    color: #ff4b5c !important;
    border: 2px solid #ff4b5c !important;
}

/* ログイン後：通知オン (赤背景) */
.mrc-fav-btn.is-active {
    background: #ff4b5c !important;
    color: #fff !important;
    border: 2px solid #ff4b5c !important;
}

.mrc-btn-caption {
    margin: 8px 0 0 5px;
    font-size: 11px;
    color: #999;
    display: block;
}

/* --------------------------------------------------------------------------
   4. カレンダー & その他
   -------------------------------------------------------------------------- */
.entry-content iframe {
    max-width: 100% !important;
    width: 100% !important;
    height: 480px !important;
    border-radius: 12px;
    margin: 20px 0 !important;
    border: 1px solid #eee !important;
}

/* --------------------------------------------------------------------------
   5. マイページ (MY PAGE)
   -------------------------------------------------------------------------- */
.mrc-mypage-container {
    max-width: 650px;
    margin: 30px auto;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.07);
}

.mrc-mypage-section h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.mrc-mypage-section h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #06C755;
}

.mrc-form-group { margin-bottom: 25px; }
.mrc-form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
}

.mrc-form-group input[type="email"],
.mrc-form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fdfdfd;
}

.mrc-save-btn {
    width: 100%;
    background: linear-gradient(135deg, #06C755 0%, #05a346 100%);
    color: #fff !important;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

/* 通知スタッフリスト */
.mrc-notification-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mrc-notification-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 14px;
    gap: 15px;
}

.mrc-therapist-name {
    font-weight: bold;
    font-size: 15px;
    color: #444;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* マイページ内のボタンサイズを固定 */
.mrc-notification-list .mrc-fav-btn {
    flex-shrink: 0;
    width: 150px !important;
    padding: 10px 0 !important;
    font-size: 13px !important;
    text-align: center;
    box-shadow: none; /* リスト内は影を抑える */
}

.mrc-logout-link {
    display: inline-block;
    margin-top: 30px;
    color: #bbb;
    font-size: 13px;
    text-decoration: none;
}