@charset "UTF-8";

/* -----------------------------------------------------------------------------

レイアウト

----------------------------------------------------------------------------- */
.l-main__contact {
	padding-block-start: var(--header-height-pc);
	background-color: var(--cc-back);
	@media (width <= 767px) {
		padding-block-start: var(--header-height-sp);
	}
}

.page-contact {
	@media (width > 767px) {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		max-width: 160rem;
		margin-inline: auto;
	}
	&.confirm,
	&.fin {
		@media (width > 767px) {
			display: flex;
			flex-direction: column;
			align-items: center;
		}
	}
}

.page-contact-info {
	@media (width > 767px) {
		grid-column: 1;
		grid-row: 1;
		border-right: 1px solid var(--cc-line-A);
		max-width: 41.4rem;
		margin-inline: auto 0;
		box-sizing: content-box;
		padding-inline: 8rem 4rem;
	}
	@media (width <= 767px) {
		border-bottom: 1px solid var(--cc-line-A);
	}
}

.page-contact-info-wrap {
	@media (width > 767px) {
		position: sticky;
		top: var(--header-height-pc);
		height: fit-content;
		padding-block: 16rem;
	}
	@media (width <= 767px) {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-inline: 3rem;
		padding-block: 6rem 4.8rem;
	}
}

.page-contact-info-title {
	@media (width > 767px) {
		& span {
			&::before {
				@media (width > 767px) {
					font-size: 3rem;
				}
			}
		}
	}
}

.page-contact-info-lead {
	@media (width > 767px) {
		margin-top: 8rem;
	}
	@media (width <= 767px) {
		margin-top: 6rem;
		white-space: unset;
	}
}

.page-contact-info-tel-box {
	border-top: 1px solid var(--cc-line-B);
	width: 100%;
	position: relative;

	@media (width > 767px) {
		margin-top: 5.4rem;
		padding-top: 5.5rem;
	}
	@media (width <= 767px) {
		margin-top: 3.2rem;
		padding-top: 3.2rem;
	}

	&::before {
		content: "";
		position: absolute;
		top: -1px;
		left: 0;
		width: 5.6rem;
		height: 1px;
		background-color: var(--cc-pinkgold);
	}
}

.page-contact-info-tel-lead {
	@media (width <= 767px) {
		text-align: center;
	}
}

.page-contact-info-tel {
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	color: var(--cc-pinkgold);
	letter-spacing: 0.15em;
	line-height: 1;
	display: flex;

	@media (width > 767px) {
		font-size: 3rem;
		margin-top: 2.4rem;
		align-items: first baseline;
	}
	@media (width <= 767px) {
		font-size: 2.4rem;
		margin-top: 1.6rem;
		align-items: center;
		justify-content: center;
	}
	& a {
		display: block;
	}

	&::before {
		@media (width <= 767px) {
			content: '';
			display: block;
			width: 2.4rem;
			height: 2.4rem;
			margin-right: 0.2rem;
			margin-top: 0.3rem;
			background-image: url('/assets/img/icon-phone.svg');
			background-repeat: no-repeat;
			background-position: center;
			background-size: contain;
		}
	}
}

.page-contact-info-tel-head {
	@media (width > 767px) {
		font-family: var(--ff-loniki);
		font-weight: var(--text-fw-en);
		color: var(--cc-pinkgold);
		letter-spacing: 0.2em;
		line-height: 1;
		font-size: 2rem;
		margin-right: 0.4rem;
	}
	@media (width <= 767px) {
		display: none;
	}
}

