@charset "utf-8";

/* Edge */
::-webkit-input-placeholder {
	color: #a8a8a8;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "MS Pゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem;
}

/* Internet Explorer 10-11 */
:-ms-input-placeholder {
	color: #a8a8a8;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
}

::placeholder {
	color: #a8a8a8;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
}

select,
textarea,
input[type="email"],
input[type="text"] {
	border: 1px solid #ccc;
	padding: 5px;
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	width: 100%;
	outline: none;
	border-radius: 5px;
}

input[type="file"] {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.6rem;
}

input[type="submit"] {
	display: block;
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	color: #ffffff;
	background: #22ac38;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	padding: 2rem 0;
	margin-top: 4rem;
	border-radius: 100px;
	text-align: center;
	position: relative;
	cursor: pointer;
	transition: 0.2s;
}

input[type="submit"]:hover {
	animation: rippleGreen 1.5s infinite; 
	-webkit-animation: rippleGreen 2s infinite;
}



/* form */
.form {
	padding: 6rem 0 0;
}

.form .formNote {
	font-size: 1.4rem;
	width: 100%;
}

.form .red {
	color: #dc3545;
	font-size: 1.4rem;
}

.form table {
	width: 100%;
	border-collapse: collapse;
}

.form table th,
.form table td {
	border: 1px solid #ccc;
	padding: 1rem;
	font-weight: normal;
	text-align: left;
}

.form table th {
	width: 20%;
	text-align: center;
	background: #e6e6e6;
}

.form .row {
	display: flex;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	gap: 20px;
	border-bottom: 1px dashed #ccc;
}

.form .alignCenter {
	align-items: center;
}

.form .row:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.form .col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form .col .row {
	width: 49%;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	border-bottom: 0;
}

.form textarea {
	margin-top: 2rem;
}

.form label.error {
	color: #dc3545;
	font-size: 1.4rem;
	width: 100%;
}

@media (max-width: 767px) {
	.form table th,
	.form table td {
		display: block;
		width: 100%;
		border-bottom: 0;
	}

	.form table tr:last-child td {
		border-bottom: 1px solid #ccc;
	}

	.form .row {
		display: block;
	}

	.form .row .colL {
		margin-bottom: 1rem;
	}

	.form .col .row {
		width: 100%;
		margin-bottom: 1rem !important;
	}

	.form .col .row:last-child {
		margin-bottom: 0 !important;
	}
}


/* confirm page */
#formWrap {
	padding: 6rem 0 0;
}

#formWrap h4 {
	font-weight: bold;
	margin-bottom: 4rem;
}

#formWrap .error_messe {
	color: #dc3545;
	margin-bottom: 1rem;
}

#formWrap input[type='button'] {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	display: block;
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	color: #ffffff;
	background: #22ac38;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 2rem 0;
	border-radius: 100px;
	text-align: center;
	position: relative;
	cursor: pointer;
}

#formWrap input[type='button']:hover {
	animation: rippleGreen 1.5s infinite; 
	-webkit-animation: rippleGreen 2s infinite;
}


#formWrap .formTable {
	text-align: center;
}

#formWrap .formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}

#formWrap .formTable td,
#formWrap .formTable th{
	border:1px solid #ccc;
	padding:10px;
	word-break: break-all;
}

#formWrap .formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}

#formWrap .formTable th span{
    color: #ff0000;
}

#formWrap .g-recaptcha{
	display: flex; 
	justify-content: center; 
	margin-top: 40px;
}

#formWrap .listBtnConfirm {
	justify-content: center;
	gap: 20px;
	margin-top: 4rem;	
}

#formWrap .listBtnConfirm input {
	width: 100%;
	margin: 0;
}

@media (max-width: 767px) {

}
/* end confirm page */


/* thank page */
.thanks {
	text-align: center;
	padding: 6rem 0 0;
}

@media (max-width: 767px) {

}
/* end thank page */