/* 本文リンク用（グローバルメニュー除外） */
main a, .content a {
  text-decoration: none;
  color: #6b8f71;
  font-family: 'Zen Maru Gothic', sans-serif;
  transition: color 0.3s, text-decoration 0.3s;
}


.evaluation-text {
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .evaluation-text { text-align: left; }
}
/* 募集要項テーブル */
.info-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.info-table th, .info-table td {
  padding: 12px 16px;
  border-radius: 12px;
  vertical-align: top;
  font-size: 1rem;
}

/* 見出しセル */
.info-table th {
  background-color: #ff7f7f;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  text-align: left;
  width: 180px;
  font-weight: bold;
}

/* 内容セル */
.info-table td {
  background-color: #fff0f0;
  color: #333;
}

/* 行ごとのホバー効果 */
.info-table tr:hover td {
  background-color: #ffe6e6;
  transition: background-color 0.3s;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .info-table th, .info-table td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }
  .info-table th {
    margin-bottom: 4px;
    border-radius: 8px 8px 0 0;
  }
  .info-table td {
    border-radius: 0 0 8px 8px;
    margin-bottom: 12px;
  }
}

/* ================= accordion ================= */
/* FAQ全表示版用 */
.faq-item p {
  font-size: 1.1rem;
  background-color: #fff;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffd2c6;
}

.faq-answer {
  color: #333;
  font-weight: normal;
}
.faq-item strong {
  color: #ff7f7f;
  font-family: "Zen Maru Gothic", sans-serif;
}
/* 日付や時間を枠で囲む強調用 */
.highlight-icon {
  display: table;             /* ブロックではなくテーブルにする */
  margin: 20px auto 30px;       /* 上マージンと左右中央寄せ */
  padding: 10px 15px;
  border: 2px solid #d94f4f;
  border-radius: 8px;
  font-weight: bold;
  background-color: #fff0f0;
  line-height: 1.5;
  text-align: center;
}
/* 絵文字だけサイズを大きくする */
.emoji-large {
  font-size: 2rem; /* 2倍くらい大きくする */
  vertical-align: middle; /* テキストとの位置調整 */
}

