h1.other {
	position: relative;
	color: #6eb0f9;
	line-height: 1.4;
	-webkit-box-reflect: below -17px -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0) 10%,rgba(0, 0, 0, 0.6));
	transform: skewX(-15deg);
	font-weight: bold;
	margin: 50px
}
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC: 3列 */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.teacher-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.teacher-card .teacher-photo {
  flex: 1; /* 画像側: 1の割合 */
}

.teacher-card img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.teacher-info {
  flex: 2; /* テキスト側: 2の割合 */
  padding-left: 12px;
}

.teacher-photo .jp-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.teacher-photo .en-name {
  margin: 4px 0;
  font-size: 0.55rem;
  font-style: italic;
  color: #666;
}

.teacher-info .subject {
  margin: 4px 0;
  font-weight: 500;
  color: #333;
}

.teacher-info .description {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}
.teacher-info {
  padding-left: 12px;
}

.teacher-info .subject {
  font-size: 10px;
    text-align: left;
    background-color: aliceblue;
    padding: 8px;
}

.teacher-info .description {
  font-size: 10px;
    text-align: left;
}
.pc{
	display: block;
}

/* スマホ対応 (2列) */
@media (max-width: 768px) {
	h1.other {
	font-size: 30px;
    }
  .teachers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .teacher-card {
    flex-direction: column; /* 縦配置ベース */
  }

  /* 画像＋名前部分だけ横並び */
  .teacher-card img,
  .teacher-info h3,
  .teacher-info h4 {
    display: inline-block;
    vertical-align: middle;
  }

  .teacher-card img {
    width: 60px;  /* 小さめアイコン風 */
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 8px;
  }

  .teacher-info {
    padding-left: 0;
  }
  .teacher-card .teacher-photo ,.teacher-info {
    flex: initial; 
  }

  .teacher-info h3,
  .teacher-info h4 {
    display: inline-block;
    margin: 0;
    font-size: 0.95rem;
  }

  /* 下に科目と説明 */
  .teacher-info .subject,
  .teacher-info .description {
    display: block;
    margin-top: 6px;
  }

  .teacher-card img {
    width: 50px;
  }
  
  .teacher-photo .text {
  	display: inline-block;
  }
  .teacher-photo .jp-name {
  	font-size: 12px;
  }
  
  .teacher-photo .en-name {
  	font-size: 6px;
  }
  .pc{
	display: none;
  }

}
    