@charset "UTF-8";

/* -----------------------------------------------------------------------------

プレースホルダーのスタイル

----------------------------------------------------------------------------- */
::placeholder {
	color: var(--cc-gray_line-A); /* プレースホルダーの文字色 */
}


/* -----------------------------------------------------------------------------

入力ボックス

----------------------------------------------------------------------------- */
.textWrap, .telWrap, .emailWrap, .textareaWrap, .selectWrap {
	input, textarea, select {
		display: flex;
		align-items: center;
		padding: 1.6rem 1rem;
		width: 100%;
		background-color: var(--cc-gray_back-A);
		/* border: 1px solid #000; */
		box-sizing: border-box;
		border-radius: 0;
		transition: 0.2s;
		@media (width > 640px) {/* PC */
			font-size: 1.6rem;
		}
		@media (width <= 640px) {/* SP */
			font-size: 16px;
		}
		&:focus {
			box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
		}
	}
	/* １行テキスト・電話・メールアドレス */
	input {
		@media (width > 640px) {/* PC */
		}
		@media (width <= 640px) {/* SP */
		}
	}
	/* テキストエリア */
	textarea {
		@media (width > 640px) {/* PC */
			padding: 2rem 1rem;
			height: 24rem;
		}
		@media (width <= 640px) {/* SP */
			padding: 2rem 1rem;
			height: 15rem;
		}
	}
	/* プルダウン */
	.select {
		position: relative;
		display: inline-block;
		&:after {
			content: "";
			display: block;
			position: absolute;
			right: 2.4rem;
			top: 50%;
			margin-top: -2px;
			width: 0.8rem;
			height: 0.8rem;
			border-right: 1px solid var(--cc-black-A);
			border-bottom: 1px solid var(--cc-black-A);
			transform: rotate(45deg);
			transition: .2s;
		}
		select {
			color: #000;
			@media (width > 640px) {/* PC */
				min-width: 10rem;
			}
			@media (width <= 640px) {/* SP */
				min-width: 7rem;
			}
		}
		option {
			width: 100%;
			white-space: normal;
			color: var(--cc-gray_text-A);
		}
		optgroup[label] {
			display: block;
		}
		optgroup[label=""] {
			@media (width > 640px) {/* PC */
				display: none;
			}
			@media (width <= 640px) {/* SP */
				display: block;
			}
		}
	}
}


/* -----------------------------------------------------------------------------

チェックボックス・ラジオボタン

----------------------------------------------------------------------------- */
.checkboxWrap, .radioWrap {
	display: flex;
	flex-wrap: wrap;
	@media (width > 640px) {/* PC */
		margin-left: 1.6rem;
	}
	@media (width <= 640px) {/* SP */
		gap: 2rem;
	}
	.checkbox, .radio {
		display: flex;
		align-items: center;
		position: relative;
		cursor: pointer;
		@media (width > 640px) {/* PC */
			margin-right: 4rem;
			padding: 1rem 0 0.5rem;
		}
		@media (width <= 640px) {/* SP */
		}
		input {
			position: relative;
			border: 1px solid var(--cc-gray_line-A);
			width: 1.6rem;
			height: 1.6rem;
			margin-right: 0.8rem;
			&:after {
				content: "";
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				transform: scale(0);
				background-color: #000;
				transition: 0.2s;
			}
			&:checked {/* 選択されたとき */
				&:after {
					transform: scale(0.6);
				}
			}
		}
		label {
			@media (width > 640px) {/* PC */
				padding: 1rem 0;
			}
			@media (width <= 640px) {/* SP */
			}
		}
		> span {
			color: var(--cc-gray_text-A);
			transition: .2s;
			@media (width > 640px) {/* PC */
				font-size: 1.6rem;
			}
			@media (width <= 640px) {/* SP */
				font-size: 1.4rem;
			}
		}
	}
	.radio {
		input {
			border-radius: 50%;
			&:after {
				border-radius: 50%;
			}
		}
	}
}


