/**
 * スケジュール詳細ページのスタイル
 */

/* 見出し */
.post-schedule h2.heading {
  font-family: var(--cocoon-default-font);
}

.post-schedule h2.heading a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-schedule h2.heading a:hover {
  color: #0e573b;
}

/* 基本情報 */
div.place_info > p {
  margin-bottom: 10px;
}

/* 情報エリア */
.post-schedule .information {
  font-size: 14px;
}
/* 締切バッジ */
.accept,
.noaccept {
  width: 200px;
  text-align: center;
  display: block;
  padding: 2px 35px;
  margin: 20px auto;
}

.accept {
  background: #b9a281;
  color: #fff;
}
.noaccept {
  background: #f2f2f2;
  border: 1px solid #aaa;
}
#schedule-detail th,
#schedule-detail td {
  text-align: left;
  font-size: 1em;
}
#schedule-detail th {
  width: 20%;
}

#schedule-detail td {
  width: 80%;
}

@media screen and (max-width: 480px) {
  .post-schedule .information {
    padding: 25px 20px 5px;
  }
}
