@charset "UTF-8";

@media print, screen and (min-width: 768px) {
	.c-form_nav_wrap {
		display: flex;
		flex-wrap: wrap;
	}
}

.c-form_nav_wrap--lg:not(:last-child) {
	margin-bottom: 20px;
}

@media print, screen and (min-width: 768px) {
	.c-form_nav_wrap--lg:not(:last-child) {
		margin-bottom: 60px;
	}
}

.c-form_nav_list:not(:last-child) {
	margin-bottom: 20px;
}

@media print, screen and (min-width: 768px) {
	.c-form_nav_list {
		width: calc((100% - 90px) / 4);
	}
	.c-form_nav_list:not(:last-child) {
		margin-bottom: 0;
	}
	.c-form_nav_list:not(:nth-child(4n)) {
		margin-right: 30px;
	}
	.c-form_nav_list:nth-child(n + 54) {
		margin-top: 30px;
	}
}

@media print, screen and (min-width: 768px) {
	.c-form_nav_list--lg {
		width: calc(50% - 30px);
	}
	.c-form_nav_list--lg .c-form_nav_link {
		padding: 45px 50px;
	}
	.c-form_nav_list--lg:not(:nth-child(3n)) {
		margin-right: 0;
	}
	.c-form_nav_list--lg:nth-child(odd) {
		margin-right: 60px;
	}
	.c-form_nav_list--lg:nth-child(n + 4) {
		margin-top: 0;
	}
	.c-form_nav_list--lg:nth-child(n + 3) {
		margin-top: 60px;
	}
}

.c-form_nav_link {
	display: block;
	padding: 20px;
	width: 100%;
	height: 100%;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	transition-property: box-shadow;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}

.c-form_nav_link:hover {
	box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.6);
}

@media print, screen and (min-width: 768px) {
	.c-form_nav_link {
		padding: 35px 20px;
	}
}

.c-form_nav_title {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.7;
}

.c-form_nav_title:not(:last-child) {
	margin-bottom: 20px;
}

@media print, screen and (min-width: 768px) {
	.c-form_nav_title:not(:last-child) {
		margin-bottom: 45px;
	}
}

.c-form_nav_icon {
	width: 55px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
}

.c-form_nav_icon img {
	max-width: 100%;
	max-height: 100%;
}

@media print, screen and (min-width: 768px) {
	.c-form_nav_icon {
		width: 110px;
		height: 110px;
		margin-bottom: 40px;
	}
}

.c-form_nav_text {
	font-size: 1.4rem;
	line-height: 1.8;
}

.c-form_desc {
	border: 1px solid #ccc;
	padding: 15px 20px;
}

@media print, screen and (min-width: 768px) {
	.c-form_desc {
		padding: 40px 30px;
	}
}

.c-form_inner {
	max-width: 870px;
	margin-left: auto;
	margin-right: auto;
}

.c-form_row {
	display: block;
}

.c-form_row:not(:first-child) {
	margin-top: 30px;
}

@media print, screen and (min-width: 768px) {
	.c-form_row {
		display: flex;
		align-items: center;
	}
	.c-form_row:not(:first-child) {
		margin-top: 40px;
	}
}

.c-form_title {
	font-size: 1.5rem;
	display: inline-flex;
	align-items: center;
	margin-bottom: 10px;
	font-weight: bold;
}

@media print, screen and (min-width: 768px) {
	.c-form_title {
		font-weight: normal;
		width: 300px;
		flex: 0 0 300px;
		align-self: flex-start;
		margin-top: 12px;
		margin-bottom: 0;
	}
}

.c-form_require {
	color: #fff;
	font-size: 1.3rem;
	line-height: 1;
	padding: 5px 8px;
	border-radius: 3px;
	background-color: #cc4a61;
	text-align: center;
	display: inline-block;
	margin-left: 15px;
	flex: 0 0 auto;
}

@media print, screen and (min-width: 768px) {
	.c-form_require {
		margin: 0 15px;
	}
}

@media print, screen and (min-width: 768px) {
	.c-form_data {
		flex: 1 1 auto;
	}
}

.c-form_message {
	font-weight: bold;
	color: #cc4a61;
	display: block;
}

.c-form_input {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 12px 15px;
	width: 100%;
	font-size: 1.5rem;
	color: #666;
}

.c-form_input_20 {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 12px 15px;
	width: 20%;
	font-size: 1.5rem;
	color: #666;
}