/* -----------------------------------------------------------------------------

メールサジェスト

----------------------------------------------------------------------------- */
#CheckMail {
	word-break: break-all;
	border-bottom: 1px solid #000;
	display: flex;
	align-items: center;
	line-height: 1;
	@media (width > 640px) {/* PC */
		font-size: 1.6rem;
		height: 5rem;
		margin-top: 1rem;
	}
	@media (width <= 640px) {/* SP */
		font-size: 1.5rem;
		height: 5rem;
		margin-top: 1rem;
	}
	&:before {
		content: "確認用：";
		white-space: pre;
		@media (width > 640px) {/* PC */
		}
		@media (width <= 640px) {/* SP */
		}
	}
}


/* -----------------------------------------------------------------------------

ファイルアップロード

----------------------------------------------------------------------------- */
.uploadWrap {
	.uploadareaBlock {
		font-size: 1.4rem;
		+ .uploadareaBlock {
			margin-top: 40px;
		}
		&.disable {
			display: none;
		}
	}
	.inputFileareaWrap {
		display: block;
	}
	.inputFilearea {
		position: relative;
		display: inline-block;
		+ .inputFilearea {
			margin-top: 10px;
		}
	}
	[type="file"] {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		cursor: pointer;
		opacity: 0;
		z-index: 1;
		@media(hover) {
			& ~ .uploadname {
				opacity: 0.4;
				&:before {
					left: 3px;
				}
			}
		}
	}
	.uploadname {
		display: inline-block;
		font-size: 1.6rem;
		font-weight: bold;
		transition: 0.2s;
		padding: 10px 10px 10px 0;
		border: 1px solid #000;
		padding-left: 10px;
		max-width: 100%;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		&:before {
			content: "";
			display: inline-block;
			position: relative;
			vertical-align: middle;
			border-left: 8px solid #000;
			border-right: 8px solid transparent;
			border-top: 5px solid transparent;
			border-bottom: 5px solid transparent;
		}
	}
	.red {
		color: #FF0004;
	}
	.close {
		position: absolute;
		top: -8px;
		right: -8px;
		cursor: pointer;
		display: inline-block;
		vertical-align: middle;
		border-radius: 50%;
		background-color: #000;
		width: 15px;
		height: 15px;
		z-index: 2;
		display: none;
		&.active {
			display: block;
		}
		@media(hover) {
			opacity: .5;
			transform: translateY(2px);
		}
		&:before,
		&:after {
			content: '';
			width: 9px;
			height: 2px;
			display: block;
			position: absolute;
			margin: auto;
			top: 0;
			bottom: 0;
			right: 0;
			left: 0;
			background-color: #fff;
		}
		&:before {
			transform: rotate(45deg);
		}
		&:after {
			transform: rotate(-45deg);
		}
	}
	.preview {
		width: 200px;
		height: 200px;
		background-size: contain;
		background-position: center center;
		background-color: #FFF;
		background-repeat: no-repeat;
		border: 1px solid #8F8F8F;
		box-sizing: border-box;
		position: relative;
		&[data-inputtype=""] {
			display: none;
		}
		&:after {
			content: attr(data-inputtype);
			font-size: 1.8rem;
			font-weight: bold;
			position: absolute;
			text-align: center;
			top: 50%;
			left: 0;
			width: 100%;
			transform: translateY(-50%);
			color: #000;
		}
		&[style*="background-image"]:after {
			display: none;
		}
	}
	.uploadView {
		width: 32%;
		padding-top: 30%;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		display: inline-block;
		vertical-align: top;
		background-color: #FFF;
		box-sizing: border-box;
		border: 5px solid #F4C8A6;
		border-radius: 3px;
		+ .uploadView {
			margin-left: 1%;
		}
		&[data-file-extension] {
			position: relative;
			&:after {
				content: attr(data-file-extension);
				display: inline-block;
				position: absolute;
				top: 50%;
				bottom: 50%;
				right: 0;
				left: 0;
				margin: auto;
				text-align: center;
				vertical-align: middle;
				font-size: 2.5rem;
				font-weight: bolder;
				color: #9F9F9F;
				letter-spacing: 2px;
				transform: translateY(-15px);
			}
		}
	}
	.uploadnote01 {
		color: #DF4547;
		font-size: 1.4rem;
	}
}