.page-contact-form {
	width: 100%;
	@media (width > 767px) {
		grid-column: 2 / -1;
		grid-row: 1;
		max-width: 86.7rem;
		box-sizing: content-box;
		padding-inline: 10rem;
		padding-block: 16rem;
	}
	@media (width <= 767px) {
		padding-block: 4.9rem 8rem;
		padding-inline: 3rem;
	}
	.page-contact.confirm &,
	.page-contact.fin & {
		@media (width > 767px) {
			padding-top: 12rem;
		}
		@media (width <= 767px) {
			padding-top: 6rem;
		}
	}
	.page-contact.fin & {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

.page-contact-confirm-title {
	font-weight: 500;
	@media (width > 767px) {
		padding-bottom: 8.8rem;
	}
	@media (width <= 767px) {
		padding-bottom: 4.8rem;
	}
}

.page-contact-fin-title {
	font-weight: 500;
	@media (width > 767px) {
		padding-bottom: 6.5rem;
	}
	@media (width <= 767px) {
		padding-bottom: 4rem;
	}
}

.page-contact-fin-lead {
	@media (width <= 767px) {
		white-space: unset;
	}
}

.page-contact-fin-back {
	@media (width > 767px) {
		margin-top: 4rem;
	}
	@media (width <= 767px) {
		margin-top: 2.6rem;
	}
	&::after {
		scale: -1 1;
		@media (width > 767px) {
			inset-inline-end: unset;
			inset-inline-start: 2.9rem;
		}
		@media (width <= 767px) {
			inset-inline-end: unset;
			inset-inline-start: 2rem;
		}
	}
}


/* -----------------------------------------------------------------------------

プレースホルダーのスタイル

----------------------------------------------------------------------------- */
::placeholder {
	color: rgba(0, 0, 0, 0.4); /* プレースホルダーの文字色 */
}


/* -----------------------------------------------------------------------------

入力ボックス

----------------------------------------------------------------------------- */
.textWrap, .telWrap, .emailWrap, .textareaWrap, .selectWrap {
	input, textarea, select {
		display: flex;
		align-items: center;
		background-color: #F5F4F2;
		border: 1px solid var(--cc-line-B);
		box-sizing: border-box;
		border-radius: 0;
		transition: 0.2s;
		width: 100%;
		@media (width > 767px) {/* PC */
			font-size: 1.6rem;
			height: 3.7rem;
			padding: 0 1rem;
		}
		@media (width <= 767px) {/* SP */
			font-size: 16px;
			padding: 0 1rem;
			height: 4.8rem;
		}
		&:focus {
			box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
		}
	}
	/* １行テキスト・電話・メールアドレス */
	input {
		@media (width > 767px) {/* PC */
		}
		@media (width <= 767px) {/* SP */
		}
	}
	/* テキストエリア */
	textarea {
		resize: vertical;
		@media (width > 767px) {/* PC */
			padding: 1rem;
			height: 19.5rem;
		}
		@media (width <= 767px) {/* SP */
			padding: 1rem;
			height: 19.5rem;
		}
	}
	/* プルダウン */
	.select {
		position: relative;
		display: inline-block;
		width: 100%;
		@media (width > 767px) {/* PC */
			max-width: 28rem;
		}
		&:after {
			content: "";
			display: block;
			position: absolute;
			right: 1.6rem;
			top: 50%;
			margin-top: -0.7rem;
			width: 0.9rem;
			height: 0.9rem;
			border-right: 1px solid var(--cc-pinkgold);
			border-bottom: 1px solid var(--cc-pinkgold);
			transform: rotate(45deg);
			transition: .2s;
		}
		select {
			color: var(--cc-black-B);
			width: 100%;
			font-size: 1.4rem;
			&:invalid {
				color: var(--cc-icon-A);
			}
		}
		option {
			width: 100%;
			white-space: normal;
			color: var(--cc-black-B);
			&:first-child {
				color: var(--cc-icon-A);
			}
		}
		optgroup[label] {
			display: block;
		}
		optgroup[label=""] {
			@media (width > 767px) {/* PC */
				display: none;
			}
			@media (width <= 767px) {/* SP */
				display: block;
			}
		}
	}
}


/* -----------------------------------------------------------------------------

チェックボックス・ラジオボタン

----------------------------------------------------------------------------- */
.checkboxWrap, .radioWrap {
	display: flex;
	flex-wrap: wrap;
	@media (width > 767px) {/* PC */
	}
	@media (width <= 767px) {/* SP */
		gap: 2rem;
	}
	.checkbox, .radio {
		display: flex;
		align-items: center;
		position: relative;
		cursor: pointer;
		@media (width > 767px) {/* PC */
			margin-right: 2rem;
			padding: 1rem 0;
		}
		@media (width <= 767px) {/* SP */
		}
		input {
			position: relative;
			border: 1px solid #000;
			@media (width > 767px) {/* PC */
				width: 2rem;
				height: 2rem;
				margin-right: 1rem;
			}
			@media (width <= 767px) {/* SP */
				width: 2rem;
				height: 2rem;
				margin-right: 1rem;
			}
			&: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 > 767px) {/* PC */
				padding: 1rem 0;
			}
			@media (width <= 767px) {/* SP */
			}
		}
		> span {
			transition: .2s;
			@media (width > 767px) {/* PC */
				font-size: 1.6rem;
			}
			@media (width <= 767px) {/* SP */
				font-size: 1.4rem;
			}
		}
	}
	.radio {
		input {
			border-radius: 50%;
			&:after {
				border-radius: 50%;
			}
		}
	}
}


/* -----------------------------------------------------------------------------

メールサジェスト

----------------------------------------------------------------------------- */
#CheckMail {
	display: flex;
	align-items: center;
	background-color: #F5F4F2;
	border: 1px solid var(--cc-line-B);
	box-sizing: border-box;
	border-radius: 0;
	transition: 0.2s;
	width: 100%;
	@media (width > 767px) {/* PC */
		font-size: 1.6rem;
		height: 3.7rem;
		padding: 0 1rem;
	}
	@media (width <= 767px) {/* SP */
		font-size: 16px;
		padding: 0 1rem;
		height: 4.8rem;
	}
}


