@charset "UTF-8";
.breadcrumb {
	margin-top: 80px
}

.asterisk::before {
	content: "*";
	color: var(--white3);
	font-size: 130%;
	vertical-align: text-top;
	margin-right: 3px
}

.non-asterisk::before {
	content: "";
	font-size: 130%;
	vertical-align: text-top
}

.mail_contact {
	max-width: 950px;
	margin: 0 auto
}

@media not all and (min-width: 950px) {
	.mail_contact {
		padding: 0 20px
	}
}

.mail_contact svg {
	width: 35px;
	height: auto;
	margin-right: 3px;
	vertical-align: middle
}

.mail_contact table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%
}

.mail_contact table td {
	padding: 20px 0
}

.mail_contact table td:nth-child(1) {
	width: 215px;
	font-size: 1.05em;
	text-align: left
}

.mail_contact table td:nth-child(2) input[type="text"],
.mail_contact table td:nth-child(2) input[type="email"],
.mail_contact table td:nth-child(2) input[type="number"] {
	font-family: inherit;
	width: 100%;
	height: 40px;
	font-size: 1.05em;
	border: 1px solid;
	border-radius: 3px
}

.mail_contact table td:nth-child(2) textarea {
	font-family: inherit;
	width: 100%;
	font-size: 1.05em;
	border: 1px solid;
	border-radius: 3px
}

.mail_contact table td:nth-child(2) input[type="text"]:focus,
.mail_contact table td:nth-child(2) input[type="email"]:focus,
.mail_contact table td:nth-child(2) input[type="number"]:focus,
.mail_contact table td:nth-child(2) textarea:focus {
	box-shadow: 0 0 7px var(--main-color-2);
	outline: none
}

.mail_contact table #spId1 {
	color: var(--white3)
}

.mail_contact input[type="checkbox"] {
	margin: 4px 0 0;
	line-height: normal;
	width: 20px;
	height: 20px;
	vertical-align: baseline
}

.mail_contact .privacypolicy {
	font-size: 1.05em;
	margin-top: 10px
}

@media not all and (min-width: 600px) {
	.mail_contact {
		margin: 20px auto
	}

	.mail_contact table td:nth-child(1) {
		width: inherit;
		float: left;
		padding-right: 20px;
		padding: 10px 20px 0 0
	}

	.mail_contact table td:nth-child(2) {
		display: block;
		padding: 0px 0 20px
	}
}

@media not all and (min-width: 500px) {
	.mail_contact table td:nth-child(1) {
		font-weight: 500
	}

	.mail_contact table td:nth-child(2) {
		padding: 0px 0 10px
	}
}

/* モーダルログ */
#modalOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
	visibility: hidden;
	opacity: 0
}

.modal-log {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	max-width: 550px
}

.modal-log #modalMessage {
	text-align: left
}

.modal-log button {
	margin-top: 20px;
	background-color: #87cefa;
	padding: 8px 17px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-align: center
}

.modal-log button:hover {
	background-color: #000;
	color: #fff;
	transition: 0.3s
}

@media not all and (min-width: 600px) {
	.modal-log {
		max-width: 90%
	}
}

/* ボタン */
#button {
	display: block;
	padding: 15px 0;
	font-size: 1.13em;
	text-decoration: none;
	color: #000;
	background-color: #87cefa;
	border: none;
	margin: 30px auto 0;
	width: 300px;
	border-radius: 20px;
	cursor: pointer
}

#button:hover {
	background-color: #000;
	color: #fff;
	transition: 0.3s
}

@media not all and (min-width: 500px) {
	#button {
		padding: 10px 0;
		border: none;
		margin: 20px auto 0;
		width: 260px
	}
}