@charset "utf-8";
.page {
	font-size: 1.15em;
	margin: 0 auto 2em auto;
	max-width: 730px;
}
.page * {
}
.mailform {
	margin: 0 auto;
	padding: 2em 0;
	max-width: 100%;
	width: calc(100vw * 0.9);
}
.mailform .sp {
	display: none;
}
.mailform h1 {
	font-size: 1.55em;
	text-align: center;
}
.mailform h1 span {
	font-size: 0.55em;
}
.mailform h1 + div {
	margin-top: 2em;
}
.mailform h2 {
	font-size: 1.25em;
	margin: 0 0 1em 0;
}
.mailform > div,
.mailform > div > div {
	margin-top: 4em;
	transition: all 0.3s 0s ease;
}
.mailform dl {
	border-bottom: solid 1px #c2c2c2;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	margin: 0;
	width: 100%;
}
.mailform .confirm dl {
	display: block;
}
.mailform .confirm dt {
	background-color: transparent;
	padding: 0;
	width: 100%;
}
.mailform .confirm dd {
	min-height: inherit;
	padding: 0;
	width: 100%;
}
.mailform dl:first-of-type {
	margin-top: 1em;
}
.mailform dl:last-of-type {
	border-bottom: none;
}
.mailform dt {
	align-items: center;
	background-color: var(--page-light-gray);
	display: flex;
	flex-wrap: wrap;
	font-weight: bold;
	padding: 1em;
	width: 25%;
}
.mailform dd {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	min-height: 5em;
	margin: 0;
	padding: 1.5em 0 1.5em 1.5em;
	width: 75%;
}
.mailform dd p {
	margin: 0.5em 0 !important;
}
.mailform dd p:first-child {
	margin-top: 0;
}
.mailform dd p:last-child {
	margin-bottom: 0;
}
.mailform dt.required::after {
	content: "*";
	color: var(--page-red);
	font-weight: normal;
	font-size: 0.8em;
	margin: 0 0 0 0.3em;
}
.mailform .pc_info > div {
	margin-bottom: 1em;
}
.mailform #contact_confirm {
	margin: 0;
}
.mailform #contact_confirm dl {
	border-bottom: solid 1px #c2c2c2;
	margin-top: 0;
}
.mailform .acc {
	align-items: center;
	background-color: var(--page-black);
	border-radius: 10px;
	color: #FFF;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	font-size: 1.15em;
	padding: 0.35em 1em;
}
.mailform .acc::after {
	content: "";
	background-image: url("select_arrow_w.svg");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 1.7em;
	height: 0.8em;
}
.mailform .acc.close::after {
	transform: rotateX(180deg);
}
.mailform .acc + div {
	margin-top: 1em;
}
.mailform p.close {
	text-align: right;
	margin: 1em 0 0 0;
}
.mailform .caution {
	border: solid 1px var(--page-red);
	padding: 1.5em;
	margin: 2em 0 0 0 !important;
}

/* フォーム関連 */
.mailform input[type="email"],
.mailform input[type="tel"],
.mailform input[type="text"],
.mailform input[type="button"],
.mailform textarea {
	width: 100%;
}
.mailform input[type="radio"],
.mailform input[type="checkbox"] {
	margin-right: 0.35em;
}
.mailform select {
	appearance: none;
	background-image: url(select_arrow.svg);
	background-position: center right 0.5em;
	background-repeat: no-repeat;
	background-size: 1em;
	border: solid 1px var(--page-black);
	border-radius: 5px;
	font-size: 1em;
	margin: 0.3em 0;
	padding: 0.15em 0.3em;
	width: 100%;
}
.mailform select option {
}
.mailform input[type="button"],
.mailform input[type="email"],
.mailform input[type="tel"],
.mailform input[type="text"],
.mailform button,
.mailform textarea {
	border: solid 1px var(--page-black);
	border-radius: 5px;
	display: block;
	font-size: 1em;
	padding: 0.15em 0.5em;
	margin: 0 0.5em 0 0;
	width: 100%;
}
.mailform label {
	margin: 0.35em 0;
	width: 100%;
}
.mailform .submit {
	background: linear-gradient(rgba(0,73,214,1),rgba(0,73,214,1));
	border-radius: 30px;
	border-bottom: solid 6px #002291;
	color: #FFF;
	cursor: pointer;
	display: block;
	font-size: 1.75em;
	font-weight: bold;
	margin: 2em auto 0 auto;
	padding: 0.25em 0;
	text-align: center;
	text-shadow: none;
	width: 40%;
}
.mailform .reset {
	background-color: transparent;
	border: none;
	color: var(--page-blue);
	display: block;
	margin: 1.5em auto 0 auto;
	text-align: center;
	text-decoration: underline;
}