/* -----------------------------------------------------------------------------

ファイルアップロード

----------------------------------------------------------------------------- */
.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;
	}
}


/* -----------------------------------------------------------------------------

dlレイアウト

----------------------------------------------------------------------------- */
.formlistWrap {
	margin: auto;
	width: 100%;
	@media (width > 767px) {/* PC */
		max-width: 100rem;
	}
	.formlist {
		padding-block: 3.2rem;
		&:not(:first-of-type) {
			border-top: 1px solid var(--cc-line-B);
		}
		&:first-of-type {
			padding-top: 0;
		}
		&:last-of-type {
			padding-bottom: 0;
		}
		&[data-form-view] {
			display: none !important;
		}
		&[data-form-view-ok] {
			display: block !important;
		}
		.formlistTit {
			line-height: 2.4;
			letter-spacing: 0;
			@media (width > 767px) {
				font-size: 1.4rem;
			}
			@media (width <= 767px) {
				font-size: 1.2rem;
			}
		}
		.formlistContent {
			font-size: 1.6rem;
			padding-top: 0.8rem;
		}
		.formlistHint {
			line-height: 2.4;
			color: var(--cc-icon-A);
			@media (width > 767px) {
				font-size: 1.4rem;
				letter-spacing: 0.14em;
			}
			@media (width <= 767px) {
				font-size: 1.2rem;
				letter-spacing: 0;
			}
		}
		.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 {
					&:after {
						content: "必須";
						background-color: var(--cc-tag-A);
						display: inline-block;
						letter-spacing: 0.16em;
						line-height: 1;
						vertical-align: middle;
						margin-left: 7px;
						padding: 0.4rem 0.8rem;
						border-radius: 1px;
						@media (width > 767px) {/* PC */
							font-size: 1.2rem;
						}
						@media (width <= 767px) {/* SP */
							font-size: 1rem;
						}
					}
				}
			}
		}
		&.mail_confirm {
			.formArea.confirm & {
				display: none;
			}
		}

		/* 生年月日 */
		&[data-form-unique="text_birth_yyyy"] .formlistContent {
			display: flex;
			@media (width > 767px) {/* PC */
				gap: 0 1.5rem;
			}
			@media (width <= 767px) {/* SP */
				gap: 0 1.5rem;
			}
			.text_birth_yyyy ,
			.text_birth_mm ,
			.text_birth_dd {
				display: flex;
				align-items: center;
				select, input {
					@media (width > 767px) {/* PC */
						margin-right: 0.5rem;
					}
					@media (width <= 767px) {/* SP */
						margin-right: 0.5rem;
					}
				}
			}
			.text_birth_yyyy {
				@media (width > 767px) {/* PC */
				}
				@media (width <= 767px) {/* SP */
					width: 10rem;
				}
			}
		}

		/* ご住所 */
		&[data-form-unique="text_postal"] .formlistContent {
			display: flex;
			flex-direction: column;
			@media (width > 767px) {/* PC */
				gap: 1.5rem 0;
			}
			@media (width <= 767px) {/* SP */
				gap: 1.5rem 0;
			}
			.text_postal ,
			.select_pref ,
			.text_postal_address {
				display: flex;
				align-items: center;
				select, input {
					@media (width > 767px) {/* PC */
						margin-left: 0.5rem;
					}
					@media (width <= 767px) {/* SP */
						margin-left: 0.5rem;
					}
				}
			}
			.text_postal_address {
				input {
					width: 100%;
				}
			}
		}

		.formlistContent {
			.formlist-mylist {
				display: flex;
				align-items: center;
				flex-wrap: wrap;
				column-gap: 3.2rem;
				font-size: 1.4rem;
				line-height: 2.4;
				
				li {
					position: relative;
					&:not(:last-of-type){
						&::after {
							content: "";
							width: 0.1rem;
							height: 1.2rem;
							background-color: var(--cc-line-B);
							position: absolute;
							top: 50%;
							transform: translateY(-50%);
							right: -1.6rem;
						}
					}
				}
			}
		}
	}
}


