body {
	padding-top: 0;
}

input,
select,
textarea,
button {
	font: inherit;
}

.gHeader {
	position: static;
	margin-bottom: 36px;
}

@media screen and (min-width: 1024px) {
	.gHeader {
		margin-bottom: 68px;
	}
}

.content {
	display: grid;
	gap: 44px;
}

.description {
}

.description__text {
	color: rgb(69, 90, 100);
	font-size: 14px !important;
	line-height: 1.8;
}

.experienceForm .description__text {
	margin-bottom: 0;
}

.description__text:nth-child(n + 2) {
	margin-top: 1em;
}

.description__button {
	margin-top: 44px;
	text-align: center;
}

.form {
	display: grid;
	gap: 16px;
}

.form__group {
	display: grid;
	gap: 8px;
}

.form__label {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #000;
	font-weight: 400;
	font-size: 16px;
}

.form__input {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgb(217, 217, 217);
	border-radius: 0.25rem;
	background: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
}

.form__input.is-success {
	border-color: rgb(163 215 163);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: right 16px center;
	background-image: url(/experience/assets/img/icon-success.svg);
	background-color: rgb(163 215 163 / 12%);
}

.form__input.is-error {
	border-color: rgb(217 83 79);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: right 16px center;
	background-image: url(/experience/assets/img/icon-error.svg);
	background-color: rgb(217 83 79 / 12%);	
}

.form__select {
	max-width: 100%;
	padding: 0.5rem 3rem 0.5rem 0.75rem;
	border: 1px solid rgb(217, 217, 217);
	border-radius: 0.25rem;
	background-color: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
}

.form__select.is-zip {
	width: 100%;
	padding-right: 0.75rem;
}

.form__select.is-success {
	border-color: rgb(163 215 163);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: right 16px center;
	background-image: url(/experience/assets/img/icon-success.svg);
	background-color: rgb(163 215 163 / 12%);
}

.form__select.is-error {
	border-color: rgb(217 83 79);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: right 16px center;
	background-image: url(/experience/assets/img/icon-error.svg);
	background-color: rgb(217 83 79 / 12%);	
}

.form__textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0.5rem 0.75rem;
	border-radius: 0.25rem;
	border: 1px solid rgb(217, 217, 217);
	background-color: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	overflow: scroll;
	resize: vertical;
}

.form__textarea.is-success {
	border-color: rgb(163 215 163);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: right 16px center;
	background-image: url(/experience/assets/img/icon-success.svg);
	background-color: rgb(163 215 163 / 12%);
}

.form__textarea.is-error {
	border-color: rgb(217 83 79);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: right 16px center;
	background-image: url(/experience/assets/img/icon-error.svg);
	background-color: rgb(217 83 79 / 12%);	
}

.form__tag {
	display: inline-block;
	border-radius: 0.25rem;
	background: rgb(244, 67, 54);
	padding: 0.25em 0.4em;
	color: rgb(255, 255, 255);
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	vertical-align: baseline;
	white-space: nowrap;
}

.form__tag.is-required {
	background: rgb(244, 67, 54);
}


.form__tag.is-optional {
	background: rgb(96, 125, 139);
}

.form__text {
	font-size: 14px !important;
	line-height: 1.65;
}

.experienceForm .form__text {
	margin-bottom: 0;
}

.form__text a {
	text-decoration: underline;
}

.form__description {
	margin: 0;
	color: rgb(153, 153, 153);
	font-weight: 400;
	font-size: 13px !important;
	overflow-wrap: anywhere;
}

.experienceForm .form__description {
	margin-bottom: 0;
}

.form__address {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-areas: 
		"zip prefecture"
		"city city";
	gap: 16px;
	align-items: start;
}

.form__address:has(.form__street) {
	grid-template-areas: 
		"zip prefecture"
		"city city"
		"street street";
}

.form__zip {
	grid-area: zip;
}

.form__prefecture {
	grid-area: prefecture;
}

.form__city {
	grid-area: city;
}

.form__street {
	grid-area: street;
}

.button {
	display: inline-block;
	min-width: 250px;
	padding: 12px;
	border-radius: 9999px;
	border: none;
	background: url(/experience/assets/img/bg-green.png) center no-repeat;
	color: rgb(255, 255, 255);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity 0.3s;
}

.button:hover {
	opacity: 0.6;
	color: rgb(255, 255, 255);
}

.form__buttons {
	display: grid;
	gap: 16px;
	width: 100%;
	max-width: 400px;
	margin-inline: auto;
}

.form__button {
	display: block;
	width: 100%;
	max-width: 400px;
	height: 70px;
	border-radius: 45px;
	margin-inline: auto;
	padding: 12px;
	border: none;
	background: url(/experience/assets/img/bg-green.png) center no-repeat;
	color: rgb(255, 255, 255);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity 0.3s;
}

.form__button[disabled] {
	cursor: not-allowed;
	background: rgb(214, 221, 226);
}

.form__button:not([disabled]):hover {
	opacity: 0.6;
}

.form__back {
	display: block;
	width: 100%;
	max-width: 400px;
	height: 50px;
	margin-inline: auto;
	padding: 8px !important;
	border-radius: 9999px;
	border: 2px solid #90a5af !important;
	background: #fff !important;
	color: #7b919c !important;
	font-weight: 400;
	font-size: 20px !important;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center !important;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity 0.3s;
}

.form__back:hover {
	color: #7b919c;
	opacity: 0.6;
}

.form__button.disabled {
	cursor: not-allowed;
	background-color: rgb(214, 221, 226);
	border-color: rgb(214, 221, 226);
}

.form__birthday {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: start;
	gap: 8px;
}

.form__year,
.form__month {
	display: flex;
	align-items: center;
	gap: 8px;
}

.form__year {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}

.form__year-error {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

.form__month {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}

.form__month-error {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

.form__error {
	margin: 0;
	color: rgb(244, 67, 54);
	font-weight: 500;
	font-size: 13px !important;
	overflow-wrap: anywhere;
}

.experienceForm .form__error {
	margin-bottom: 0;
}

.from__confirm-text {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0.5rem 0;
	padding: 0.5rem 0.75rem;
	/* border: 1px solid rgb(217 217 217); */
	background: rgb(217 217 217 / 12%);
	color: rgb(0, 0, 0);
	font-weight: 400;
	font-size: 16px !important;
	line-height: 1.5;
}

.g-recaptcha {
	width: fit-content;
	max-width: 100%;
	height: 78px;
	margin-inline: auto;
	overflow: hidden;
}