body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	color: #1f1f1d;
	margin: 0;
	padding: 0;
}

p {
	line-height: 1.6;
}

img {
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: top;
}

.is-error {
	border-color: #f24c3e !important;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
}

.header_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
}

.header__seprate {
	color: #000000;
	margin: 0 0.25rem;
}

.gift {
	background-color: #deecf8;
	padding: 50px 0;
	text-align: center;
}

.form__actions {
	padding: 40px 0;
	text-align: center;
}

.button {
	background: #ff776b;
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	border-radius: 50px;
	border: none;
	padding: 1rem 0;
	max-width: 525px;
	margin: 0 auto;
	width: 100%;
	cursor: pointer;
	position: relative;
}

a.button {
	display: block;
	text-decoration: none;
}

.button.button--submit {
	max-width: 650px;
}

.button::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 53%;
	transform: translateY(-50%) rotate(45deg);
	width: 20px;
	height: 20px;
	border-top: 5px solid currentColor;
	border-right: 5px solid currentColor;
}

.button--back {
	margin-top: 30px;
	background-color: rgb(146, 146, 146);
}

.button--back:hover {
	background-color: rgb(165, 163, 163) !important;
}

.button--back::after {
	left: 30px;
	transform: translateY(-50%) rotate(222deg);
}

.button:disabled,
.button.disabled {
	background-color: #ccc;
	color: #666;
	cursor: not-allowed;
	opacity: 0.6;
	pointer-events: none;
}

.button:hover {
	background-color: #f36c60;
}

.steps.notice {
	background: #fffbed;
	border-top: 1rem solid #fff3c5;
	text-align: center;
	padding: 40px 0;
}

.notice__title,
.entry__title {
	font-size: 42px;
	font-weight: bold;
	color: #094084;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 3rem;
}

.notice__title::before,
.notice__title::after {
	display: block;
	content: "";
	width: 42px;
	height: 5px;
	background: #094084;
}

.notice__title::before {
	transform: rotate(60deg) translateY(4px);
}

.notice__title::after {
	transform: rotate(-60deg) translateY(4px);
}

.notice__line {
	color: #094084;
	font-size: 30px;
	font-weight: bold;
	padding: 0 45px;
	margin: 40px 0;
	text-align: center;
}

.notice__box {
	border: 2px solid #094084;
	border-radius: 10px;
	background: #fff;
	margin: 40px 45px;
	padding: 1rem;
}

.notice__box p {
	margin: 0;
	color: #094084;
	font-weight: bold;
	font-size: 30px;
}

.entry {
	border-top: 1rem solid #b3d8f6;
	background: #deecf8;
	padding: 40px 0;
}

.entry__description {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

.form {
	margin: 0 45px;
}

.form__group {
	margin: 3rem 0;
}

.form__label {
	font-weight: bold;
	font-size: 2rem;
	display: flex;
	align-items: center;
}

.form__req {
	background: #f24c3d;
	color: #fff;
	border-radius: 5px;
	font-size: 1.25rem;
	padding: 2px 16px 4px;
	margin-left: 1rem;
	word-break: keep-all;
}

.form__control {
	margin-top: 1rem;
}

.input,
.select__field,
.checklist__item,
.radio__item,
.textarea {
	border: 2px solid #d1d1d6;
	border-radius: 15px;
	width: 100%;
	background: #fff;
	cursor: pointer;
	font-size: 1.5rem;
	padding: 2rem;
	box-sizing: border-box;
}

.input:hover,
.select__field:hover,
.checklist__item:hover,
.radio__item:hover {
	border-color: #439aa7;
}

textarea:focus,
input:focus,
select:focus {
	outline: none;
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: none;
}

.select:after {
	content: "";
	position: absolute;
	right: 2rem;
	top: calc(50% - 6px);
	width: 1rem;
	height: 1rem;
	border-left: 2px solid #d1d1d6;
	border-bottom: 2px solid #d1d1d6;
	transform: translateY(-50%) rotate(-45deg);
	pointer-events: none;
}

.form__row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.form__label--child {
	margin: 10px 0 0 15px;
	display: block;
}

.radio {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.radio__item input[type="radio"] {
	display: none;
}

.radio__item:has(input[type="radio"]:checked),
.checklist__item:has(input:checked) {
	border: 4px solid #439aa7 !important;
}

.form__note {
	font-size: 1.25rem;
	margin-top: 10px;
	font-weight: 700;
	display: block;
}

.form__textarea .form__label {
	justify-content: center;
}

#notes {
	white-space: pre-line;
	text-align: left;
	max-height: 500px;
	overflow-y: scroll;
}

#notes p {
	margin-top: 0;
}