.c-form_select {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 16px 15px;
	font-size: 1.5rem;
	width: 250px;
	background-image: url(/common/images/icon/icon-select.svg);
	background-size: 15px 15px;
	background-repeat: no-repeat;
	background-position: center right 15px;
	color: #666;
}

.c-form_checkbox {
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #ccc;
	margin-right: 10px;
	background-color: #fff;
}

.c-form_checkbox:checked::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-100%) rotate(-45deg);
	content: "";
	width: 20px;
	height: 10px;
	border-left: 2px solid #666;
	border-bottom: 2px solid #666;
}

.c-form_radio {
	margin-right: 5px;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	inline-size: 2rem;
	block-size: 2rem;
	accent-color: #666;
}

.c-form_textarea {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 18px 15px;
	font-size: 1.5rem;
	color: #666;
	width: 100%;
}

.c-form_input.error,
.c-form_select.error,
.c-form_textarea.error {
	border-color: #cc4a61;
}

.c-form_button {
	margin-top: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.c-form_button .c-btn {
	width: 300px;
}

.c-form_button .c-btn:not(:first-child) {
	margin-top: 20px;
}

@media print, screen and (min-width: 768px) {
	.c-form_button {
		margin-top: 55px;
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	.c-form_button .c-btn {
		margin: 0 40px;
	}
	.c-form_button .c-btn:not(:first-child) {
		margin-top: 0;
	}
}

.c-form_header_error {
	border: 2px solid #cc4a61;
	background-color: #fff;
	font-weight: bold;
	padding: 20px;
	color: #cc4a61;
	max-width: 870px;
	margin: 0 auto 30px;
}

@media print, screen and (min-width: 768px) {
	.c-form_header_error {
		margin-bottom: 60px;
	}
}

.c-form_privacy {
	margin-top: 25px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 70px;
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 20px;
}

@media print, screen and (min-width: 768px) {
	.c-form_privacy {
		margin-top: 55px;
	}
}

.c-form_privacy .c-form_message {
	width: 100%;
}

.c-form_spiral {
	margin-top: 30px;
	display: flex;
}

@media print, screen and (min-width: 768px) {
	.c-form_spiral {
	}
}

.c-form_spiral_logo {
	display: block;
	text-align: center;
	margin-top: 10px;
	transition-property: opacity;
	transition-timing-function: ease-out;
	transition-duration: 0.2s;
}

.c-form_spiral_logo:hover {
	opacity: 0.7;
}

.c-form_spiral_logo img {
	width: 134px;
}

@media print, screen and (min-width: 768px) {
	.c-form_spiral_logo {
		margin-top: 0;
		margin-left: 10px;
		width: 134px;
		flex: 0 0 134px;
	}
}

.c-form_policy_text {
	line-height: 1.2;
}

.c-form_spiral_text {
	line-height: 1.2;
	width: fit-content;
}

@media print, screen and (min-width: 768px) {
	.c-form_spiral_text {
		margin-right: 20px;
	}
}

@media print, screen and (min-width: 768px) {
	.c-form_notice {
		padding: 0 30px 30px;
		text-align: center;
	}
}

.c-form--common .c-form_message {
	display: none;
}

.c-form--common .c-form_input_20 {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 12px 15px;
	width: 20%;
	font-size: 1.5rem;
	color: #666;
}

.c-form--common .c-form_title {
	font-weight: bold;
}

.c-form--common .c-form_require {
	font-weight: bold;
}

/*** ipad_rental用に作成されたスタイル？違和感あるので不使用に。
.c-form--common .c-form_checkboxWrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.c-form--common .c-form_checkbox {
	position: relative;
	width: auto;
	height: auto;
	border: none;
	margin-right: 0;
	background-color: transparent;
}

.c-form--common .c-form_checkbox input {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
}

.c-form--common .c-form_checkbox input:checked + label::before {
	background-color: #235ba5;
}

.c-form--common .c-form_checkbox label {
	display: block;
	position: relative;
	line-height: 1.6;
	font-size: 1.5rem;
	cursor: pointer;
}

.c-form--common .c-form_checkbox label::before {
	display: inline-block;
	content: "";
	width: 15px;
	height: 15px;
	margin-right: 8px;
	background-color: #fff;
	border: 1px solid #ccc;
	vertical-align: -2px;
}
***/
