   .creator-container {
  display: flex;
  flex-direction: column; /* スマホは縦並び */
  align-items: center;
  gap: 1rem;
  margin: 1rem auto;
  max-width: 900px;
  padding: 0 1rem;
}

.creator-image {
  width: 95%;
  max-width: 240px;
  height: auto;
  border-radius: 8px;
  border: solid 1px #ccc;
}

.creator-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

h1 {
  font-size: 1.5rem;
  margin: 0 3%;
 
}

/* PC: */
@media screen and (min-width: 768px) {
 h1 {padding: 0 1rem;margin:0;}
}
.creator-info .meta {
  font-size: 1.2rem;
  line-height: 1.5;
}


/* PC: 横並び + 画像左、情報右 */
@media screen and (min-width: 768px) {
  .creator-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .creator-image {
    width: 300px;
  }

  .creator-info {
    width: auto;
    flex: 1;
  }



  .creator-info .meta {
  font-size: 1.2rem;
  line-height: 1.3; /* または 1.2 など調整可 */
  margin: 0.3rem 0;  /* 上下の余白も少し詰めると効果的 */
}
}
.creator-stats {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  font-size: 1.3rem;
  table-layout: auto;
  width: 100%;
}

.creator-stats th {
  text-align: left;
  font-weight: normal;

  white-space: nowrap;
  vertical-align: middle; /* ← ここを top → middle に変更 */
  font-size: 0.8rem;
  line-height:1.2em;
  width: 1px; /* 最小限の幅にする */
}

.creator-stats td {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.3rem 0;
  word-break: break-word;
  vertical-align: middle; /* ← こちらにも追加 */
  line-height:1.2em;
  width: 100%;
}
.creator-stats td,th{
border:solid 1px #ccc ;
 padding: 4px 6px;
}
/* PC: */
@media screen and (min-width: 768px) {
.creator-stats td {font-size: 1.2rem;}
.creator-stats th {font-size: 0.8rem;}
}



.creator-highlight {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2px;
  border-collapse: collapse;
  
  font-weight: bold;
  text-align: center;
  background-color: #fdfdfd;
  table-layout: auto;
  width: 100%;
color:#FF4747;font-weight: bold;
}

.creator-highlight th,
.creator-highlight td {
  padding: 4px 6px;
  border: 0px solid #ddd;
  vertical-align: middle;
  text-align:left;white-space: nowrap;
}
.creator-highlight th{
  font-weight: normal;
  font-size:0.8rem;line-height:1.2em;
  width: 1px;color:#333;
  }

  .creator-highlight td{
  font-weight: normal;
  font-size:1.3rem;line-height:1.2em;
  width: 100%;
  }

.creator-highlight .unit {
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 0.3rem;
}




/* PC: */
@media screen and (min-width: 768px) {
.creator-highlight {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2px;
  border-collapse: collapse;
  
  font-weight: bold;
  text-align: center;
  background-color: #fdfdfd;
   table-layout: auto;
  width: 100%;

}

.creator-highlight th,
.creator-highlight td {
padding: 0.1rem 0.3rem;  /* 👈 かなり小さく */
  border: 0px solid #ddd;
  vertical-align: middle;
  text-align:left;
}
.creator-highlight th{
  font-weight: normal;
  font-size:1.2rem;line-height:1.2em; width: 1px;
  }

  .creator-highlight td{
  font-weight: normal;
  font-size:2.5rem;
  line-height:1.2em;width: 100%;
  }

.creator-highlight .unit {
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 0.3rem;
}
}









.game-list-cards {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  margin: 1rem 0;
}
h2{
  padding: 0 2%;
}
@media screen and (min-width: 768px) {
h2{
  padding: 0 4px;
}
}


.game-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border: 2px solid #111;
  border-radius: 3px;
  padding: 0.7rem;
  background: #fff;
  margin:0 1%;
  

}

.game-card-image{
width:20%;
}

.game-card-image img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.game-card-info {
  margin-left: 1rem;

  

}

.game-title a {
  font-weight: bold;
  font-size: 1.1rem;

  text-decoration: none;
}

.game-title a:hover {
  text-decoration: underline;
}

.game-meta {
  
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.3rem;
}

.game-meta .visits {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .game-card {
   
  }

  .game-card-image img {
    width: 100%;
    
  }

  .game-title a {
    font-size: 1rem;
  }

  .game-meta {
    font-size: 0.85rem;
   
  }
}



.breadcrumb{
    margin:4px 12px;
}

/* スマホ用のメディアクエリ */
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 0.8rem;
    margin:6px 2%; 0 0;
    
  }
}