/* -----------------------------------------------------------------------------

formレイアウト

----------------------------------------------------------------------------- */
.formArea {
	@media (width > 640px) {/* PC */
		margin-bottom: 16rem;
	}
	@media (width <= 640px) {/* SP */
		margin-bottom: 6.4rem;
	}
}
.form-header {
	background-color: var(--cc-white-A);
	@media (width > 640px) {/* PC */
		padding: 16rem 0 12rem;
	}
	@media (width <= 640px) {/* SP */
		padding: 8rem 0 5.6rem;
	}
}


/* -----------------------------------------------------------------------------

stepレイアウト

----------------------------------------------------------------------------- */
.form-stepArea {
	.step {
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: var(--cc-gray_line-A);
		@media (width > 640px) {/* PC */
			margin: 0 auto;
			width: fit-content;
		}
		@media (width <= 640px) {/* SP */
			width: 100%;
		}
	}
	.step_box {
		padding: 0.6rem 2.4rem;
		background-color: var(--cc-white-A);
		border: 1px solid var(--cc-gray_line-A);
		color: var(--cc-gray_line-A);
		font-size: 1.3rem;
		letter-spacing: 0.12em;
		@media (width > 640px) {/* PC */
			width: 19.4rem;
			line-height: 1.8;
		}
		@media (width <= 640px) {/* SP */
			width: 12.0rem;
			line-height: 1; 
			span {
				font-size: 1rem;
			}
		}
		
	}
	.step_box:not(:first-child) {
		@media (width > 640px) {/* PC */
			margin-left: -0.9rem;
		}
		@media (width <= 640px) {/* SP */
			margin-left: -0.9rem;
		}
	}
	.step_box.form-current {
		background-color: var(--cc-gold-A);
		color: var(--cc-white-A);
	}
	.step_txt {
		display: flex;
		@media (width > 640px) {/* PC */
			justify-content: space-between;
		}
		@media (width <= 640px) {/* SP */
			flex-direction: column;
			justify-content: center;
			align-items: center;
			gap: 0.4rem;
		}
		span {
			display: block;
		}
	}
	.step_box:first-child {
		@media (width > 640px) {/* PC */
			clip-path: polygon(0 0, 18.4rem 0, 100% 50%, 18.4rem 100%, 0 100%);
		}
		@media (width <= 640px) {/* SP */
			clip-path: polygon(0 0, 10.6rem 0, 100% 50%, 10.6rem 100%, 0 100%);
		}
	}
	.step_box:nth-child(2) {
		@media (width > 640px) {/* PC */
			clip-path: polygon(18.4rem 0, 100% 50%, 18.4rem 100%, 0 100% , 1rem 50%, 0 0);
		}
		@media (width <= 640px) {/* SP */
			clip-path: polygon(10.6rem 0, 100% 50%, 10.6rem 100%, 0 100% , 1rem 50%, 0 0);
		}
	}
	.step_box:last-child {
		@media (width > 640px) {/* PC */
			clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100% , 1rem 50%);
		}
		@media (width <= 640px) {/* SP */
			clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100% , 1rem 50%);
		}
	}
}


