.table.japan_map {
    width: 100%;
    border-collapse: collapse;
}

.table.japan_map th, .table.japan_map td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.table.japan_map th {
    background-color: #f2f2f2;
}


.table.japan_map_2 th,
.table.japan_map_2 td {
  font-size: 1.3em;
}

/* 監修者表示 */
.keysession_supervisor {
  background-color: #f7f7f7;
  padding: 1em;
  font-size: 14px;
  margin-bottom: 1em;
  border-radius: 10px;
}
.keysession_supervisor .voice {
  margin-bottom: 0em;
}
.keysession_supervisor .supervisor_mark {
  font-weight: 600;
}
.keysession_supervisor .supervisor_title_box {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.keysession_supervisor .supervisor_profile_box {
  font-size: 12px;
}
.keysession_supervisor .supervisor_profile_box p {
  font-size: inherit;
  margin: 0 0 0.5em;
  line-height: 1.6;
}
.keysession_supervisor .supervisor_profile_box p:last-of-type {
  margin-bottom: 0;
}
.keysession_supervisor .supervisor_sns_box a {
  font-size: 16px;
  margin-right: 0.75em;
}

/* レーダーチャート (plan_card) */
.radar-chart-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  height: 120px;
  margin: 0 auto;
  padding: 40px;
  box-sizing: content-box;
}
.radar-chart-2 svg {
  width: 100%;
  height: 100%;
}
.radar-chart-2 dl {
  position: absolute;
  width: 100%;
  height: 100%;
}
.radar-chart-2 dl > div {
  position: absolute;
  color: #777;
  font-size: 1em;
  text-align: center;
}
.radar-chart-2 dl > div:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.radar-chart-2 dl > div:nth-child(2) {
  top: 31%;
  right: 20%;
  transform: translateX(50%);
}
.radar-chart-2 dl > div:nth-child(3) {
  bottom: 6%;
  right: 30%;
  transform: translateX(50%);
}
.radar-chart-2 dl > div:nth-child(4) {
  bottom: 6%;
  left: 30%;
  transform: translateX(-50%);
}
.radar-chart-2 dl > div:nth-child(5) {
  top: 31%;
  left: 25%;
  transform: translateX(-50%);
}
.radar-chart-2 dt {
  font-size: 12px;
  padding: 0;
  margin: 0;
  border-bottom: none;
}
.radar-chart-2 dd {
  margin: 0;
  padding: 0;
  font-size: 12px;
  border-bottom: none;
}

/* =============================================
   plan_card ショートコード
   ============================================= */
.ks-plan-card{
  background:#f9f9f9;
  border-radius:5px;
  border:1px solid #e8e8e8;
  margin:0.8em 0;
  overflow:hidden;
  transition:box-shadow .2s ease;
}
.ks-plan-card:hover{
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}
/* body: image + meta */
.ks-pc-body{
  display:flex;
  padding:1em;
  gap:1em;
}
.ks-pc-thumb{
  flex-shrink:0;
  width:160px;
}
.ks-pc-thumb img{
  width:100%;
  height:auto;
  border-radius:3px;
  object-fit:cover;
  border:0;
  box-shadow:none;
}
.ks-pc-meta{
  flex:1;
  min-width:0;
}
.ks-pc-title{
  margin:0 0 0.4em;
  padding:0;
  font-size:15px;
  font-weight:bold;
  line-height:1.5;
}
.ks-pc-title a{
  color:#182B38;
  text-decoration:none;
}
.ks-pc-title a:hover{
  color:#2196F3;
}
.ks-pc-title small{
  font-weight:normal;
  color:#888;
}
.ks-pc-desc{
  font-size:0.85em;
  color:#555;
  line-height:1.6;
  margin:0 0 0.6em;
}
.ks-pc-btn a{
  display:inline-block;
  padding:0.4em 1.8em;
  border:1px solid #182B38;
  border-radius:3px;
  background:#fff;
  color:#182B38;
  font-size:13px;
  font-weight:bold;
  text-decoration:none;
  letter-spacing:1px;
  transition:all .2s ease;
}
.ks-pc-btn a:hover{
  background:#182B38;
  color:#fff;
}
/* company section */
.ks-pc-company{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0.8em 1em;
  border-top:1px solid #eee;
  background:#fafafa;
}
.ks-pc-company-logo{
  flex-shrink:0;
  width:40px;
  height:40px;
}
.ks-pc-company-logo img{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
  border:0;
  box-shadow:none;
}
.ks-pc-company-name{
  font-size:0.9em;
  font-weight:600;
}
.ks-pc-company-name a{
  color:#182B38;
  text-decoration:none;
}
.ks-pc-company-name a:hover{
  color:#2196F3;
}
.ks-pc-company-tagline{
  font-size:0.8em;
  color:#888;
}
/* responsive */
@media screen and (max-width:599px){
  .ks-pc-body{
    flex-direction:column;
    padding:0.8em;
    gap:0.6em;
  }
  .ks-pc-thumb{
    width:100%;
  }
  .ks-pc-thumb img{
    aspect-ratio:16/9;
  }
}