/* -----------------------------------------------------------------------------

エラー

----------------------------------------------------------------------------- */
.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 > 767px) {/* PC */
		width: 100%;
	}
	@media (width <= 767px) {/* SP */
		width: 90%;
	}
	.errorList {
		display: inline-block;
		li {
			color: #FFF;
			padding-left: 14px;
			text-align: left;
			@media (width > 767px) {/* PC */
				font-size: 1.6rem;
			}
			@media (width <= 767px) {/* 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;
		line-height: 2.4;
		+ .result,
		+ .noresult {
			margin-left: 5px;
		}
		.inputappend,
		.inputprepend {
			display: inline-block;
		}
	}
	.noresult {
		background-color: #d9d9d9;
		padding: 0.2rem 1rem;
	}
	.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 > 767px) {/* PC */
		margin-top: 6.4rem;
		gap: 4rem;
	}
	@media (width <= 767px) {/* SP */
		flex-direction: column-reverse;
		margin-top: 3.5rem;
		gap: 1.6rem;
	}
	.formbtn {
		@media (width > 767px) {/* PC */
			min-width: 26rem;
			height: 5rem;
		}
		@media (width <= 767px) {/* SP */
			max-width: 22rem;
			min-width: 22rem;
			height: 4.8rem;
			margin-inline: auto;
		}
		cursor: pointer;
		input {
			cursor: pointer;
			width: 100%;
			height: 100%;
			font-size: 1.4rem;
			letter-spacing: 0.07em;
			font-weight: 300;
		}
		&.confirm {
			input {
				color: var(--cc-white-A);
			}
		}
		&.back {
			@media (width > 767px) {/* PC */
				padding-inline: 5rem;
			}
			@media (width <= 767px) {/* SP */
				padding-inline: 4rem;
				font-size: 1.4rem;
			}
			&::after {
				scale: -1 1;
				@media (width > 767px) {/* PC */
					inset-inline-end: unset;
					inset-inline-start: 2.9rem;
				}
				@media (width <= 767px) {/* SP */
					inset-inline-end: unset;
					inset-inline-start: 2rem;
				}
			}
			input {
				color: var(--cc-pinkgol);
			}
		}
		&.finbtn {
			input {
				color: var(--cc-white-A);
			}
		}
	}
	.formArea.confirm & {
		@media (width > 767px) {/* PC */
			margin-top: 8rem;
		}
		@media (width <= 767px) {/* SP */
			margin-top: 6rem;
		}
	}
}


/* -----------------------------------------------------------------------------

ガイドナビゲーション

----------------------------------------------------------------------------- */
.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 > 767px) {/* PC */
		top: 20px;
		left: 20px;
	}
	@media (width <= 767px) {/* 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 {
	color: #F00;
	pointer-events: none;
	display: none;
	margin-top: 0.2rem;
	@media (width > 767px) {/* PC */
		font-size: 1.2rem;
	}
	@media (width <= 767px) {/* 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 > 767px) {/* PC */
		margin-top: 1rem;
		font-size: 1.4rem;
	}
	@media (width <= 767px) {/* SP */
		margin-top: 1rem;
		font-size: 1.2rem;
	}
	a {
		text-decoration: underline;
	}
}
.grecaptcha-badge {
	visibility: hidden;
}