/* -----------------------------------------------------------------------------

dlレイアウト

----------------------------------------------------------------------------- */
.formlistWrap {
	margin: auto;
	@media (width > 640px) {/* PC */
		width: 100%;
		max-width: 96rem;
		display: table;
		margin-top: 4.8rem;
		border-top: 1px solid var(--cc-gray_line-A);
	}
	@media (width <= 640px) {/* SP */
		display: block;
		border-bottom: 1px solid var(--cc-gray_line-A);
	}
	.formlist {
		@media (width > 640px) {/* PC */
			display: table-row;
		}
		@media (width <= 640px) {/* SP */
			display: block;
			border-top: 1px solid var(--cc-gray_line-A);
			margin-top: 2rem;
			padding: 3.2rem 0;
		}
		&[data-form-view] {
			display: none !important;
		}
		&[data-form-view-ok] {
			@media (width > 640px) {/* PC */
				display: table-row !important;
			}
			@media (width <= 640px) {/* SP */
				display: block !important;
			}
		}
		.formlistTit ,
		.formlistContent {
			font-size: 1.6rem;
			box-sizing: border-box;
			@media (width > 640px) {/* PC */
				display: table-cell;
				border-bottom: 1px solid var(--cc-gray_line-A);
				padding: 4rem 0;
			}
			@media (width <= 640px) {/* SP */
				display: block;
				border-bottom: none;
			}
		}
		.formlistTit {
			line-height: 1.8;
			letter-spacing: 0.16em;
			@media (width > 640px) {/* PC */
				width: 33.2rem;
				vertical-align: middle;
				font-size: 1.6rem;
			}
			@media (width <= 640px) {/* SP */
				width: 100%;
				font-size: 1.5rem;
				margin-bottom: 1.2rem;
			}
		}
		.error {
			color: #FF0004;
			font-size: 1.6rem;
			margin-top: 10px;
			b {
				margin-right: 5px;
				&:before {
					content: "【";
				}
				&:after {
					content: "】";
				}
			}
		}
		&[data-form-hissu] ,
		&[data-form-hissuteam-hissu] {
			.formlistTit {
				span {
						display: flex;
						margin-right: 1.6rem;
						@media (width > 640px) {/* PC */
							justify-content: space-between;
							align-items: center;
							padding-top: 0.8rem;
						}
						@media (width <= 640px) {/* SP */
							justify-content: flex-start;
							align-items: center;
						}
					&:after {
						content: "必須";
						background-color: var(--cc-gold-A);
						display: flex;
						justify-content: center;
						align-items: center;
						width: 6rem;
						height: 2rem;
						color: #FFF;
						font-size: 1.3rem;
						font-family:var(--ff-default);
						line-height: 1;
						letter-spacing: 0.12em;
						/* vertical-align: middle; */
						@media (width > 640px) {/* PC */
						}
						@media (width <= 640px) {/* SP */
							float: none;
							margin-left: 1.6rem;
						}
					}
				}
			}
		}

		.form-item {
			vertical-align: top;
			span {
				padding-top: 0;
			}
		}

		/* 生年月日 */
		&[data-form-unique="text_birth_yyyy"] .formlistContent {
			display: flex;
			@media (width > 640px) {/* PC */
				gap: 0 1.5rem;
				padding: 4.2rem 0;
			}
			@media (width <= 640px) {/* SP */
				gap: 0 1.5rem;
			}
			.text_birth_yyyy ,
			.text_birth_mm ,
			.text_birth_dd {
				display: flex;
				align-items: center;
				select, input {
					@media (width > 640px) {/* PC */
						margin-right: 0.5rem;
					}
					@media (width <= 640px) {/* SP */
						margin-right: 0.5rem;
					}
				}
			}
			.text_birth_yyyy {
				@media (width > 640px) {/* PC */
				}
				@media (width <= 640px) {/* SP */
					width: 10rem;
				}
			}
		}

		/* 郵便番号 */
		&[data-form-unique="text_postal"] .formlistContent {
			.text_postal {
				display: flex;
				align-items: center;
				input {
					margin-left: 0.8rem;
					color: var(--cc-black-A);
				}
			}
		}

		/* 住所 */
		&[data-form-unique="select_pref"] .formlistTit {
			@media (width > 640px) {/* PC */
				vertical-align: top;
			}
			@media (width <= 640px) {/* SP */
			}
		}
		&[data-form-unique="select_pref"] .formlistContent {
			display: flex;
			flex-direction: column;
			@media (width > 640px) {/* PC */
				gap: 1.5rem 0;
			}
			@media (width <= 640px) {/* SP */
			}
			.select_pref ,
			.text_postal_address {
				display: flex;
				align-items: center;
				line-height:2;
				letter-spacing:.10em;
				@media (width > 640px) {/* PC */
				}
				@media (width <= 640px) {/* SP */
					align-items: flex-start;
					flex-direction: column;
				}
				select { 
					color: var(--cc-black-A) !important;
					@media (width > 640px) {/* PC */
						width: 32rem;
						margin-left: 2.4rem;
						color: var(--cc-gray_text-A);
						font-size: 1.4rem;
					}
					@media (width <= 640px) {/* SP */
						width: 28rem;
						font-size: 1.3rem;
					}
				}
				input {
					color: var(--cc-black-A);
				}			}
			.select_pref {
				@media (width > 640px) {/* PC */
					margin-bottom: 1.6rem;
				}
				@media (width <= 640px) {/* SP */
					margin-bottom: 0.8rem;
				}
			}
			.text_postal_address {
				input {
					@media (width > 640px) {/* PC */
						margin-left: 2.4rem;
						width: 87%;
					}
					@media (width <= 640px) {/* SP */
					}
				}
			}
		}

		/* メールアドレス */
		#CheckMail {
			display: none;
		}

		/* レストラン*/
		&[data-form-unique="select_restaurant"] .select {
			width: 100%;
		}

		/* 職種 */
		&[data-form-unique="select_occupation"] .select {
			width: 100%;
		}

	}
}
/* プライバシーポリシーの同意 */
.formlist[data-form-unique="checkbox_privacy"] .formlistTit {
	display: none;
}
.form-privacy {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 6.4rem 0 4rem;
	width: 100%;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: 0.16em;
	input {
		position: relative;
		margin-bottom: 0.8rem;
		width: 1.8rem;
		height: 1.8rem;
		border: 1px solid var(--cc-black-A);
	}
	label {
		display: block;
		margin-left: 1.2rem;
		margin-bottom: 0.8rem;
		flex-shrink: 0;
		cursor: pointer;
	}
	a {
		text-decoration: underline;
	}
	.checkbox {
		margin-right: 0;
	}
	.nyuuryokuDame.active {
		width: 100%;
		left: 50%;
		transform: translateX(-50%);
	}
}

