
.red {
	color :#cc0001;
}

/* お知らせ */

.notice-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 10px;
  margin-bottom :50px;
}

.text-heading {
  font-weight: bold;
  color: #000;
  font-size: 16px;
  margin-bottom: 14px;
}

.text-box {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.section-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 2px solid #666;
  padding-bottom: 0.3rem;
  padding-left :5px;
}


.notice {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 0.3rem;
}

.notice .date {
  color: #555;
  font-size: 1rem;
  padding-left :5px;
  white-space: nowrap;
}

.notice .title {
  /*font-weight: bold;*/
  font-size: 1rem;
  padding-left :5px;
}




/* パスワード再発行、登録内容変更のお知らせ */

.form-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 10px;
  margin-bottom :50px;
}

.form-block {
  margin-bottom: 40px;
}

.form-heading {
  font-weight: bold;
  color: #000;
  font-size: 16px;
  margin-bottom: 10px;
}

.form-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.form-button {
  background-color: #cc0001 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: bold;
  border-radius: 4px;
  padding: 10px 20px;
  display: inline-block;
  transition: background-color 0.3s;
}

.form-button:hover {
  background-color: #990000 !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* スマホ用） */
@media screen and (max-width: 768px) {

	/* スマホ用お知らせ */
	.notice {
	  flex-direction: column;
	  gap: 0.2rem;
	}

	.section-title {
	  font-size: 1.1rem;
	  margin-bottom: 0.8rem;
	  padding-bottom: 0.2rem;
	}


	/* スマホ用ボタン（縦並び共通） */
	.form-button {
	  display: block;
	  width: 90%;
	  margin: 10px auto;
	  text-align: center;
	  font-size: 16px;
	  color: #fff !important;
	  text-decoration: none !important;
	}
}