    /* メニュー */
    .current-menu-item>a {
      color: #0073aa !important;
    }

    /* プロフィール */
    /* シンプルなスイッチCSS */
    .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 24px;
    }

    .switch input {
      display: none;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: .4s;
      border-radius: 24px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
    }

    input:checked+.slider {
      background-color: #4CAF50;
    }

    input:checked+.slider:before {
      transform: translateX(26px);
    }

    /* history */
    .mycred-history-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
    }

    .mycred-history-table th,
    .mycred-history-table td {
      border-bottom: 1px solid #ddd;
      padding: 8px;
      text-align: center;
    }

    .mycred-history-table th {
      background: #f8f8f8;
    }

    #mycred-load-more {
      display: block;
      margin: 0 auto;
      padding: 10px 20px;
      border: 1px solid #333;
      background: #fff;
      cursor: pointer;
    }

    #mycred-load-more:hover {
      background: #f0f0f0;
    }

    /* job-list */
    .company-job-list {
      background: #f8fbff;
      /* 薄い青背景 */
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #d0e3f7;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .company-job-list h2 {
      font-size: 1.4em;
      margin-bottom: 15px;
      border-left: 4px solid #3498db;
      /* 濃い青アクセント */
      padding-left: 10px;
      color: #2c3e50;
    }

    .company-job-list .job-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .company-job-list .job-item {
      padding: 12px 0;
      border-bottom: 1px solid #e1ecf7;
    }

    .company-job-list .job-item:last-child {
      border-bottom: none;
    }

    .company-job-list .job-item a {
      text-decoration: none;
      font-weight: bold;
      color: #2980b9;
      /* 青色 */
      transition: color 0.2s ease;
    }

    .company-job-list .job-item a:hover {
      color: #1d6fa5;
      /* 濃い青にホバー */
    }

    .company-job-list p {
      color: #555;
    }

    /* profile */
    .prf-txt {
      display: flex;
      flex-wrap: wrap;
      row-gap: 10px;
      align-items: start;
      flex-direction: column;
      margin-top: 30px !important;
    }

    .prf-txt strong {
      border: 1px solid #eaeaea;
      border-left: 5px solid #2B6CB0;
      width: 100%;
      background: #f9f6f6;
      padding: 5px 15px;

    }





    /* バナー画像 */

    /* 全体の背景とベース設定 */
    .dash {
      display: grid;
      grid-template-columns: 1fr;
      /* モバイルは1カラム */
      gap: 1.5rem;
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    body {
      background-color: #f8f8f8;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      line-height: 1.6;
    }

    /* ===== バナーエリア ===== */
    .banner-container {
      width: 100%;
      background: linear-gradient(135deg, #444, #666);
      color: #fff;
      text-align: center;
      padding: 3rem 1rem;
      font-size: clamp(1.5rem, 2vw, 2rem);
      letter-spacing: 0.05em;
      font-weight: 600;
    }

    /* ===== 各コンテンツカード ===== */
    .dash-content,
    .news-container {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      padding: 1.5rem;
    }

    /* ニュースセクション */
    .news-container ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .news-container li {
      /* margin-bottom: 0.75rem; */
    }

    .news-container a {
      text-decoration: none;
      color: #0073aa;
    }

    .news-container a:hover {
      text-decoration: underline;
    }

    /* ===== 2カラムレイアウト（PC表示） ===== */
    @media (min-width: 768px) {
      .dash {
        grid-template-columns: 2fr 1fr;
      }

      /* 左カラム（メッセージやプロフィール） */
      .news-container,
      .prf-container {
        grid-column: 1;
      }

      /* 右カラム（ポイントや上位表示） */
      .pnt-container,
      .rnk-top-container {
        grid-column: 2;
      }
    }

    /* ===== スイッチボタン ===== */
    .switch {
      position: relative;
      display: inline-block;
      width: 46px;
      height: 24px;
      margin-right: 8px;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      inset: 0;
      background-color: #ccc;
      border-radius: 24px;
      transition: 0.3s;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      border-radius: 50%;
      transition: 0.3s;
    }

    input:checked+.slider {
      background-color: #0073aa;
    }

    input:checked+.slider:before {
      transform: translateX(22px);
    }

    /* ===== ボタン ===== */
    .button {
      background-color: #0073aa;
      color: #fff;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.2s;
      margin-top: 10px;
      font-size: 14px;
    }

    .button:hover {
      background-color: #005d88;
    }

    /* ===== テキストスタイル ===== */
    .prf-txt {
      font-size: 0.9rem;
      color: #555;
      margin-top: 0.5rem;
    }

    .prf-op-term {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      margin-top: 0.5rem;
    }

    .prf-op-term input[type="date"] {
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 0.3rem;
    }

    /* ===== ポイント残高 ===== */
    .pnt-container {
      font-size: 1rem;
      font-weight: 500;
      color: #222;
    }

    /* ===== 上位表示エリア ===== */
    .rnk-top-container p {
      margin: 0.5rem 0;
    }



    /* ヘッダー */
    .custom-page-header {
      background-size: cover;
      background-position: center;
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .custom-page-header-inner {
      padding-top: 80px;
      display: flex;
      align-items: center;
    }

    .custom-page-header h1 {
      position: relative;
      z-index: 2;
      margin: 0;
    }

    /* 検索欄 */
    @media(max-width:500px) {
      form.resume-search-form {
        display: flex;
        flex-direction: column;
      }
    }

    /* ダッシュボード */
    .prf-op-cl-box {
      display: flex;
      align-items: center;
    }

    /* テキストCSS */
    .prf-txt {
      display: flex;
      flex-wrap: wrap;
      row-gap: 10px;
      align-items: start;
      flex-direction: column;
      margin-top: 30px !important;
    }

    .prf-txt strong {
      border: 1px solid #eaeaea;
      border-left: 5px solid #2B6CB0;
      width: 100%;
      background: #f9f6f6;
      padding: 5px 15px;
    }

    .prf-h3 {
      padding: 5px;
      border-bottom: 1px solid #eaeaea;
    }

    .prf-h3 {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      font-weight: 600;
      color: #222;
      margin-bottom: 1.2rem;
      padding-left: 0.75rem;
      border-left: 4px solid #0073aa;
      /* WordPressブルー */
    }

    /* ===========================
   テキスト要素
=========================== */
    .prf-txt {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.6;
    }

    .button-sml {
      display: inline-block;
      padding: 0;
      background-color: transparent !important;
      color: #0073aa !important;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.2s ease, transform 0.2s ease;
      font-size: 0.8rem;
      position: relative;
      width: fit-content;
    }

    .button-sml::after {
      position: absolute;
      background: #0073aa;
      border-radius: 50rem;
      content: "→";
      color: #fff;
      width: 20px;
      height: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      right: -30px;
      top: 0;
      font-size: 10px;
    }

    .button-sml:hover {
      color: #013147 !important;
      box-shadow: none;

    }

    .entry-content-wrap {
      margin-top: 30px;
    }

    /* ポイント */
    .content-style-unboxed .entry-content-wrap.product:not(.loop-entry) {
      max-width: 800px;
    }

    .woocommerce div.product form.cart .button {
      margin: 0;
    }

    .woocommerce div.product .product_title {
      padding-left: 10px;
    }