
.yesns-wrapper {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

/* カード全体 */
.yesns-card {
  border: 1px solid #cfe0f5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 50px;
  background: #f9fbff;
}

/* 青いヘッダー部分 */
.yesns-card-header {
  background: linear-gradient(90deg, #1f5fbf, #2d78da);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  padding: 18px 25px;
}

/* 内側ボディ */
.yesns-card-body {
  padding: 25px;
}

/* 校舎行 */
.yesns-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #d9e6f7;
}

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

.yesns-school {
  font-size: 22px;
  font-weight: 600;
  color: #1c4e94;
}

/* SNSアイコン */
.yesns-icons {
  display: flex;
  gap: 18px;
}

.yesns-icons img {
  width: 48px;
  height: 48px;
  transition: 0.25s ease;
}

.yesns-icons img:hover {
  transform: scale(1.12);
}

/* スマホ対応 */
@media (max-width: 768px) {

  .yesns-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .yesns-icons {
    gap: 15px;
  }

  .yesns-school {
    font-size: 20px;
  }

}
