
/* トップバナー */
.top-banner {
  position: relative;
  width: 100%;
  height: 160px;
  background-image: url('../images/titleback.jpg'); /* 画像ファイル名を指定 */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-banner-overlay {
  background-color: rgba(0, 0, 0, 0.4); /* 半透明の黒 */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-banner-title {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 0 20px;
}

.c-form {
	max-width: 800px;
	margin: 0 auto;
	padding-top: 50px;
}
.c-form__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-bottom: 20px;
}
.c-form__label,
.c-form__input {
	padding: 10px 0 ;
}
.c-form__label {
	width: 90%;
	display: flex;
	align-items: center;
}
.c-form__input {
	width: 90%;
	font-size: 16px;
	border: solid 1px #333;
}
.c-form__input:focus-visible {
	outline: green auto 1px;
}
.c-form__required {
	color: #fff;
	background-color: rgb(28, 81, 141);
	border-radius: 4px;
	padding: 5px 5px;
	margin: 0 18px 0 0;
}
textarea.c-form__input {
	height: 160px;
}
.c-form__submit {
	text-align: center;
}
.c-form__submit button {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: rgb(28, 81, 141);
	border: solid 1px rgb(28, 81, 141);
	border-radius: 4px;
	padding: 5px 32px;
	transition: 0.4s;
	cursor: pointer;
}
.c-form__submit button:hover {
	color: rgb(0, 0, 0);
	background-color: transparent;
}

.c-form p {
font-size: 18px;
font-weight: 600;
justify-content: center;
}

.c-form__radio-group {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 8px;
  width: 90%;
  margin-left: 5%;
}

.contact {
	padding-bottom: 100px;
}