/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #393939;
  font-size: 0.9em;
  background-color: #fff;
  position: relative;
  z-index: 0;
  max-width: none !important;
  font-family: Hiragino Kaku Gothic Pro, Meiryo, sans-serif;
  padding: 0;
  margin: 0 auto;
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

/* View Management */

.hidden {
  display: none;
}



/* Form View Styles */
.page-container {
  min-height: 100vh;
  background: linear-gradient(to bottom, #22d3ee, #3b82f6);
}


.logo-container {
  display: flex;
  align-items: center;
}


/* Hero Section */
.hero-section {
  padding: 32px 16px;
  text-align: center;
}

.hero-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
}

.hero-description {
  color: white;
  font-size: 14px;
  margin-bottom: 24px;
}

/* Services Section */
.services-section {
  padding: 0 16px 32px;
}

.services-category {
  color: white;
  font-weight: bold;
  margin-bottom: 16px;
}

.services-title {
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
}

/* Tabs */
.tabs-container {
  display: flex;
  margin-bottom: 16px;
}

.tab-button {
  flex: 1;
  padding: 12px 16px;
  text-align: center;
  font-weight: bold;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-button:first-child {
  border-radius: 8px 0 0 8px;
}

.tab-button:last-child {
  border-radius: 0 8px 8px 0;
}

.tab-button.active {
  background: white;
  color: #22d3ee;
  border-color: #a7f3d0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-button:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.7);
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.service-card.bg-yellow {
  background: linear-gradient(to right, #fef3c7, #fde68a);
}

.service-card.bg-gray {
  background: linear-gradient(to right, #e5e7eb, #d1d5db);
}

.service-card.bg-yellow-light {
  background: linear-gradient(to right, #fefce8, #fef3c7);
}

.service-card.bg-blue {
  background: linear-gradient(to right, #dbeafe, #bfdbfe);
}

.service-card.bg-green {
  background: linear-gradient(to right, #dcfce7, #bbf7d0);
  
}

/* Service Card Header */
.service-header {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-info {
  display: flex;
  align-items: center;
}

.rank-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin-right: 16px;
}

.rank-badge.yellow {
  background: #d97706;
}

.rank-badge.gray {
  background: #6b7280;
}

.rank-badge.blue {
  background: #2563eb;
}

.rank-badge.green {
  background: #059669;
}

.service-name {
  font-weight: bold;
  font-size: 20px;
  color: #374151;
}

.service-subname {
  font-size: 14px;
  color: #6b7280;
}

.official-button {
  background: #ea580c;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
}

.official-button:hover {
  background: #dc2626;
}

.button-arrow {
  margin-left: 4px;
}

/* Rating Section */
.rating-section {
  background: white;
  margin: 0 16px 16px;
  border-radius: 4px;
}

.rating-container {
  display: flex;
}

.rating-label {
  background: #f3f4f6;
  padding: 12px 16px;
  font-weight: bold;
  color: #374151;
  border-right: 1px solid #e5e7eb;
}

.rating-content {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-stars {
  display: flex;
  align-items: center;
}

.star {
  color: #fbbf24;
  font-size: 18px;
}

.rating-score {
  margin-left: 8px;
  font-weight: bold;
  font-size: 18px;
}

/* Recommendation Section */
.recommendation-section {
  background: white;
  margin: 0 16px 16px;
  border-radius: 4px;
  padding: 16px;
}

.recommendation-container {
  display: flex;
}

.recommendation-label {
  background: #f3f4f6;
  padding: 8px 12px;
  font-weight: bold;
  color: #374151;
  font-size: 12px;
  border-radius: 4px;
  margin-right: 16px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

.recommendation-content {
  flex: 1;
}

.recommendation-list {
  list-style: none;
  font-size: 14px;
}

.recommendation-list li {
  margin-bottom: 4px;
  line-height: 1.4;
}

.highlight {
  color: #fe7cae;
  font-weight: bold;
}

/* Diagnosis Section */
.diagnosis-section {
  background-color: #28c86f;
  padding-top: 0;
  padding: 0 16px 32px;
}

.diagnosis-form {
  border-radius: 12px;
  padding: 2px 2px;
  max-width: 600px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
  background: linear-gradient(to right, #22d3ee, #3b82f6);
  padding: 16px;
  margin: -24px -24px 24px;
  border-radius: 8px 8px 0 0;
}

.form-content {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  /* 影は少し濃く */
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* 項目間が詰まり気味なので調整 */
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 14px;
  font-weight: bold;
  color: #111;
  display: flex;
  align-items: center;
  gap: 4px;
}

.question-number {
  color: #76a066;
  /* 青 */
  font-weight: 700;
}


.select-container {
  position: relative;
}


.form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  appearance: none;
  background: white;
  color: #6d9983;
  font-size: 16px;
}

.form-group:not(:last-child) {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 16px;
}

.checkbox-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  /* 上下の間隔8px、左右の間隔12pxに詰める */
  margin-top: 12px;
  /* 設問との距離を少し空ける */
}

.checkbox-button {
  cursor: pointer;
}

.checkbox-button input[type="checkbox"] {
  display: none;
}

.checkbox-button span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #ccc;
  /* 押してない時はグレー */
  border-radius: 8px;
  font-weight: normal;
  /* 太字をやめる */
  color: #333;
  background-color: #fff;
  transition: all 0.2s ease;
  font-size: 14px;
  /* 小さめに調整 */
  min-width: 130px;
  text-align: center;
}

.checkbox-button input[type="checkbox"]:checked+span {
  background-color: #22b2a7;
  border-color: #22b2a7;
  color: #fff;
}


.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
}

.diagnosis-button {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  font-weight: bold;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.diagnosis-button:not(.disabled) {
  background: #ea580c;
}

.diagnosis-button:not(.disabled):hover {
  background: #dc2626;
}

.diagnosis-button.disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

/* Result View Styles */
.result-container {
  min-height: 100vh;
  background: #f9fafb;
}

.result-header {
  background: white;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.back-button {
  display: flex;
  align-items: center;
  color: #2563eb;
  margin-right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.back-arrow {
  margin-right: 4px;
}

.breadcrumb {
  font-size: 14px;
  color: #6b7280;
}



.selected-tag {
  background-color: #13D281;
  /* エメラルド系（参考に近い色） */
  color: #ffffff;
  /* 白文字 */
  padding: 6px 14px;
  border-radius: 9999px;
  /* pill型 */
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}


.count-text {
  color: white;
  margin-left: 4px;
}

.service-info {
  background: #3b82f6;
  padding: 16px;
  color: white;
  text-align: center;
}

.service-info p {
  font-size: 14px;
}

.result-tabs {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.result-tabs-container {
  display: flex;
}

.result-tab-button {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
}

.result-tab-button.active {
  color: #2563eb;
  border-bottom: 2px solid #2563eb;
  background: #eff6ff;
}

.ranking-title {
  background: white;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.ranking-title h3 {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.result-services-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-service-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.result-service-content {
  padding: 16px;
}

.result-service-header {
  display: flex;
  align-items: center;
  justify-content: between;
  margin-bottom: 12px;
}

.result-service-info {
  display: flex;
  align-items: center;
}

.result-rank-badge {
  background: #dc2626;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 12px;
}

.result-service-name {
  font-weight: bold;
  font-size: 18px;
}

.result-service-rating {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.result-service-rating .star {
  color: #fbbf24;
  margin-right: 4px;
}

.result-service-rating .rating-score {
  font-size: 14px;
  font-weight: bold;
}

.result-service-description {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.result-service-details {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.result-official-button {
  width: 100%;
  background: #ea580c;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.result-official-button:hover {
  background: #dc2626;
}

.footer-info {
  background: #2563eb;
  color: white;
  padding: 24px 16px;
  margin-top: 32px;
}

.footer-info h4 {
  font-weight: bold;
  margin-bottom: 8px;
}

.footer-info p {
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-cta {
  text-align: center;
}

.footer-button {
  background: #ea580c;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.footer-button:hover {
  background: #dc2626;
}

/* Responsive Design */
/* ==== PC レイアウト調整  ==== */
@media (min-width: 768px) {
  body {
    /* 360px の固定幅を上書きして中央揃えを維持 */
    width: 100%;
    max-width: 960px;   /* ← 好みで 720〜960px などに */
    margin: 0 auto;
  }


  .page-container,
  .result-container {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .services-title {
    font-size: 20px;
  }
}

/* この部分だけ元のstyle.cssに追加してください */
.services-content {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.services-content.active {
  display: flex;
}


/* 全体構造 */
.ranking-compare-table {
  border: 2px solid #e0bd00;
  /* 外枠を金色に */
  border-radius: 12px;
  /* カード感の角丸 */
  border-collapse: separate;
  /* 角丸のため必須 */
  overflow: hidden;
  /* 内容はみ出し防止 */
  background: #fff;
  /* 白背景 */
  border-collapse: separate;
  border-spacing: 0;
  /* ←これが肝 */
  table-layout: fixed;
  max-width: 540px;

}



/* バナー行のthだけ左寄せに */
.ranking-compare-table .ranking-compare-item__header th[colspan="2"] {
  text-align: left !important;
  padding-left: 10px !important;
  /* 必要なら調整 */
  padding-right: 10px !important;
}

/* バナー部分の左寄せ構造 */
.ranking-compare-table .ranking-compare-item__header .header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 260px;
  min-width: 0;
  overflow: hidden;

}

/* ロゴ画像 */
.ranking-compare-table .ranking-compare-item__header .agent-banner {
  height: 52px;
  width: 120px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}


/* サービス名 */
.ranking-compare-table .ranking-compare-item__header .agent-name {
  font-size: 6px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  max-width: 160px;
  line-height: 1.2;

  background: transparent !important;
}




/* 1位：金色グラデ背景 */
.ranking-compare-table.rank--1 .ranking-compare-item__header {
  background-image: linear-gradient(to right, #fff9d1, #fff4a0);
  border-bottom: 1px solid #e0bd00;

  padding: 0 !important;
  border-radius: 8px 8px 0 0 !important;
  /* 上だけ角丸 */
  overflow: hidden;
  /* 中身がはみ出さないように */
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}

.ranking-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 2px;
  min-height: unset !important;

  gap: 15px;
}

.ranking-badge {
  position: absolute;
  top: -0px;
  left: -12px;
}

.badge-icon {
  width: 36px;
  height: 36px;
}



.ranking-compare-table.rank--1 .ranking-compare-item__body {
  border-image: linear-gradient(to right bottom, #E0BD00 0%, #FFFCEC 20%, #E7C300 50%, #FFFCEC 70%, #E0BD00 100%) 1 / 0 5px 5px / 0 stretch;
}

.ranking-compare-table.rank--1 .ranking-compare-item__body tr td {
  border-bottom-color: #F1EACB;
}

/* 上部：ロゴ + サービス名 + ボタン */
.ranking-compare-item__header th {
  padding: 2px;
  position: relative;
}

/* 👇この3つまとめて一括で追記してください */





/* 公式ボタン */
.agent-link-button {
  display: block;
  width: 68px;
  height: 29px;
  background-color: #ff6142;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 29px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 3px 0 #c44a32;
  text-decoration: none;
  position: absolute;
  top: 16px;
  right: 16px;
}



.agent-rating-star {
  height: 14px !important;
  vertical-align: middle;
}

.agent-rating-score {
  font-size: 16px;
  font-weight: bold;
  margin-left: 2px;
  /* ←5px→2pxに */
  vertical-align: middle;
}



.ranking-compare-item__body td {
  background: #f9fafb;
  padding: 12px;
  font-size: 14px;
  color: #374151;
}

.agent-recommended-sentense p {
    padding: 0px 0px !important; /* ← 上下10px、左右14pxで自然に */

 margin: 0 0 8px 0 !important;
  line-height: 1.4 !important;
  font-size:10px !important; 
}

/* 強調 */
.highlight {
  color: #e74c3c;
  font-weight: bold;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .agent-name {
    font-size: 10px;
  }

  .agent-rating-score {
    font-size: 16px;
  }

  .agent-recommended-sentense p {
    font-size: 10px;
  }
}

/* グラデを穏やかに */
.ranking-compare-table.rank--1 .ranking-compare-item__header {
  background: linear-gradient(to right, #fff9d1, #fff4a0) !important;
  border-radius: 8px 8px 0 0;
  /* 上だけ角丸 */
  overflow: hidden;
  /* 中身がはみ出さないように */
  padding: 0 !important;
  margin: 0 !important;
  border-collapse: separate;
  border-spacing: 0;

}

/* 重複テキスト対策 */
.agent-name {
  display: none;
  /* またはロゴのaltに統合 */
}


/* オススメ左セルの中央揃え */
.ranking-compare-item__body th {
  vertical-align: middle;
}

.ranking-compare-table .ranking-compare-item__body th {
  width: 90px !important;
  white-space: normal !important;
  word-break: break-word !important;
  padding: 6px 4px !important;
  font-size: 13px !important;
  text-align: center; /* または left に戻してもOK */
}



.ranking-compare-table.rank--1 .ranking-compare-item__body th {
  background-color: #fff9d1 !important;
}

/* 総合評価の段差を出すために枠を明確化 */


:root {
  --header-border-rgb: 224, 189, 0;
  /* gold */
  --border-gradation: #E0BD00 0%, #FFFCEC 20%, #E7C300 50%, #FFFCEC 70%, #E0BD00 100%;
  --th-bg-color: #f1eacb;
}

.ranking-compare-table.rank--1 .ranking-compare-item__header tr>th {
  border: 1px solid rgba(var(--header-border-rgb), 0.5);
}

.ranking-compare-table.rank--1 .ranking-compare-item__body {
  border: 1px solid var(--th-bg-color);
  border-image: linear-gradient(to right bottom, var(--border-gradation)) 1 / 0 5px 5px / 0 stretch;
}

.ranking-compare-table th,
.ranking-compare-table td {
  border: 1px solid #f1eacb;
  font-size: 14px;
  padding: 16px 16px;
  color: #222;
}

.ranking-compare-table th,
.ranking-compare-table td {
  vertical-align: middle !important;
}


/* 角丸設定：四隅だけ明示的に丸める */
.ranking-compare-table thead th:first-child {
  border-top-left-radius: 8px;
}

.ranking-compare-table thead th:last-child {
  border-top-right-radius: 8px;
}

.ranking-compare-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.ranking-compare-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}



/* 2位：銀色グラデ背景 */
.ranking-compare-table.rank--2 .ranking-compare-item__header {
  background: linear-gradient(to right, #e8e8e8, #d0d0d0);
  border-bottom: 1px solid #bcbcbc;

}

.ranking-compare-table.rank--2 .ranking-compare-item__body {
  border: 1px solid #d8d8d8;
  border-image: linear-gradient(to right bottom, #C0C0C0 0%, #F0F0F0 20%, #C0C0C0 100%) 1 / 0 5px 5px / 0 stretch;
}

.ranking-compare-table.rank--2 .ranking-compare-item__body tr td {
  border-bottom-color: #eaeaea;
}

.ranking-compare-table.rank--2 .ranking-compare-item__body tr th {
  background: #f0f0f0;
}

/* 3位：銅色グラデ背景 */
.ranking-compare-table.rank--3 .ranking-compare-item__header {
  background: linear-gradient(to right, #ffdcb2, #f0b576);
  border-bottom: 1px solid #e3a86e;
}

.ranking-compare-table.rank--3 .ranking-compare-item__body {
  border: 1px solid #efcfb5;
  border-image: linear-gradient(to right bottom, #e3a86e 0%, #ffe8d3 20%, #e3a86e 100%) 1 / 0 5px 5px / 0 stretch;
}

.ranking-compare-table.rank--3 .ranking-compare-item__body tr td {
  border-bottom-color: #f5e8dc;
}

.ranking-compare-table.rank--3 .ranking-compare-item__body tr th {
  background: #ffe8d3;
}

/* 2位の外枠（銀） */
.ranking-compare-table.rank--2 {
  border: 2px solid #d8d8d8;
}

/* 3位の外枠（銅） */
.ranking-compare-table.rank--3 {
  border: 2px solid #efcfb5;
}

/* 2位の枠線色 */
.ranking-compare-table.rank--2 th,
.ranking-compare-table.rank--2 td {
  border: 0.2px solid #d8d8d8;
}

/* 3位の枠線色 */
.ranking-compare-table.rank--3 th,
.ranking-compare-table.rank--3 td {
  border: 0.2px solid #efcfb5;
}



:root {
  --header-border-rgb: 180, 129, 0;
  --border-gradation: #E0BD00 0%, #FFFCEC 20%, #E7C300 50%, #FFFCEC 70%, #E0BD00 100%;
  --th-bg-color: #F1EACB;
}

/* 求人数のセル：上部ラベル用 */
.ranking-compare-table .ranking-compare-item__body tr th time {
  display: inline-block;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 8px;
  font-weight: bold;
  line-height: 1;
}

/* セル内の「2025年6月時点」表記 */
.ranking-compare-table .ranking-compare-item__body tr th time .date {
  font-family: inherit;
  font-size: 9px;
  font-weight: bold;
  line-height: normal;
  vertical-align: inherit;
}

/* 求人数リストの各行 */
.agent-job-openings-list .agent-job-openings-item .job-openings {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3px;
  
}

/* 左側ラベル（例：500〜600万円） */
.job-openings-label {
  display: inline-block;
  font-family: "Zen Kaku Gothic Antique", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 13px;
  line-height: 18px;
  color: #999;
}


/* 右側件数（例：25,000件） */
.job-openings-number {
  display: inline-block;
  font-family: "Zen Kaku Gothic Antique", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 13px;
  line-height: 18px;
  color: #333;
}

/* 下部リンク */
.ranking-compare-item__footer td .agent-job-openings-link {
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #22a996;
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 0.2px;
}

/* 角丸：下の左のみ */
.ranking-compare-table .ranking-compare-item__body:last-child tr:last-of-type th,
.ranking-compare-table .ranking-compare-item__body:last-child tr:last-of-type td[colspan="2"] {
  border-bottom-left-radius: 4px;
}

/* セル下部ボーダー色 */
.ranking-compare-table.rank--1 .ranking-compare-item__body tr td,
.ranking-compare-table.rank--2 .ranking-compare-item__body tr td,
.ranking-compare-table.rank--3 .ranking-compare-item__body tr td {
  border-bottom-color: var(--th-bg-color);
}

.ranking-compare-table tr.ranking-compare-item__footer td {
  padding: 5px 5px 4px;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  border: none;
  font-size: 9px;
  line-height: 1;
  text-align: right;
}



.agent-job-openings-item .job-openings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  font-weight:600px;
}


.agent-job-openings {
  font-weight: bold !important;
  text-align: center !important;
}

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

.agent-job-openings-item::before {
  content: none;
  /* 念のため黒ポチ削除 */
}

.dotted-line {
  display: inline-block;
  flex: 1 1 0%;
  /* 仮のパス */
  background-size: 900px 2px;
  background-repeat: repeat-x;
  margin: 0 6px;
}

.dotted-line {
  
  height: 1px;
  border-bottom: 1px dotted #ccc;
  margin: 0 6px;
}


/* アイコン類の中央寄せ */
.agent-users-voice-info .users-voice-avatar,
.agent-users-voice-info .users-voice-rating,
.agent-users-voice-info .users-job-type {
  display: block;
  margin: 3px auto 0;
}

img.users-voice-rating {
  display: inline-block !important;
  height: 14px !important;
  vertical-align: middle;
  margin: 0 !important;
}


.agent-users-voice-info .users-voice-avatar {
  margin-top: 0;
}

/* コメントエリア */
.agent-users-voice {
  position: relative;
}

.agent-users-voice .users-voice-title {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #333;
  line-height: 1.2;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
}

.agent-users-voice .users-voice-sentense {
  margin-top: 9px;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #333;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
}

.agent-users-voice .users-voice-sentense.view-all {
  display: block;
  -webkit-line-clamp: unset;
  overflow: unset;
}

/* フッター（テキストリンク） */
.ranking-compare-item__footer {
  width: 100%;
}

/* タブ3（利用者の声）の専用CSS */

/* 左セル（ユーザー情報） */
.ranking-compare-table .agent-users-voice-info {
  text-align: center;
  vertical-align: top;
}

.ranking-compare-table .agent-users-voice-info .users-voice-avatar {
  display: block;
  margin: 0 auto;
}

.ranking-compare-table .agent-users-voice-info .users-voice-rating {
  display: block;
  margin: 4px auto 0;
}

.ranking-compare-table .agent-users-voice-info .users-job-type {
  display: block;
  margin: 4px auto 0;
  font-size: 11px;
  color: #666;
}

/* 右セル：タイトル・本文 */
.ranking-compare-table .agent-users-voice {
  position: relative;
}

.ranking-compare-table .agent-users-voice .users-voice-title {
font-size: 11px;
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.2;
}

.ranking-compare-table .agent-users-voice .users-voice-sentense {
  font-size: 11px;
  line-height: 1.6;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
}

.ranking-compare-table .agent-users-voice .users-voice-sentense.view-all {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}

/* 続きを見るリンク */
.ranking-compare-table .agent-users-voice .users-voice-sentense__see-more {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #22a996;
  text-decoration-line: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 0.2px;
  cursor: pointer;
}

/* 末尾リンクの共通化（見てみる） */
.ranking-compare-table .agent-job-openings-link {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgb(9, 193, 210);
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 0.2px;
}

.ranking-compare-table .agent-job-openings-link::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 9px;
  padding-left: 2px;
}

a,
a:hover {
  color: #393939;
  outline: none;
}

a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.recommended-sites__section .recommended-sites__inner .compare__switching-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #22a996;
  position: relative;
  z-index: 1;
  width: 100%;
  gap: 0;
}

.ranking-agent-compare .compare__switching-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
  max-width: 100%;

  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  gap: 0px;
  margin-bottom: 20px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.ranking-agent-compare .compare__switching-contents .switching-content {
  display: none;
}

.ranking-agent-compare .compare__switching-contents .switching-content.content-show {
  display: block;
}




.switching-content {
  display: none;
}

.switching-content.content-show {
  display: block;
}


.recommended-sites__section .ranking-agent-compare.compare--engineer .compare__switching-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  box-sizing: content-box;
  padding-top: 10px;
  margin-bottom: 0px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.recommended-sites__section .ranking-agent-compare.compare--engineer .compare__switching-contents {
  margin-top: 0;
  /* ← ここが原因その1 */
  padding-top: 10px;
  /* ← 20pxなどになってたら調整 */
  background-color: #e4fdf3;
  position: relative;
  z-index: 0;
  padding: 20px 10px 30px;
  max-width: 100%;
  
  margin: 0 auto;
}

.ranking-agent-compare .compare__switching-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-end;

  margin: 0 auto 12px;
  padding: 0;
}

.recommended-sites__section .ranking-agent-compare.compare--engineer .compare__switching-tabs,
.ranking-agent-compare .compare__switching-tabs {
  border-bottom: none !important;
}

.recommended-sites__section .recommended-sites__inner>.compare__switching-tabs {
  border-bottom: none !important;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: text-top;
  background: transparent;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.ranking-agent-compare.compare--engineer .compare__switching-tabs {
  display: flex;
  justify-content: center;
  column-gap: 40px;
  margin-bottom: 30px;
}





.recommended-sites__section .ranking-agent-compare.compare--engineer .compare__switching-contents {
  margin: 0;
  position: static;
  z-index: unset;
  padding: 20px 10px 30px;
  background-color: #e4efc9;
  box-shadow: none;

}

.recommended-sites__section .ranking-agent-compare.compare--engineer .compare__switching-contents .switching-content {
  height: auto;
}


.recommended-sites__wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: transparent;
  /* ← これにするか、そもそも指定しない */
}

.recommended-sites__inner {
  margin: 0;
  max-width: none;
  width: 100%;
}

.recommended-sites__section {
  background-color:#FCFFE6;

  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.ranking-agent-compare.compare--engineer {
  padding: 0;
  background-color: #ffffff;

  box-shadow: none;
}

section.recommended-sites__section {
  padding: 40px 0;
  background: #f7f7f7;
}

.recommended-sites__section {
  margin: 0 auto;
  padding: 0;
  background-color: #ECFCF1;
}
/* PCだけ幅制限を戻す */
@media (min-width: 768px) {
  .recommended-sites__section {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .wrapper {
    max-width: 460px;
    margin: 0 auto;
    padding: 0 16px;
  }
}
.wrapper {
  width: 100%;
      margin: 0 auto !important;

}


@media (min-width: 768px) {
  body {
    max-width: 480px;
    margin: 0 auto !important;
 
  }
}





.compare__switching-tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
  border-bottom: none;
  padding-top: 0px;
  padding-bottom: px;
  background-color: transparent;
  justify-content: space-between;
}

.compare__switching-tabs .switching-tab {
  appearance: none;
  cursor: pointer;
  flex-basis: 115px;
  height: 49px;
  border-radius: 8px 8px 0 0;
  border: 1px solid #70bc85;
  border-bottom: none;
  background-color: #f7f7f7;
  font-size: 13px;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  line-height: 43px;
  letter-spacing: 0.1em;
  color: #22a96f;
  text-align: center;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 6px 0;
  align-items: center;  

}

.compare__switching-tabs .switching-tab:nth-of-type(n+2) {
  margin-left: 5px;
}

.compare__switching-tabs .switching-tab:first-child {
  border-left: 1px solid #8cd1a2;
}

.compare__switching-tabs .switching-tab:last-child {
}

.compare__switching-tabs .switching-tab.tab--active {
  border: 1px solid #77c477;
  background-color: #e4efc9;

}


.compare__switching-tabs .switching-tab.tab--active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e4efc9;
  border-radius: 2px;
}

/* ===== kv-section（トップ画像とキャッチコピー） ===== */

.kv-section {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  margin-bottom: -35px !important;
  padding-bottom: 0 !important;
}

.kv-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  min-height: auto !important;
}

.kv-image {
  width: 100%;
  height: auto;
  display: block;
}

.kv-catchcopy {
  position: absolute;
  top: 10%;

  color: #fff;
  z-index: 2;
  max-width: 90%;
  left: 0;
  /* ← 左詰め */
  right: 0;
  padding: 0 0px;
  /* ← 必要なら左右だけ軽く余白を */
  max-width: none;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.kv-eyebrow {
  font-size: 14px;
  font-weight: bold;
  padding: 4px 8px;
  background-color: #0dad2d;
  display: inline-block;
  margin-bottom: 10px;
}

.kv-title {
  background: linear-gradient(to right, #1c7ed6, #228be6);
  /* 青系グラデ */
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 16px 20px;
  margin-bottom: 12px;
  display: block;
  width: 100%;
  border-radius: 0;
  /* 角をなくす */
  box-shadow: none;
  /* 影もなしでスッキリ */
  text-align: left;
  /* 必要なら */
}

.kv-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kv-title-line {
  background: linear-gradient(to right, #40F58B 0%, #28C76F 100%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 12px 16px;
  width: fit-content;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  /* 軽く立体感つけるなら */
}



.kv-note {
  font-size: 12px;
  color: #333;
  background-color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.kv-divider {
  margin: 0;
  padding: 0 !important;
  line-height: 0 !important;
  margin-top: -50px;
  /* ← 好みに応じて -40px〜-80px */
  z-index: 1;
  position: relative;
  line-height: 0;
  margin-bottom: -1px;
  /* 最後の隙間消す */

}

.kv-wave {
  display: block !important;
  width: 100%;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  
}

.kv-wrapper {
  min-height: 400px;
  max-width: none;
  /* ← 限定解除 */
  padding: 0;
  /* ← 横余白カット */
  margin: 0;
}


.header-label-section {
  background-color: #ecfdf1;
  text-align: center;
  padding: 15px 16px 16px;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.label-with-gears {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
  background: linear-gradient(to right, #40dc81 0%, #28C76F 100%);
  color: #fff;

  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.19em;
  line-height: 1.3;

  padding: 10px 14px;        /* ← 高さ・幅両方を確保 */
  border-radius: 6px !important;
  overflow: visible !important;
  position: relative; /* 干渉を防ぐ */
  z-index: 2;
  margin-bottom: 12px;
}



.label-with-gears img {
  width: 0px;
  height: auto; /* ←縦潰れ防止 */
}


.label-with-gears img.left {
  margin-right: 4px; /* 文字との距離調整 */
}

.label-with-gears img.right {
  margin-left: 4px;
}

.header-title {
  font-size: 20px;
  font-weight: bold;
  color: #5fa366;
}

.diagnosis-intro-section {
  background-color: #28c86f;
  /* 明るめの青 */
  color: #fff;
  text-align: center;
  position: relative;
  padding: 60px 16px 40px;
  /* 上にcut-shape分の余白あり */
  padding-bottom: 16px;
  /* or 24pxに減らす */

}

.cut-shape-top {
  display: block;
  width: 100%;
  margin-bottom: -1px;
  /* 不要な隙間が出る場合 */
}

.speech-area {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.character-image {
  width: 100px;
  height: auto;
}

.speech-bubble {
  background-color: #fff;
  color: #333;
  padding: 16px;
  border-radius: 40px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  font-size: 16px;
  text-align: left;
}

.speech-bubble::after {
  content: '';
  position: absolute;
right: -8px; 
  top: 50%;
  transform: translateY(-50%);
  border: 12px solid transparent;
  border-left-color: #fff;
}

.mini-label {
  display: inline-block;
  width: 300px;
  /* 画像サイズに合わせて調整 */
  height: 48px;
  background-image: url("balloon-label.png");
  /* 吹き出し画像パス */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 48px;
  color: #003c8f;
  font-weight: bold;
  font-size: 16px;
}

.lead-text {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  /* 見やすさUP */
}

.diagnosis-heading {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0px;
}

.diagnosis-heading .label-with-gears {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #81b478;
  font-weight: bold;
  font-size: 25px;
  border-radius: 6px;
  padding: 6px 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.01);
  /* 少し強めの影 */
  margin-bottom: 12px;
}

.diagnosis-heading .label-with-gears img {
  width: 20px;
  height: auto; /* ← 修正ポイント：縦幅は自動で */
}

.diagnosis-heading .label-with-gears img.left {
  transform: rotate(-15deg);
}

.diagnosis-heading .label-with-gears img.right {
  transform: rotate(15deg);
}

.diagnosis-heading .diagnosis-title {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.01);
}

.diagnosis-heading h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
}


.diagnosis-intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: #e4efc9;
  /* 上の背景色に合わせる */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.speech-balloon {
  background-image: url("balloon-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 335px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  /* テキストの余白 */
  box-sizing: border-box;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.speech-balloon p {
  margin: 0;
}

.diagnostic-tool-heading-balloon {
  display: inline-block;
  background-color: #ffffff;
  color: #81b478;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  position: relative; /* ←絶対必要 */
}

/* ▼ 吹き出し下部の三角形を追加 */
.diagnostic-tool-heading-balloon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #ffffff; /* ←吹き出し背景色と同じにする */
}

.line-1 {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 4px;
}


#result-view.active {
  display: block;
  /* activeが付いたら表示 */
}

/* CSS変数 - 主要色の定義 */
:root {
  --lev-primary: #FF5B39;
  --lev-blue: #4A90E2;
  --lev-teal: #5CBDBD;
  --lev-gold: #B8860B;
  --lev-gray-light: #F5F5F5;
  --lev-gray-medium: #E0E0E0;
  --lev-gray-dark: #666;
  --lev-text-dark: #333;
  --lev-white: #FFFFFF;
  --lev-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --lev-border-radius: 0.5rem;
}


.lev-ranking__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4af37;
  /* ゴールド */
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem 0 0.6rem 0;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.lev-ranking__crown {
  font-size: 1.2rem;
}

.lev-ranking__number {
  font-size: 1.5rem;
  font-weight: bold;
}

.lev-ranking__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  flex: 1;
}

.lev-ranking__rating {
  text-align: right;
}

.lev-ranking__rating-score {
  font-size: 2.2rem;
}

.lev-ranking__stars {
  font-size: 1rem;
}

.lev-ranking__rating-label {
  font-size: 0.8rem;
  display: block;
}

.lev-ranking__rating-score {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
}

.lev-ranking__stars {}

.lev-ranking__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFF8E1;
  border-radius: .75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--lev-gold);
  border-left: none;
  margin-top: 80px;
  /* ← 数値は適宜調整、まずは40pxで十分 */

}

.lev-ranking__highlight-icon {
  font-size: 1.5rem;
}

.lev-ranking__highlight-icon {
  color: #FFC107;
}

.lev-ranking__highlight-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.lev-ranking__screenshot {
  margin-bottom: 1.5rem;
  text-align: center;
}

.lev-ranking__screenshot-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: var(--lev-border-radius);
}

.lev-ranking__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.lev-ranking__tab {
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--lev-gray-medium);
  background: var(--lev-white);
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: all 0.2s;
  text-align: center;
}

.lev-ranking__tab--active {
  background: var(--lev-blue);
  color: var(--lev-white);
  border-color: var(--lev-blue);
}

.lev-ranking__tab-content {
  display: none;
  margin-bottom: 1.5rem;
}

.lev-ranking__tab-content--active {
  display: block;
}

.lev-ranking__info {
  border: 2px solid var(--lev-blue);
  border-radius: var(--lev-border-radius);
  overflow: hidden;
}

.lev-ranking__info-row {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--lev-gray-medium);
}

.lev-ranking__info-row:last-child {
  border-bottom: none;
}

.lev-ranking__info-label {
  padding: 1rem;
  background: var(--lev-gray-light);
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--lev-blue);
}

.lev-ranking__info-value {
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* おすすめポイントタブのスタイル */
.lev-ranking__recommend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lev-ranking__recommend-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid var(--lev-gray-medium);
}

.lev-ranking__recommend-item:last-child {
  border-bottom: none;
}

.lev-ranking__recommend-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--lev-blue);
  color: var(--lev-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.lev-ranking__recommend-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* 求人数タブのスタイル */
.lev-ranking__jobs {
  padding: 1rem;
  border: 2px solid var(--lev-blue);
  border-radius: var(--lev-border-radius);
}

.lev-ranking__jobs-total {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lev-gray-medium);
}

.lev-ranking__jobs-label {
  font-size: 0.9rem;
  color: var(--lev-gray-dark);
  margin-bottom: 0.5rem;
}

.lev-ranking__jobs-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--lev-blue);
}

.lev-ranking__jobs-categories {
  display: grid;
  gap: 1rem;
}

.lev-ranking__jobs-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--lev-gray-medium);
}

.lev-ranking__jobs-category:last-child {
  border-bottom: none;
}

.lev-ranking__jobs-category-name {
  font-size: 0.9rem;
  font-weight: bold;
}

.lev-ranking__jobs-category-value {
  font-size: 0.9rem;
  color: var(--lev-blue);
}

/* 転職成功事例タブのスタイル */
.lev-ranking__success {
  display: grid;
  gap: 1rem;
}

.lev-ranking__success-item {
  padding: 1rem;
  background: var(--lev-gray-light);
  border-radius: var(--lev-border-radius);
  border-left: 4px solid var(--lev-blue);
}

.lev-ranking__success-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.lev-ranking__success-content {
  font-size: 0.85rem;
  line-height: 1.5;
}

.lev-ranking__cta {
  width: 100%;
  padding: 1.25rem;
  background: var(--lev-primary);
  color: var(--lev-white);
  border: none;
  border-radius: .7rem;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(255, 91, 57, 0.3);
  transition: transform 0.2s;
}

.lev-ranking__cta:hover {
  transform: translateY(-1px);
}

.lev-ranking__cta-arrow {
  font-size: 0.9rem;
}

/* サービス利用者の口コミ */
.lev-reviews__header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.lev-reviews__speech-bubbles {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.lev-reviews__bubble {
  font-size: 2rem;
  opacity: 0.7;
}

.lev-reviews__bubble--left {
  color: var(--lev-teal);
}

.lev-reviews__bubble--right {
  color: var(--lev-primary);
}

.lev-reviews__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: var(--lev-text-dark);
}

.lev-reviews__item {
  margin-bottom: 2rem;
  border-radius: var(--lev-border-radius);
  overflow: hidden;
  box-shadow: var(--lev-shadow);
}

.lev-reviews__item-header {
  background: var(--lev-blue);
  color: var(--lev-white);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lev-reviews__avatar {
  flex-shrink: 0;
}

.lev-reviews__avatar-img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.lev-reviews__user-info {
  flex: 1;
}

.lev-reviews__user-age {
  font-size: 0.9rem;
  opacity: 0.9;
}

.lev-reviews__review-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0.25rem 0 0 0;
  line-height: 1.3;
}

.lev-reviews__content {
  padding: 1.5rem;
  background: var(--lev-gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lev-reviews__highlight {
  color: var(--lev-primary);
  font-weight: bold;
}

.lev-reviews__more {
  text-align: center;
  margin: 2rem 0;
}

.lev-reviews__more-link {
  color: var(--lev-blue);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.lev-reviews__cta {
  width: 100%;
  padding: 1rem;
  background: var(--lev-primary);
  color: var(--lev-white);
  border: none;
  border-radius: var(--lev-border-radius);
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(255, 91, 57, 0.3);
  transition: transform 0.2s;
}

.lev-reviews__cta:hover {
  transform: translateY(-1px);
}

.lev-reviews__cta-arrow {
  font-size: 0.9rem;
}

/* マイナビ薬剤師の3つの特徴 */
.lev-features__title {
  background: var(--lev-teal);
  color: var(--lev-white);
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  padding: 1.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  border-radius: var(--lev-border-radius) var(--lev-border-radius) 0 0;
}

.lev-features__accordion {
  margin-bottom: 1.5rem;
}

.lev-features__item {
  border-bottom: 1px solid var(--lev-gray-medium);
}

.lev-features__item:last-child {
  border-bottom: none;
}

.lev-features__trigger {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
}

.lev-features__number {
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1rem;
  background: var(--lev-primary);
  color: var(--lev-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.lev-features__text {
  flex: 1;
  font-weight: bold;
  color: var(--lev-text-dark);
}

.lev-features__icon {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--lev-text-dark);
  flex-shrink: 0;
}

.lev-features__content {
  padding: 0 3rem 1.25rem 3rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--lev-gray-dark);
}

.lev-features__cta {
  width: 100%;
  padding: 1rem;
  background: var(--lev-primary);
  color: var(--lev-white);
  border: none;
  border-radius: var(--lev-border-radius);
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(255, 91, 57, 0.3);
  transition: transform 0.2s;
}

.lev-features__cta:hover {
  transform: translateY(-1px);
}

.lev-features__cta-arrow {
  font-size: 0.9rem;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {

  .lev-ranking,
  .lev-reviews,
  .lev-features {
    margin: 0.5rem;
    padding: 1rem;
  }

  .lev-ranking__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 0.75rem 0.75rem 0 0;
    background: linear-gradient(to right, #ffffff, #e6f0ff);
    flex-wrap: nowrap;
  }

  .lev-ranking__tabs {
    margin-top: 1rem;
    border-bottom: 2px solid var(--lev-blue);
    /* 青下線を追加 */
  }


}



@media (max-width: 480px) {
  .lev-ranking__rank {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
    border-radius: 0.5rem 0 0.5rem 0;
  }

  .lev-ranking__header {
    background: linear-gradient(to right, #5ea1ec, #4f8fe0) !important;
    color: #000;
    /* 必要なら黒文字に戻す */
  }

  .lev-ranking__title {
    font-size: 1rem;
    color: #ffff
  }

  .lev-ranking__rating-score {
    font-size: 1.4rem;
  }

  .lev-ranking__stars {
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
}

.lev-ranking__tab {
  padding: 0.5rem;
  font-size: 0.7rem;
  border-radius: .5rem .5rem 0 0;
  font-weight: 600;
}



.lev-reviews__item-header {
  flex-direction: column;
  text-align: center;
  gap: 0.75rem;
}

.lev-features__content {
  padding: 0 1rem 1rem 1rem;
}


.unit-rank .rank-crown {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 20px;
  height: 13px;
}

.unit-rank::after {
  content: '';
  /* ← これ絶対必要 */
  position: absolute;
  bottom: -4px;
  left: 0;
  border-style: solid;
  border-width: 0 5px 5px 0;
  border-color: transparent #86660F transparent transparent;
  z-index: 2;

}

/* サービス名 */
.agent-name {
  box-sizing: border-box;
  flex: 0 0 225px;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 0px 0px;
  height: 45px;
}

.agent-name-link {
  color: #13D281;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.56;
  letter-spacing: 0.8px;
  text-decoration: none;
}

/* 評価部 */
.agent-rating {
  display: flex;
    flex-direction: row;  
 justify-content: center;  align-items: center;
  background-color: transparent !important; /* ← これで確実に消える */
  height: 45px;
  padding: 0px 0px;
}

.agent-rating-upper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 3px;
}

.agent-rating-label {
  color: #325d8a;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.agent-rating-score-value {
  color: #1c1b1b;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
}

.agent-rating-score-star .star-icons {
  display: block;
  width: 80px;
  height: 16px;  margin: 0 auto;
}




.agent-ranking__section::before {
  content: '';
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  z-index: 100;
  display: block;
  width: 375px;
  height: 94px;
  background-size: 375px 94px;
  background-repeat: no-repeat;
  background-position: center;
}

.agent-ranking__section:has(.agent-unit--5674) .agent-ranking__header {
  padding: 15px 0 30px;
  color: #34af8e;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 1.2px;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.agent-ranking__section:has(.agent-unit--5674) {
  padding: 0 10px 55px;
}

.agent-ranking__section {
  position: relative;
  background-color: #ecfcf1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: text-top;
  background: transparent;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

user agent stylesheet section {
  display: block;
  unicode-bidi: isolate;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
}

.slick-initialized .slick-slide {
  display: block;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-tabs {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  /* 中央寄せ */
  align-items: stretch;
  gap: 0;

}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-tabs .switching-tab {
  flex: 0 0 81.5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 0;
  border-radius: 3px 3px 0 0;
  border: none;
  background-color: #FFF;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  color: #13D281;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-tabs .switching-tab.tab--active {
  background-color: #13D281;
  color: #fff;
  cursor: auto;
  pointer-events: none;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-tabs .switching-tab {
  flex: 0 0 81.5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding: 0;
  border-radius: 3px 3px 0 0;
  border: none;
  background-color: #FFF;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  color: #13D281;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-tabs .switching-tab.tab--active {
  background-color: #13D281;
  color: #fff;
  cursor: auto;
  pointer-events: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-dots li button::before {
  display: none;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-dots li button {
  border-radius: 50%;
  background-color: #EAEAEA;
  padding: 0;
  width: 10px;
  height: 10px;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-dots li.slick-active button {
  background-color: #ababab;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-dots {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 25px;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-list .slick-track .slider-item .agent-banner {
  display: block;
  background-color: initial;
}

.agent-banner {
  width: 100%;
  height: 100%;
  max-width: none;          /* ← 280px などが残ってたら必ず解除！ */
  object-fit: cover;        /* contain → cover にしてはみ出しも許容 */
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-list .slick-track .slider-item {
  width: 280px;
  height: 140px;
  object-fit: cover;
  object-position: 50% 50%;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-list .slick-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0 20px;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-list::after {
  box-sizing: border-box;
  position: absolute;
  content: '\f00e';
  bottom: 20px;
  right: 55px;
  margin: auto;
  width: 23px;
  height: 23px;
  padding: 6.5px 0 0 6.5px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  text-align: left;
  line-height: 1.0;
  color: #fff;
  pointer-events: none;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider .slick-list {
  position: relative;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider.slick-initialized {
  display: block;
}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper .agent-banner-slider {
  display: none;

}

.agent-unit--unity.agent-unit--5674 .agent-banner-slider-wrapper {
  height: 165px;
  width: 100%;
  max-width: 325px;
  margin: 0 auto;
}

.agent-unit--unity.agent-unit--5674 .agent-copy-sentence {
  box-sizing: border-box;
  width: 335px;
  margin: 20px auto;
  padding: 5px 15px 5px 40px;
  border-radius: 5px;
  background-color: #FFEDCF;
  background-image: url(https://tenshokuagent-pro.com/assets/tool/engineer/lightbulb_bright-afa844dee096ae17d5aa4e8a7af90fa6481a483ad945a0880ef2f9f3ff0daa20.png);
  background-repeat: no-repeat;
  background-position: top 50% left 10px;
  background-size: 25px 20px;
  color: #000;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.agent-unit--unity.agent-unit--5674 .agent-feature-cta .agent-feature-cta-link-button::after {
  position: absolute;
  content: '\f054';
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto 0;
  width: 1em;
  height: 1em;
  background-color: transparent;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  text-align: center;
  line-height: 1.0;
  color: #fff;
}

.agent-unit--unity.agent-unit--5674 .agent-feature-cta .agent-feature-cta-link-button:active {
  box-shadow: 0 0 0 #C44A32;
  transform: translateY(3px);
}

.agent-unit--unity.agent-unit--5674 .agent-feature-cta .agent-feature-cta-link-button {
  position: relative;
  display: block;
  width: 335px;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 3px 0 #C44A32;
  background-color: #FF6142;
  color: #fff;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.agent-unit--unity.agent-unit--5674 .agent-feature-cta {
  position: relative;
  z-index: 10;
  margin-top: 20px;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-heading b {
  color: #FFF;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.0;
  vertical-align: top;
  letter-spacing: 3px;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-heading {
  padding: 6px 10px;
  border-radius: 5px 5px 0 0;
  background-color: #22a996;
  color: #FFF;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: 1.5px;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-main .agent-feature-cta .agent-feature-cta-link-button {
  width: 315px;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-main .agent-feature-cta {
  display: none;
  margin-top: 0;
  padding: 0 0 20px;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-main .feature-item-sentence {
  padding: 10px;
  color: #555;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 2.0;
}

.feature-item-main[hidden] {
  display: none;
  opacity: 0;
}

.feature-item-main {
  display: block;
  opacity: 1;
  transition: opacity 200ms linear;
}


.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-title .item-count::before {
  position: absolute;
  counter-increment: feature-item-count;
  content: counter(feature-item-count);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 18px;
  height: 18px;
  background-color: #FF7504;
  border-radius: 50%;
  color: #FFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-title .item-count {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-title .title-value {
  flex: 0 0 265px;
  color: #555;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.30;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-title::after {
  content: '\2b';
  transform: rotate3d(1, 0, 0, 0);
  transition: transform 200ms linear;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-title::before,
.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-title::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 1em;
  height: 1em;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
  text-align: center;
  line-height: 1.0;
  color: #000;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-title::before {
  content: '\f068';
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item .feature-item-title {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 5px;
  padding: 10px;
  min-height: 56px;
  cursor: pointer;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group .feature-item:nth-of-type(n+2) {
  border-top: 1px solid #eaeaea;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main .feature-item-group {
  counter-reset: feature-item-count;
}

.agent-unit--unity.agent-unit--5674 .agent-features .agent-features-main {
  border: 2px solid #22a996;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

.agent-unit--unity.agent-unit--5674 .agent-features {
  position: relative;
  z-index: 10;
  width: 335px;
  margin: 40px auto 0;
  background-color: #fff;
  padding: 0;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-recommended-list li::before {
  position: absolute;
  content: '\f14a';
  top: 1px;
  left: 0;
  width: 1em;
  height: 1em;
  background: linear-gradient(90deg, #13D281, #40F58B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  line-height: 1.0;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-recommended-list li:nth-of-type(n+2) {
  margin-top: 10px;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-recommended-list li {
  position: relative;
  padding-left: 19px;
  color: #444;
  text-align: left;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-recommended-list {
  padding: 14px 20px;
  width: fit-content;
  margin: 0 auto;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-recommended {
  background-color: #e8ffea;
  padding: 10px;
  color: #13D281;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-left .avatar-wrapper .personal-data__avatar {
  display: block;
  margin: 0 auto;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-left .avatar-wrapper .users-age-and-sex {
  width: fit-content;
  margin: 10px auto 0;
  color: #5aa364;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-left .avatar-wrapper {
  width: fit-content;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-left {
  box-sizing: border-box;
  flex: 0 0 93px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #ecffe8;
  padding: 10px;
  border-radius: 0 0 5px 0;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .success-voice-title {
  color: #444;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .users-job-types .prev-to-current-triangle::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 5px;
  background: linear-gradient(92deg, #13D281 0%, #40F58B 100%);
  clip-path: polygon(50% 5px, 0% 0%, 10px 0%);
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .users-job-types .prev-to-current-triangle {
  position: relative;
  width: 100%;
  height: 7.5px;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .users-job-types .type-item .item-label,
.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .users-job-types .type-item .item-value {
  color: #9A9A9A;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .users-job-types .type-item .item-label {
  flex: 0 0 3em;
  white-space: nowrap;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .users-job-types .type-item.item--current .item-label,
.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .users-job-types .type-item.item--current .item-value {
  background: linear-gradient(92deg, #13D281 0%, #40F58B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .users-job-types .type-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right .users-job-types {
  margin-top: 5px;
  width: fit-content;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info .success-voice-right {
  box-sizing: border-box;
  flex: 0 0 240px;
  background-color: #fff;
  padding: 10px;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit .success-voice-sentense {
  padding: 10px;
  color: #444;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .agent-info-users-success-voice .success-voice-unit:nth-of-type(n+2) {
  border-top: 1px solid #13D281;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td .agent-job-openings .agent-job-openings-link {
  color: #33b2e9;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0.45px;
  text-decoration-line: underline;
  white-space: nowrap;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td .agent-job-openings-list .agent-job-openings-item .job-openings-label .label-bg {
  position: absolute;
  z-index: 10;
  display: block;
  content: '';
  background-color: #fff;
  width: calc(100% + 0.25em);
  height: 100%;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td .agent-job-openings-list .agent-job-openings-item .job-openings-label .label-value {
  position: relative;
  z-index: 20;
  display: block;
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  background-color: #fff;
  background: linear-gradient(92deg, #5c5d5d 0%, #5c5d5d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td .agent-job-openings-list .agent-job-openings-item .job-openings-label {
  position: relative;
  display: block;
  height: 1em;
  width: fit-content;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td .agent-job-openings-list .agent-job-openings-item .job-openings-number {
  background-color: #fff;
  color: #555;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.0;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td .agent-job-openings-list .agent-job-openings-item:nth-of-type(n+2) {
  margin-top: 10px;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td .agent-job-openings-list .agent-job-openings-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(circle, #13D281 0.67px, transparent 0.67px);
  background-repeat: repeat-x;
  background-size: 5px 5px;
  background-position: 0 50%;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td .agent-job-openings {
  margin-top: 12px;
  text-align: right;
  line-height: 1.0;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td ul li .interview_day,
.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td ul li .interview_time {
  color: #444;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr td {
  padding: 9px 10px;
  color: #444;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr th {
  background-color: #e8fee7;
  width: 93px;
  padding: 9px 0;
  color: #13D281;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: middle;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr:last-of-type th {
  border-radius: 0 0 0 2px;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr:nth-of-type(n+2) td {
  border-top: 1px solid #efefef;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table tbody tr:nth-of-type(n+2) th {
  border-top: 1px solid #b8ddbc;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content .info-details-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content.content--visible {
  display: block;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents .switching-content {
  display: none;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-contents {
  position: relative;
  z-index: 20;
  background-color: #fff;
  border: 1px solid #13D281;
  border-radius: 0 0 3px 3px;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-tabs .switching-tab.tab--active {
  background-color: #13D281;
  color: #fff;
  cursor: auto;
  pointer-events: none;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-tabs .switching-tab {
  flex: 0 0 81.5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding: 0;
  border-radius: 3px 3px 0 0;
  border: none;
  background-color: #FFF;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  color: #13D281;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details .info-details__switching-tabs {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper .agent-info-details {
  width: 335px;
  margin: 0 auto 10px;
}

.agent-unit--unity.agent-unit--5674 .agent-info-details-wrapper {
  margin: 20px 0 0;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .agent-name .agent-name-link {
  color: #13D281;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.56;
  letter-spacing: 0.8px;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .agent-name {
  box-sizing: border-box;
  flex: 0 0 225px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  padding: 0 10px;
  height: 45px;
  border: none;
  white-space: normal;
  /* ← 折り返し許可 */
  word-break: break-word;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .agent-rating .agent-rating-score-star .star-icons {
  display: block;
    width: 80px;
  height: 16px;
  margin: 0 auto;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .agent-rating .agent-rating-upper .agent-rating-label {
  color: #4b994b;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .agent-rating .agent-rating-upper .agent-rating-score-value {
  color: #504d4d;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 100%;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .agent-rating .agent-rating-upper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 3px;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .agent-rating {
  box-sizing: border-box;
  flex: 0 0 80px;
  display: block;
  background-color: #dff3ea !important;
  padding: 5px 10px;
  height: 45px;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .unit-rank .rank-crown {
  position: absolute;
  left: 0;
  right: 0;
  top: -7px;
  margin: 0 auto;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .unit-rank.unit-rank--1::after {
  border-color: transparent #86660F transparent transparent;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .unit-rank.unit-rank--1 {
  background-color: #BD9832;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .unit-rank::after {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 5px 5px 0;
  border-color: transparent #1395A1 transparent transparent;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading .unit-rank {
  position: relative;
  flex: 0 0 45px;
  height: 45px;
  background-color: #22a996;
  color: #FFF;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20.779px;
  font-weight: 700;
  line-height: 45px;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand .agent-unit-heading {
  position: absolute;
  left: -5px;
  top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-heading-grand {
  box-sizing: border-box;
  position: relative;
  background: linear-gradient(92deg, #13D281 0%, #40F58B 100%);
  padding: 10px;
  height: 65px;
}

.agent-unit--unity.agent-unit--5674 .agent-unit-squeeze-area--initial-show {
  padding-bottom: 40px;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .agent-users-voices-heading .balloon--green {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: -14px;
    display: none !important;

}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .agent-users-voices-heading .balloon--orange {
  position: absolute;
  z-index: 30;
  right: -15px;
  bottom: -8px;
  display: block;
    display: none !important;

}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .agent-users-voices-heading .uv-heading-main {
  position: relative;
  z-index: 20;
  border-radius: 3px;
  background-color: #e2f1a0;
  padding: 12px 29px;
  width: 100%;
  height: auto;
  color: #27c86f;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 1.5px;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .agent-users-voices-heading {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices .users-voices-unit .uv-unit-row-lower p {
  color: #444;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices .users-voices-unit .uv-unit-row-lower {
  box-sizing: border-box;
  background-color: #e8ffea;
  border-radius: 0 0 5px 5px;
  padding: 10px;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices .users-voices-unit .uv-unit-row-upper .unit-title .title-value {
  margin-top: 2px;
  color: #FFF;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices .users-voices-unit .uv-unit-row-upper .unit-title .user-meta-data {
  color: #FFF;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices .users-voices-unit .uv-unit-row-upper .unit-title {
  flex: 0 0 265px;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices .users-voices-unit .uv-unit-row-upper .user-avatar .user-avatar-image {
  display: block;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices .users-voices-unit .uv-unit-row-upper .user-avatar {
  flex: 0 0 40px;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices .users-voices-unit .uv-unit-row-upper {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(92deg, #13D281 0%, #40F58B 100%);
  padding: 10px 5px 10px 10px;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices .users-voices-unit:nth-of-type(n+2) {
  margin-top: 10px;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices-action .users-voices-modal-call i.fa-solid {
  margin-left: 5px;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices-action .users-voices-modal-call::after {
  display: none;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices-action .users-voices-modal-call:active {
  transform: unset;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices-action .users-voices-modal-call {
  width: fit-content;
  height: unset;
  border: 0;
  box-shadow: unset;
  margin: 0 0 0 auto;
  color: #0034EE;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  text-decoration-line: underline;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices-action {
  padding: 10px 0;
    text-align: right;

}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new .users-voices {
  margin-top: 17px;
}

.agent-unit--unity.agent-unit--5674 .agent-users-voices--engineer-new {
  position: relative;
  z-index: 10;
  background-color: #fff;
  padding-top: 24px;
  margin: 20px auto 10px;
  width: 335px;
}

.agent-unit--unity.agent-unit--5674 .cta-agent-link-button::after {
  position: absolute;
  content: '\f054';
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto 0;
  width: 1em;
  height: 1em;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  text-align: center;
  line-height: 1.0;
  color: #fff;
}

.agent-unit--unity.agent-unit--5674 .cta-agent-link-button:active {
  box-shadow: 0 0 0 #C44A32;
  transform: translateY(2px);
}

.agent-unit--unity.agent-unit--5674 .cta-agent-link-button {
  position: relative;
  z-index: 10;
  display: block;
  border-radius: 5px;
  box-shadow: 0 3px 0 #C44A32;
  background-color: #FF6142;
  padding: 10px 0;
  width: 335px;
  margin: 0 auto 3px;
  color: #FFF;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.agent-unit--unity.agent-unit--5674 {
  background: #FFF;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  border-radius: 0;
  padding: 0;
}

.agent-unit--unity {
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  border-radius: 10px;

}

.fa-solid {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/*! CSS Used fontfaces */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://use.fontawesome.com/releases/v6.5.2/webfonts/fa-regular-400.woff2) format("woff2"), url(https://use.fontawesome.com/releases/v6.5.2/webfonts/fa-regular-400.ttf) format("truetype");
}



/*! CSS Used from: Embedded */
.agent-banner {
  object-fit: contain;
}


@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://use.fontawesome.com/releases/v6.5.2/webfonts/fa-regular-400.woff2) format("woff2"), url(https://use.fontawesome.com/releases/v6.5.2/webfonts/fa-regular-400.ttf) format("truetype");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(https://use.fontawesome.com/releases/v6.5.2/webfonts/fa-solid-900.woff2) format("woff2"), url(https://use.fontawesome.com/releases/v6.5.2/webfonts/fa-solid-900.ttf) format("truetype");
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/zenkakugothicantique/v17/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-l3RSjct1ubCn_azByPzaOWZW3XV3buGaonOw.2.woff2) format('woff2');
  unicode-range: U+ffd7, U+ffda-ffdc, U+ffe0-ffe2, U+ffe4, U+ffe6, U+ffe8-ffee, U+1f100-1f10c, U+1f110-1f16c, U+1f170-1f1ac, U+1f200-1f202, U+1f210-1f234;
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/zenkakugothicantique/v17/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-l3RSjct1ubCn_azByPzaOWZW3XV3buGaonOw.3.woff2) format('woff2');
  unicode-range: U+fa10, U+fa12-fa6d, U+fb00-fb04, U+fe10-fe19, U+fe30-fe42, U+fe44-fe52, U+fe54-fe66, U+fe68-fe6b, U+ff02, U+ff04, U+ff07, U+ff51, U+ff5b, U+ff5d, U+ff5f-ff60, U+ff66, U+ff69, U+ff87, U+ffa1-ffbe, U+ffc2-ffc7, U+ffca-ffcf, U+ffd2-ffd6;
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/zenkakugothicantique/v17/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-l3RSjct1ubCn_azByPzaOWZW3XV3buGaonOw.4.woff2) format('woff2');
  unicode-range: U+f92d-f959, U+f95b-f9f2, U+f9f4-fa0b, U+fa0e-fa0f;
}

@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url(https://tenshokuagent-pro.com/fonts/slick.eot);
  src: url(https://tenshokuagent-pro.com/fonts/slick.eot?#iefix) format("embedded-opentype"), url(https://tenshokuagent-pro.com/fonts/slick.woff) format("woff"), url(https://tenshokuagent-pro.com/fonts/slick.ttf) format("truetype"), url(https://tenshokuagent-pro.com/fonts/slick.svg#slick) format("svg");
}


.div,
span,
h5,
p,
img,
b,
i,
ul,
li,
table,
tbody,
tr,
th,
td,
hgroup {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: text-top;
  background: transparent;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

ul {
  list-style-type: none;
}

span,
b {
  vertical-align: baseline;
}

html,
body {
  line-height: 1.6;
  /* 必要に応じて調整 */
}

.remodal-wrapper.remodal--users-voices-engineer-all .remodal.remodal--users-voices-engineer-all {
  position: relative;
  width: 335px;
  border-radius: 10px;
  background-color: #fff;
  padding: 10px;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal-is-initialized {
  display: inline-block;
}

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal,
[data-remodal-id] {
  display: none;
}

.remodal-wrapper.remodal--users-voices-engineer-all .remodal.remodal--users-voices-engineer-all .users-voices-overflow-scroll .users-voices .users-voices-unit .uv-unit-row-upper .unit-title {
  flex: 0 0 260px;
  padding: 5px 0;
  color: #333;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.65px;
  text-align: left;
}



.remodal-wrapper.remodal--users-voices-engineer-all .remodal.remodal--users-voices-engineer-all .users-voices-overflow-scroll .users-voices .users-voices-unit .uv-unit-row-upper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
}


remodal-wrapper.remodal--users-voices-engineer-all .remodal.remodal--users-voices-engineer-all .users-voices-overflow-scroll .users-voices .users-voices-unit:nth-of-type(n+2) {
  border-top: 1px solid #ecfcf1;
}

.remodal-wrapper.remodal--users-voices-engineer-all .remodal.remodal--users-voices-engineer-all .users-voices-overflow-scroll .users-voices .users-voices-unit {
  padding: 20px 0 20px;
}

.remodal-wrapper.remodal--users-voices-engineer-all .remodal.remodal--users-voices-engineer-all .remodal-cta .remodal-cta-link-button .cta-link-button-balloon {
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  width: fit-content;
  margin: 0 auto;
  padding: 0 30px;
  border-radius: 100px;
  background-color: #FFF;
  height: 24px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
  color: #FF6142;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.remodal-wrapper.remodal--users-voices-engineer-all .remodal.remodal--users-voices-engineer-all .remodal-cta .remodal-cta-link-button {
  display: block;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 3px 0 #C44A32;
  margin: 0 0 3px;
  background-color: #FF6142;
  height: 57px;
  color: #fff;
  text-align: center;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 57px;
}

a,
a:hover {
  color: #393939;
  outline: none;
}

a {
  text-decoration: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
}

* {
  vertical-align: baseline !important;
}
.remodal-wrapper.remodal--users-voices-engineer-all .remodal.remodal--users-voices-engineer-all .remodal-close {
  position: absolute;
  top: unset;
  bottom: -30px;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 12px;
  width: fit-content;
  height: 20px;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  font-family: "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.0;
}

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-wrapper {
  padding: 10px 10px 0;
}

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}


.remodal-wrapper.remodal--users-voices-engineer-all .remodal.remodal--users-voices-engineer-all {
  position: relative;
  width: 335px;
  border-radius: 10px;
  background-color: #fff;
  padding: 10px;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-is-initialized {
  display: inline-block;
}

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal,
[data-remodal-id] {
  /* display: none; */
}

.uv-unit-row-lower p {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
  text-align: left;
  /* ← 左寄せ */
}




.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.wrapper {
  width: 360px;
  margin: 0 auto;
}

body {
  width: 360px;
  margin-left: auto;
  margin-right: auto;
  /* または margin: 0 auto; */
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* スマホでは wrapper も全幅 */
.wrapper, .section__container {
  width: 100%;
  padding: 0;
  margin: 0;
}



body {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}


.result-info {
  text-align: center;
  padding: 0px;
  background-color: #fff;
}

.result-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 12px;
  max-width: 350px;
  margin: 10px auto;
}

.selected-tags .tag {
  background-color: #4A90E2;
  color: #fff;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: bold;
}

.result-count {
  margin-top: 10px;
  font-size: 18px;
}

.result-count .count-number {
  color: #ff5f3e;
  font-size: 28px;
  font-weight: bold;
  margin-right: 5px;
}

.result-count .count-text {
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

.count-text,
.count-text strong,
.result-count,      /* ← 実際のクラス名に合わせて追加 */
.result-count strong {
  display: inline-block;
  line-height: 1;          /* 行高リセット */
  vertical-align: middle;  /* 数字とテキストを揃える */
}


.result-lead {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 5px;
}

.result-container .diagnosis-results-recommended {
  position: relative;
  background-color: #13D281;
  padding: 20px 0 0;
}

.result-container .diagnosis-results-recommended .recommended-line-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0 10px;
}

.result-container .diagnosis-results-recommended .recommended-line-1 .check-tag {
  width: fit-content;
  height: 29px;
  border-radius: 23px;
  padding: 0 10px;
  background-color: #fff;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: normal;
  text-align: center;
  color: #00182e;
}

.result-container .diagnosis-results-recommended .recommended-line-2 {
  margin-top: 17px;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.64px;
  text-align: center;
  color: #fff;
}

.result-container .diagnosis-results-recommended .recommended-line-3 {
  margin-top: 2px;
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.64px;
  text-align: center;
  color: #fff;
}

.result-container .diagnosis-results-recommended .recommended-line-3 b .ff-arial {
  font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.result-container .diagnosis-results-recommended::after {
  position: absolute;
  content: '';
  left: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 180px 0 180px;
  /* ← 合計360pxに */
  border-color: #13D281 transparent transparent transparent;
}




*,
*::before,
*::after {
  box-sizing: border-box;
}


.recommended-sites__section .ranking-agent-compare.compare--engineer .compare__switching-contents .switching-content .ranking-compare-list .ranking-compare-item .ranking-compare-table {
  border-collapse: separate;
  border-radius: 5px;
  border: none;
  overflow: hidden;
}

.badge-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.diagnosis-image {
  text-align: center;
  margin-bottom: 16px;
}

.diagnosis-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.agent-rating-score-star {
  display: flex;
  justify-content: center;
  gap: 4px; /* 星同士の余白 */
  margin-top: 4px;
}

.star-icon {
  width: 46px;
  height: 14px;
  object-fit: contain;
}

.agent-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agent-rating-upper {
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0; /* 星との間をゼロに */
}

.agent-rating-score-star {
  margin-top: 0; /* 星と5.0の距離を詰める */
}


.general_sales-class .header-analysis, .tool_age-class .header-analysis, .tool_general-class .header-analysis, .agent_03-class .header-analysis, .agent_04-class .header-analysis, .agent_05-class .header-analysis, .tool_01-class .header-analysis, .tool_02-class .header-analysis, .tool_03-class .header-analysis, .tool_04-class .header-analysis {
    position: relative;
    z-index: 20;
    box-sizing: border-box;
    display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 375px;
    height: 60px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: text-top;
    background: transparent;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
*, *::before, *::after {
    box-sizing: border-box;
}
user agent stylesheet
header {
    display: block;
    unicode-bidi: isolate;
}

header .header-sub {
    margin-left: 10px;
    font-family: "Zen Kaku Gothic Antique", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: left;
    color: #333;
}

general_sales-class .header-analysis, .tool_age-class .header-analysis, .tool_general-class .header-analysis, .agent_03-class .header-analysis, .agent_04-class .header-analysis, .agent_05-class .header-analysis, .tool_01-class .header-analysis, .tool_02-class .header-analysis, .tool_03-class .header-analysis, .tool_04-class .header-analysis {
    position: relative;
    z-index: 20;
    box-sizing: border-box;
    display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 375px;
    height: 60px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}

a img, img {
    border-style: none;
}


.body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* PCのみ中央寄せ＋幅制限をかける */
@media (min-width: 768px) {
  body {
    max-width: 960px;
    margin: 0 auto;
  }
}

.header__sitelogo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px; /* ロゴとテキストの間隔 */
  flex-wrap: wrap; /* スマホで折り返す対策 */
  margin: 0 ;
  text-align: left;
}

.header__sitelogo-image {
  width: 148px;
  height: auto;
  display: block;
  margin-bottom: 4px;
}
.logo-extended {
  font-size: 11px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  color: #333;
}

#header_top {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0px 7px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 10;
  padding: 12px 0;
}
/* ② 中身のロゴや内容だけ中央寄せ or paddingで調整 */
.section__container {
  width: 100%;
  margin: 0;
  padding: 0 16px;
}

/* ③ 左詰め配置 */
.header__content {
  display: flex;
  justify-content: flex-start;
  align-items:left !important;
}

/* ④ ロゴサイズ */
.header__sitelogo-image {
  width: 180px;
  height: auto;
  display: block;
}


/* 全体の文字組を安定させるための追加CSS */
body, h1, h2, h3, h4, h5, h6, p {
  line-height: 1.6;
  letter-spacing: 0.015em;
 vertical-align: baseline }


 .switching-content {
  display: none;
}
.switching-content.content-show {
  display: block;
}

.keypoints.keypoints--5196 .private-job-offering-introduction, .keypoints.private-job-offering--5196 .private-job-offering-introduction, .private-job-offering.keypoints--5196 .private-job-offering-introduction, .private-job-offering.private-job-offering--5196 .private-job-offering-introduction {
    position: relative;
    background-color: #167bd2;
    padding: 43px 0 30px;
}
.private-job-offering .private-job-offering-introduction {
    padding: 30px 25px;
    background-color: #008cd6;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: text-top;
    background: transparent;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


.keypoints.keypoints--5196 .private-job-offering-introduction, .keypoints.private-job-offering--5196 .private-job-offering-introduction, .private-job-offering.keypoints--5196 .private-job-offering-introduction, .private-job-offering.private-job-offering--5196 .private-job-offering-introduction {
    position: relative;
    background-color: #167bd2;
    padding: 43px 0 30px;
}
.private-job-offering .private-job-offering-introduction {
    padding: 30px 25px;
    background-color: #008cd6;
}

.keypoints.keypoints--5196 .private-job-offering-introduction .pjo-intro-heading, .keypoints.private-job-offering--5196 .private-job-offering-introduction .pjo-intro-heading, .private-job-offering.keypoints--5196 .private-job-offering-introduction .pjo-intro-heading, .private-job-offering.private-job-offering--5196 .private-job-offering-introduction .pjo-intro-heading {
    font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 1.6px;
    text-align: center;
    color: #fff;
}
.private-job-offering .private-job-offering-introduction .pjo-intro-heading {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
}

.keypoints.keypoints--5196 .private-job-offering-introduction .pjo-intro-main, .keypoints.private-job-offering--5196 .private-job-offering-introduction .pjo-intro-main, .private-job-offering.keypoints--5196 .private-job-offering-introduction .pjo-intro-main, .private-job-offering.private-job-offering--5196 .private-job-offering-introduction .pjo-intro-main {
    width: 335px;
    margin: 11px auto 0;
    font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.65px;
    text-align: left;
    color: #333;
}

.private-job-offering .private-job-offering-introduction .pjo-intro-main {
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    background-color: #fff;
    font-size: 13px;
    font-weight: normal;
    line-height: 2;
    letter-spacing: 0.65px;
    text-align: left;
    color: #222;
}

.keypoints.keypoints--5196 .private-job-offering-introduction::after, .keypoints.private-job-offering--5196 .private-job-offering-introduction::after, .private-job-offering.keypoints--5196 .private-job-offering-introduction::after, .private-job-offering.private-job-offering--5196 .private-job-offering-introduction::after {
    position: absolute;
    content: '';
    bottom: -29.9px;
    right: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 30px 187.5px 0 187.5px;
    border-color: #167bd2 transparent transparent transparent;
}
*, *::before, *::after {
    box-sizing: border-box;
}
.keypoints.keypoints--5196 .private-job-offering-answer-heading, .keypoints.private-job-offering--5196 .private-job-offering-answer-heading, .private-job-offering.keypoints--5196 .private-job-offering-answer-heading, .private-job-offering.private-job-offering--5196 .private-job-offering-answer-heading {
    margin-top: 70px;
}
.keypoints.keypoints--5196 .private-job-offering-answer-heading, .keypoints.private-job-offering--5196 .private-job-offering-answer-heading, .private-job-offering.keypoints--5196 .private-job-offering-answer-heading, .private-job-offering.private-job-offering--5196 .private-job-offering-answer-heading {
    font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 1.6px;
    text-align: center;
    color: #00182e;
}



/* 全体ラッパー */
.private-job-offering--its_new {
  background: #f5f5f5;
  padding: 0;
  font-family: "Helvetica Neue", "Arial", sans-serif;
}

/* 導入（青背景＋白カード） */
.private-job-offering-introduction {
  background: #0073d7;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.pjo-intro-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.pjo-intro-main {
  background: #fff;
  color: #333;
  border-radius: 10px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  display: inline-block;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.pjo-intro-main b {
  color: #f44336;
}

/* セクション見出し */
.private-job-offering-answer-heading {
  background: #ffffff;
  text-align: center;
  padding: 40px 20px 20px;
}

.private-job-offering-answer-heading .line-1 {
  font-size: 16px;
  font-weight: bold;
  color: #001e44;
  margin-bottom: 10px;
}

.private-job-offering-answer-heading .line-2 {
  font-size: 24px;
  font-weight: bold;
  color: #f44336;
}

/* 回答リスト全体 */
.private-job-offering-answer {
  padding: 10px 20px 40px;
}

/* 各ユニット（番号つきボックス） */
.answer-unit {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 見出し部分 */
.answer-unit-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.answer-unit-count {
  font-weight: bold;
  color: #00d75a;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f0f6fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.answer-unit-heading span {
  font-size: 15px;
  font-weight: bold;
  color: #00d75a;
}

/* 本文 */
.answer-unit-sentence {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* 具体例ボックス */
.exsample-box {
  background: #f7f7f7;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 6px;
}

.exsample-box-heading {
  font-weight: bold;
  margin-bottom: 4px;
  color: #9ac397;
}

.exsample-box-main {
  font-size: 13.5px;
  color: #444;
  line-height: 1.6;
}

/* CTAボタン */
.answer-unit-cta {
  text-align: center;
  margin-top: 12px;
}

.answer-unit-cta-link-button {
  background: #ff7043;
  color: #fff;
  padding: 10px 20px;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.answer-unit-cta-link-button:hover {
  background: #ff5722;
}


#footer_top {
  background-color: #f8f8f8;
  padding: 20px 0;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #ddd;
}

.copyrights__section .section__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.copyrights__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.essential-corporate-link-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.essential-corporate-link-item {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.essential-corporate-link-item:hover {
  color: #000;
  text-decoration: underline;
}

html, body {
  overflow-x: hidden;
}

img, table, .tab-wrapper, .agent-info-details, .info-details__switching-tabs {
  max-width: 100%;
  box-sizing: border-box;
}


.kv-promotion-credit, .keyvisual--its .keyvisual-content .kv-promotion-credit {
    margin: 3px auto 0 13px;
    color: #bababa;
    font-family: Arial, Helvetica, "Zen Kaku Gothic Antique", sans-serif;
    font-size: 5px;
    font-style: normal;
    line-height: 1.8;
}

.kv-wrapper {
  position: relative;
}

/* スマホ基準（デフォルト） */
.affiliate-note {
  position: absolute;
  top: 8px;
  right: 4px;
  color: #292828;
  font-size: 7px;
  padding: 4px 6px;
  border-radius: 4px;
  z-index: 100;
}

/* PC表示だけ調整 */
@media (min-width: 768px) {
  .affiliate-note {
    top: 12px;
    right: 12px;
    font-size: 7px;
    padding: 6px 10px;
  }
}

.agent-recommended-sentense .annotation-note {
  font-size: 6px !important;
  color: #a6a6a6;
  text-align: right;
  margin-top: 8px;
  padding-right: 4px;
}

.note-mark {
  color: #afafaf; /* 目立つ赤系、#ff5722 や #dc2626 にしてもOK */
  font-size: 0.8em;
  vertical-align: super;
}

.agent-ranking__section .annotation-note {
  font-size: 10px;
  color: #cecbcb;
  text-align: right;
  margin-top: 4px;
  margin-bottom: 0;
  padding-right: 6px;
}


.agent-users-voice .annotation-note {
  font-size: 6px !important;   /* サイズ調整、必要に応じて変更 */
  color: #888 !important;       /* お好みで変更 (#e74c3c なども可) */
  text-align: right !important;
  display: block;               /* pタグでも右寄せできるように */
  margin-top: 6px;
  padding-right: 8px;
}

.annotation-note {
  font-size: 5px !important;     /* 任意サイズ */
  color: #888 !important;         /* 任意のグレー #888, #a6a6a6 など */
  text-align: right !important;
  display: block;
  margin-top: 6px;
  padding-right: 8px;
}