.form-privacy .checkbox_privacy label > input {
	&::after {
		background-color: transparent;
	}
}

.form-privacy .checkbox_privacy[data-form-complete] label > input {
	&::after {
		content: "";
		position: absolute;
		top: -80%;
		left: 20%;
		width: 1.2rem;
		height: 2.4rem;
		background-color: transparent;
		border-bottom: 1px solid #000;
		border-right: 1px solid #000;
		transform: rotate(45deg);
	}
}


/* -----------------------------------------------------------------------------

エラー

----------------------------------------------------------------------------- */
.errorWrap {
	max-width: 500px;
	margin: auto;
	margin-top: 150px;
	background-color: #DF4547;
	border-radius: 5px;
	box-sizing: border-box;
	margin-bottom: 40px;
	padding: 10px;
	@media (width > 640px) {/* PC */
		width: 100%;
	}
	@media (width <= 640px) {/* SP */
		width: 90%;
	}
	.errorList {
		display: inline-block;
		li {
			color: #FFF;
			padding-left: 14px;
			text-align: left;
			@media (width > 640px) {/* PC */
				font-size: 1.6rem;
			}
			@media (width <= 640px) {/* SP */
				font-size: 1.4rem;
			}
			&:before {
				content: "・";
				margin-left: -14px;
			}
		}
		b {
			margin-right: 5px;
			&:before {
				content: "【";
			}
			&:after {
				content: "】";
			}
		}
	}
}


