/*
Theme Name: SWELL Child
Template: swell
Version: 1.0
*/

/* ここからCSSを記述できます */

/* 例: 投稿タイトルの色を変更 */
.entry-title {
  color: #333;
}

/* 例: 本文のフォントサイズを調整 */
.entry-content {
  font-size: 16px;
  line-height: 1.8;
}

/* 応募ボタンのスタイル */
.teacher-apply-button-wrap {
  margin-top: 30px;
  text-align: center;
}

.teacher-apply-button {
  background-color: var(--color_main, #e67e22);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.teacher-apply-button:hover {
  background-color: var(--color_main_dark, #d35400);
}