@charset "utf-8";

/*******************************************

-------------------------------------------
お問い合わせ
********************************************/

main .contact_info {
	margin-top: 50px;
}
main .contact_info p {
	text-align: center;
	margin-top: 30px;
}
main .contact_info p:last-of-type {
	font-weight: 500;
}
main .contact_info p a {
	font-weight: 500;
	display: inline-block;
	margin: 5px 0;
}
main table.tbl_contact {
	width: 100%;
	max-width: 700px;
	margin: 30px auto 0;
}
main table.tbl_contact th,
main table.tbl_contact td {
	padding: 6px 0;
}
main table.tbl_contact th {
	width: 180px;
	font-weight: 500;
	padding-top: 13px;
}
main table.tbl_contact td {
}
main table.tbl_contact ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
main table.tbl_contact ul li {
	font-weight: 500;
}
main .privacycheck {
	text-align: center;
	margin-top: 50px;
}
main .privacycheck .check_in {
	display: inline-block;
	margin-left: 60px;
}
main .privacycheck .check_in p {
	font-weight: 500;
	color: #0e134a;
}
main .privacycheck .check_in ul {
}
main .privacycheck .check_in ul li {
	font-weight: 500;
	margin-top: 10px;
}
@media only screen and (max-width: 767px) {
	main .contact_info {
		margin-top: 30px;
	}
	main .contact_info p {
		margin-top: 20px;
	}
	main table.tbl_contact {
		margin-top: 20px;
		border-top: 1px dashed #ccc;
	}
	main table.tbl_contact th,
	main table.tbl_contact td {
		display: block;
		width: 100%;
		padding: 0;
	}
	main table.tbl_contact th {
		padding-top: 15px;
		font-weight: 700;
	}
	main table.tbl_contact td {
		padding: 10px 0 15px;
		border-bottom: 1px dashed #ccc;
	}
	main .privacycheck {
		margin-top: 30px;
	}
	main .privacycheck .check_in {
		margin-left: 0;
	}
	main .privacycheck .check_in p {
		font-weight: 700;
	}
}
@media only screen and (min-width: 380px) {
	main .privacycheck .check_in ul li br {
		display: none;
	}
}

/* チェックボックス装飾 */
.checkboxItem {
	display: flex;
	align-items: center;
	column-gap: 8px;
	width: fit-content;
	line-height: 1.2;
	cursor: pointer;
}
.checkboxItem:not(:last-of-type) {
	margin-bottom: 16px;
}

.checkbox {
	appearance: none;
	position: relative;
	width: 22px;
	height: 22px;
	border: 1px solid #ccc;
	cursor: pointer;
}
.checkbox:checked {
	border: 1px solid #00b0a8;
	background-color: #00b0a8;
}
.checkbox:checked::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 12px;
	height: 7px;
	border-bottom: 3px solid #fff;
	border-left: 3px solid #fff;
	transform: rotate(-45deg);
}

/* サンクスページ */
body.tanks main {
	padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
	body.tanks main {
		padding-bottom: 0;
	}
}