/* -----------------------------------------------------------------------------

確認画面

----------------------------------------------------------------------------- */
.formArea.confirm {
	.result,
	.noresult {
		display: inline-block;
		border-radius: 3px;
		font-size: 1.4rem;
		padding: 2px 15px;
		+ .result,
		+ .noresult {
			margin-left: 5px;
		}
		.inputappend,
		.inputprepend {
			display: inline-block;
		}
	}
	.noresult {
		background-color: #EAEAEA;
	}
	.uploadresult {
		display: block;
		background-color: transparent;
		&.noresult {
			display: inline-block;
		}
	}
	.uploadView {
		width: 200px;
		height: 200px;
		display: block;
		background-size: contain;
		background-position: center center;
		background-color: #FFF;
		background-repeat: no-repeat;
		border: 1px solid #8F8F8F;
		box-sizing: border-box;
		position: relative;
		&[data-inputtype=""] {
			display: none;
		}
		&[style*="background-image"]:after {
			display: none;
		}
		&:after {
			content: attr(data-inputtype);
			font-size: 1.4rem;
			font-weight: bold;
			position: absolute;
			text-align: center;
			top: 50%;
			left: 0;
			width: 100%;
			transform: translateY(-50%);
			color: #000;
		}

	}
}


/* -----------------------------------------------------------------------------

送信ボタン

----------------------------------------------------------------------------- */
.formbtnarea {
	text-align: center;
	display: flex;
	justify-content: center;
	@media (width > 640px) {/* PC */
		margin-top: 3rem;
		gap: 0 2rem;
	}
	@media (width <= 640px) {/* SP */
		flex-direction: column-reverse;
		margin-top: 1.5rem;
	}
	.formbtn {
		cursor: pointer;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		@media (width > 640px) {/* PC */
			width: 30.0rem;
			height: 6rem;
		}
		@media (width <= 640px) {/* SP */
			width: 80%;
			height: 44px;
			margin: auto;
		}
		input {
			cursor: pointer;
			@media (width > 640px) {/* PC */
				font-size: 1.7rem;
				letter-spacing: 0.2rem;
			}
			@media (width <= 640px) {/* SP */
				font-size: 1.35rem;
			}
		}
		&.confirm {
			background-color: var(--cc-black-A);
			@media (width > 640px) {/* PC */
			}
			@media (width <= 640px) {/* SP */
			}
			input {
				color: #FFF;
			}
		}
		&.back {
			border: 1px solid var(--cc-black-A);
			box-sizing: border-box;
		}
		&.finbtn {
			background-color: var(--cc-black-A);
			@media (width > 640px) {/* PC */
			}
			@media (width <= 640px) {/* SP */
			}
			input {
				color: #FFF;
			}
		}
	}
	.formbtn.m-i-af-arrow_right-A {
		display: flex;
		flex-direction: row;
		gap: 1.2rem;
		height: 5.6rem;
		@media (width > 640px) {/* PC */
			width: 40rem;
		}
		@media (width <= 640px) {/* SP */
			width: 33rem;
		}
	}
	.formbtn.m-i-af-arrow_right-A::after {
		background: var(--cc-white-A);
	}
	.formbtn.back {
		@media (width <= 640px) {/* SP */
			margin-top: 1.6rem;
		}
	}
}


/* -----------------------------------------------------------------------------

完了ページ

----------------------------------------------------------------------------- */
.formfin {
	background-color: var(--cc-gray_back-A);
	@media (width > 640px) {/* PC */
		padding: 200px 0;
	}
	@media (width <= 640px) {/* SP */
		padding: 200px 20px;
	}
	div {
		padding: 5.6rem 0;
		background-color: var(--cc-white-A);
	}
	.anno_txt {
		margin-bottom: 4rem;
		text-align: center;
		font-size: 1.8rem;
		@media (width <= 640px) {/* SP */
			font-size: 1.5rem;
		}
	}
	a {
		@media (width > 640px) {/* PC */
			width: 30rem;
		}
		@media (width <= 640px) {/* SP */
			width: 80%;
		}
	}
}


