@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


/* ====================================
   【最終デザイン】タイトル横・スクエア型ハートボタン
   ==================================== */

/* --- 1. レイアウト（横並び設定） --- */
.my-title-flex-row {
    display: flex !important;
    justify-content: space-between !important; /* 文字とボタンを離す */
    align-items: flex-start !important; /* 上揃え */
    width: 100% !important;
    gap: 10px !important;
}

/* SWELLのタイトル調整 */
.p-postList__title,
.my-keep-title {
    display: block !important;
    width: 100% !important;
}


/* --- 2. ボタンの配置エリア --- */
.my-inline-object-btn {
    display: block !important;
    /* タイトルの行間からはみ出さないようサイズ調整 */
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    margin-top: 0 !important; /* 高さを揃える */
    
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important; /* クリック有効 */
}


/* --- 3. ボタンのデザイン（★ここを四角に変更） --- */
.my-inline-object-btn .simplefavorite-button {
    background: #fff !important;
    border: 1px solid #ddd !important;
    
    /* ★ここがポイント：丸(50%)ではなく、少し丸みのある四角(4px)にする */
    border-radius: 50% !important; 
    
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
	margin-top:0 !important;
    box-shadow: 0 2px 3px rgba(0,0,0,0.05) !important;

    font-size: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: all 0.2s !important;
    cursor: pointer !important;
}

/* ハートアイコン */
.my-inline-object-btn .simplefavorite-button::before {
    content: "♥" !important;
    font-size: 22px !important; /* アイコンサイズ */
    color: #ccc !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    display: block !important;
    padding-top: 2px !important; /* 中心補正 */
}

/* キープ中（アクティブ） */
.my-inline-object-btn .simplefavorite-button.active {
    background: #fff0f0 !important; /* 薄いピンク背景 */
    border-color: #ffcccc !important;
}
.my-inline-object-btn .simplefavorite-button.active::before {
    color: #ff9a9e !important;
}

/* ホバー時 */
.my-inline-object-btn .simplefavorite-button:hover {
    transform: translateY(-0px); /* 少し浮く動き */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}





/* ====================================
   求人詳細：タグ表示の全入れ替え
   ==================================== */

/* 1. 元々あった「1つしか出ないカテゴリー」を強力に消す */
body.single-job .c-postMeta__item--category,
body.single-job .p-articleMeta__category {
    display: none !important;
}

/* 2. 新しく追加したタグリストのデザイン */
.my-job-full-tags {
    margin-bottom: 25px; /* 本文との隙間 */
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd; /* 区切り線 */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
}

/* 「関連タグ：」のラベル */
.my-tags-label {
    font-weight: bold;
    color: #666;
    margin-right: 5px;
    font-size: 12px;
}

/* タグ（バッジ）のデザイン */
.my-tag-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f4f6f8;
    color: #333;
    border-radius: 4px; /* 四角く少し丸く */
    text-decoration: none;
    transition: 0.2s;
    font-size: 12px;
    border: 1px solid #eee;
}

/* ホバー時の色 */
.my-tag-badge:hover {
    background: #4dc0b5;
    color: #fff;
    border-color: #4dc0b5;
}

/*フッター直前のボックス*/
.haikei13{
  background: #e6dcd3;
border-radius: 15px ;
 border:solid 2px #4dc0b5;
box-shadow: 0 12px 25px rgba(77, 192, 181, 0.25); /* 影を緑色にして濃く */
 padding:2.5em 2em 2.5em 2em; /* 余白をつける */
}
.grade-2{
  padding: 0.8rem 0;
    margin-bottom: 0.2rem;
    background-image: linear-gradient(135deg, #4dc0b5 0%, #4dc0b5 60%, #ff9966 100%, #ff9966 100%);
    background-repeat: no-repeat;
    background-size: 100% 3px;
    background-position: bottom;
    color: #353535;
    font-weight: bold;
    font-size: 26px;
}