.form__group--agreement {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.link {
	text-decoration: underline;
	color: #003aa0;
	font-weight: bold;
	display: block;
	margin-bottom: 1.5rem;
}

.checkbox {
	text-align: center;
	cursor: pointer;
}

.checkbox input[type="checkbox"] {
	accent-color: #ff5722;
	transform: scale(3);
	cursor: pointer;
	vertical-align: middle;
	margin-top: -15px;
}

.checkbox__label {
	font-size: 30px;
	font-weight: bold;
	padding-left: 1rem;
	display: inline-block;
}

.footer {
	padding: 30px 0;
	text-align: center;
	background-color: #ACACAC
}

.footer__links {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__link {
	color: #fff;
	text-decoration: none;
	margin: 0 5px;
}

a.footer__link:hover {
	text-decoration: underline;
}

.error-msg {
	color: #f24c3e;
	margin-top: 0.5rem;
}

.checklist {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.checklist__item input[type="checkbox"] {
	display: none;
}

.checklist__item input[type="checkbox"] {
	width: 18px;
	height: 18px;
	border-color: #9aa4af;
}

.select {
	position: relative;
}

.hidden {
	display: none !important;
}

input[type='checkbox'].readonly .input.readonly,
.input.input.readonly,
.select__field.readonly,
.checklist__item.readonly,
.radio__item.readonly,
.textarea.readonly {
	pointer-events: none;
	background-color: #ececec;
	cursor: not-allowed;
}

.checkbox.readonly {
	pointer-events: none;
	cursor: not-allowed;
}

input[type='checkbox'].readonly {
	opacity: 0.6;
}

.result--wrapper {
	border-top: 1rem solid #b3d9f6;
	background: #deecf8;
	min-height: calc(100vh - 250px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.result--title {
	font-size: 56px;
	font-weight: bold;
	color: #094084;
	margin: 0 0 40px;
}

.result--description {
	margin: 40px 0;
}

.form__row--second {
	margin-top: 1.5rem;
}

@media (min-width: 768px) {
	.br-sp {
		display: none;
	}

	.header__seprate {
		font-size: 34px;
		margin: 0 1rem;
	}

	.form__label--child {
		font-size: 1.5rem;
	}

	.link {
		font-size: 1.5rem;
	}

	.footer__link {
		margin: 0 10px;
		font-size: 1.5rem;
	}

	.error-msg {
		font-size: 1.5rem;
	}

	.result--description {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.header_wrap img {
		height: 28px;
	}

	.gift {
		padding: 25px 0;
	}

	.form__actions {
		padding: 20px 15px;
	}

	.button {
		font-size: 30px;
	}

	.notice__title,
	.entry__title {
		font-size: 1.5rem;
		margin: 0 0 1.5rem;
	}

	.notice__title::before,
	.notice__title::after {
		height: 3px;
	}

	.notice__title::before {
		transform: rotate(60deg) translateY(-5px) translateX(5px);
	}

	.notice__title::after {
		transform: rotate(-60deg) translateY(-10px) translateX(-5px);
	}

	.notice__line {
		font-size: 15px;
		padding: 0 15px;
		margin: 20px 0;
	}

	.notice__box {
		margin: 20px 15px;
	}

	.notice__box p {
		font-size: 15px;
	}

	.steps.notice,
	.entry {
		padding: 20px 0;
		border-top-width: 0.5rem;
	}

	.pc {
		display: none !important;
	}

	.form {
		margin: 0 15px;
	}

	.form__label {
		font-size: 1.25rem;
	}

	.form__req {
		font-size: 12px;
		padding: 2px 8px 4px;
	}

	.input,
	.select__field,
	.checklist__item,
	.radio__item,
	.textarea {
		font-size: 15px;
		padding: 1rem;
		border-radius: 10px;
	}

	.select:after {
		right: 1rem;
		top: calc(50% - 3px);
		width: 0.5rem;
		height: 0.5rem;
	}

	.form__label--child {
		margin: 10px 0 0 0;
	}

	.form__control {
		margin-top: 10px;
	}

	.form__row {
		grid-template-columns: 1fr;
	}

	.form__note {
		font-size: 11px;
	}

	.checkbox input[type="checkbox"] {
		transform: scale(2);
		margin-top: 0;
	}

	.checkbox__label {
		font-size: 1.125rem;
		padding-left: 0.5rem;
	}

	.form .form__actions {
		padding: 20px 0;
	}

	.button::after {
		right: 15px;
		width: 10px;
		height: 10px;
		border-top: 3px solid currentColor;
		border-right: 3px solid currentColor;
	}

	.footer {
		padding: 20px 0;
	}

	.result--title {
		font-size: 2rem;
	}

	.result--wrapper {
		border-top-width: 0.5rem;
		min-height: calc(100vh - 190px);
	}
}