/* -----------------------------------------------------------------------------

ガイドナビゲーション

----------------------------------------------------------------------------- */
.guidenavigationWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}
.guidenavigation {
	display: block;
	position: absolute;
	z-index: 100;
	border-radius: 4px;
	background-color: #FFF;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
	padding: 17px 0 17px;
	box-sizing: border-box;
	height: 80px;
	width: 200px;
	z-index: 1000;
	opacity: 0;
	@media (width > 640px) {/* PC */
		top: 20px;
		left: 20px;
	}
	@media (width <= 640px) {/* SP */
		top: 0!important;
		bottom: 0!important;
		right: 0!important;
		left: 0!important;
		margin: auto;
	}
}
.guidenavigationTxt {
	font-size: 1.4rem;
	color: #000;
	letter-spacing: 0.2rem;
	text-align: center;
}
.guidenavigationMark {
	display: inline-block;
	font-weight: 300;
	content: "必須";
	background-color: #a1a1a1;
	display: inline-block;
	padding: 2px 5px;
	color: #FFF;
	font-size: 1.2rem;
	line-height: 1.2;
	vertical-align: middle;
	margin-right: 4px;
}
.guidenavigationCounter {
	font-weight: bold;
	font-size: 2.6rem;
	position: relative;
	display: inline-block;
	color: #a1a1a1;
}


/* -----------------------------------------------------------------------------

入力形式事前指示

----------------------------------------------------------------------------- */
.jizensijiHyouji {
	position: absolute;
	bottom: 100%;
	margin-bottom: 10px;
	left: 0;
	background-color: #F00;
	color: #FFF;
	font-weight: bold;
	padding: 4px 10px;
	font-size: 16px;
	z-index: 10;
	pointer-events: none;
	transition: 0.3s;
	opacity: 0;
	transform: translateY(10px);
	white-space: pre;
	&:after {
		content: "";
		position: absolute;
		top: 100%;
		left: 15px;
		width: 0;
		height: 0;
		border-top: 6px solid #F00;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 6px solid transparent;
	}
	&.type01 {
		background-color: #a1a1a1;
		&:after {
			border-top: 6px solid #a1a1a1;
		}
	}
	&.active {
		opacity: 1;
		transform: none;
	}
}
@keyframes mondainaipopAnim {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	15% {
		opacity: 1;
		transform: translateY(0px);
	}
	85% {
		opacity: 1;
		transform: translateY(0px);
	}
	100% {
		opacity: 0;
		transform: translateY(0px);
	}
}
.nyuuryokuDame {
	position: absolute;
	top: 100%;
	left: 0;
	color: #F00;
	z-index: 10;
	pointer-events: none;

	display: none;
	@media (width > 640px) {/* PC */
		font-size: 1.2rem;
	}
	@media (width <= 640px) {/* SP */
		font-size: 1.2rem;
	}
	&.active {
		display: block;
	}

	/* アニメーションの定義 */
	animation: dame_blink 1s infinite;
	@keyframes dame_blink {
		0% {
			opacity: 0.5;
		}
		50% {
			opacity: 1.0;
		}
		100% {
			opacity: 0.5;
		}
	}
}


/* -----------------------------------------------------------------------------

GoogleRECAPCTHA

----------------------------------------------------------------------------- */
.recaptchamessage {
	width: 100%;
	text-align: center;
	@media (width > 640px) {/* PC */
		margin-top: 1rem;
		font-size: 1.4rem;
	}
	@media (width <= 640px) {/* SP */
		margin-top: 1rem;
		font-size: 1.2rem;
	}
	a {
		text-decoration: underline;
	}
}
.grecaptcha-badge {
	visibility: hidden;
}

/* -----------------------------------------------------------------------------

カレンダー選択範囲

----------------------------------------------------------------------------- */
/* 開始日・終了日の背景色 */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
	background: var(--cc-red-A) !important;
	color: #fff;
	border-color: var(--cc-red-A) !important;
}

/* 範囲内の日付（グレー部分） */
.flatpickr-day.inRange {
	background: var(--cc-gray_line-A) !important;
	color: var(--cc-black-A) !important;
}

[data-form-unique="checkbox_privacy"]:not([data-form-view-ok]) {
	display: none;
}