/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 13 2026 | 11:49:37 */
textarea, input[type=text], input[type=email], input[type=tel], .contact-area input[type="checkbox"] {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
}

/* ==========================================================
 * CONTACT POPUP
 * CF7 3STEP FORM
 * ========================================================== */

.edp-contact-modal {
	--contact-main: var(--color_main);
	--contact-border: #e2e2e2;
	--contact-radius: 14px;

	position: fixed;
	inset: 0;
	z-index: 999999;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 30px;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition: opacity .3s ease, visibility .3s ease;
}

.edp-contact-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

html.is-contact-modal-open,
html.is-contact-modal-open body {
	overflow: hidden;
}


/* ==========================================================
 * 背景
 * ========================================================== */

.edp-contact-modal__overlay {
	position: absolute;
	inset: 0;

	background: rgba(15, 25, 19, .58);

	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}


/* ==========================================================
 * ポップアップ本体
 * ========================================================== */

.edp-contact-modal__dialog {
	position: relative;
	z-index: 2;

	width: min(760px, 92vw);
	max-height: 92vh;
	max-height: 92dvh;

	background: #fff;

	border-radius: 22px;

	overflow: hidden;

	box-shadow: 0 25px 70px rgba(0, 0, 0, .18);

	transform: translateY(20px) scale(.98);

	transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.edp-contact-modal.is-open .edp-contact-modal__dialog {
	transform: translateY(0) scale(1);
}


/* フォーム部分 */
.edp-contact-modal__content {
	max-height: 92vh;
	max-height: 92dvh;

	padding: 48px 50px;

	overflow-y: auto;
}


/* ==========================================================
 * 閉じるボタン
 * ========================================================== */

.edp-contact-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 10;

	width: 42px;
	height: 42px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	background: #fff;

	box-shadow: 0 3px 15px rgba(0, 0, 0, .08);

	cursor: pointer;

	transition: transform .3s ease, background .3s ease;
}

.edp-contact-modal__close:hover {
	background: #f3f8f4;
	transform: rotate(90deg);
}

.edp-contact-modal__close span {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 18px;
	height: 1px;

	background: #222;
}

.edp-contact-modal__close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.edp-contact-modal__close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}


/* ==========================================================
 * STEP
 * ========================================================== */

.edp-contact-step {
	display: none;
}

.edp-contact-step.is-active {
	display: block;
	animation: contactStep .35s ease;
}

@keyframes contactStep {
	from {
		opacity: 0;
		transform: translateX(10px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}


/* STEP見出し */
.edp-contact-step-head {
	margin-bottom: 25px;
}

.edp-contact-step-number {
	color: var(--contact-main);

	font-size: 11px;
	font-weight: 700;

	letter-spacing: .15em;
}

.edp-contact-step-head h3 {
	margin: 5px 0;

	font-size: 22px;
	line-height: 1.5;
}

.edp-contact-step-head p {
	margin: 0;

	color: #777;

	font-size: 13px;
}


/* ==========================================================
 * STEP01 選択カード
 * ========================================================== */

.edp-contact-choices .wpcf7-form-control {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 10px;
}

.edp-contact-choices .wpcf7-list-item {
	margin: 0;
}

.edp-contact-choices label {
	display: block;
	height: 100%;

	cursor: pointer;
}

.edp-contact-choices input[type="radio"] {
	position: absolute;

	opacity: 0;
	pointer-events: none;
}

.edp-contact-choices .wpcf7-list-item-label {
	position: relative;

	display: flex;
	align-items: center;

	min-height: 64px;

	padding: 14px 42px 14px 17px;

	border: 1px solid var(--contact-border);
	border-radius: 12px;

	background: #fff;

	font-size: 13px;
	font-weight: 600;

	transition: .25s ease;
}


/* 矢印 */
.edp-contact-choices .wpcf7-list-item-label::after {
	content: "→";

	position: absolute;
	right: 16px;

	color: #aaa;

	transition: .25s ease;
}


/* hover */
.edp-contact-choices label:hover .wpcf7-list-item-label {
	border-color: var(--contact-main);

	transform: translateY(-2px);

	box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}


/* 選択済み */
.edp-contact-choices input[type="radio"]:checked
+ .wpcf7-list-item-label {
	color: var(--contact-main);

	border-color: var(--contact-main);

	background: color-mix(
		in srgb,
		var(--contact-main) 5%,
		#fff
	);
}

.edp-contact-choices input[type="radio"]:checked
+ .wpcf7-list-item-label::after {
	color: var(--contact-main);

	transform: translateX(3px);
}


/* ==========================================================
 * 入力欄
 * ========================================================== */

.edp-field {
	margin-bottom: 20px;
}

.edp-field-label {
	display: flex;
	align-items: center;

	gap: 8px;

	margin-bottom: 8px;

	font-size: 13px;
	font-weight: 600;
}


/* 必須・任意 */
.edp-required,
.edp-any {
	display: inline-flex;

	padding: 3px 7px;

	border-radius: 5px;

	font-size: 9px;
	font-weight: 600;
}

.edp-required {
	color: #d95c65;
	background: #fff0f1;
}

.edp-any {
	color: #777;
	background: #eee;
}


.edp-field .wpcf7-form-control-wrap {
	display: block;
}


.edp-field input,
.edp-field textarea,
.edp-field select {
	width: 100%;

	padding: 14px 16px;

	border: 1px solid var(--contact-border);
	border-radius: 10px;

	background: #fff;

	font-size: 14px;

	outline: none;

	transition: border-color .25s ease, box-shadow .25s ease;
}

.edp-field textarea {
	min-height: 160px;
	resize: vertical;
}


.edp-field input:focus,
.edp-field textarea:focus,
.edp-field select:focus {
	border-color: var(--contact-main);

	box-shadow:
		0 0 0 3px
		color-mix(
			in srgb,
			var(--contact-main) 8%,
			transparent
		);
}


/* ==========================================================
 * プライバシー
 * ========================================================== */

.edp-contact-privacy {
	margin-top: 15px;

	padding: 17px;

	background: #f8f8f8;

	border-radius: 10px;
}

.edp-contact-privacy p {
	margin: 0 0 12px;

	color: #666;

	font-size: 11px;
	line-height: 1.8;
}

.edp-contact-privacy a {
	color: var(--contact-main);

	text-decoration: underline;
}

.edp-contact-acceptance {
	font-size: 12px;
	font-weight: 600;
}


/* ==========================================================
 * 戻る・次へ・送信
 * ========================================================== */

.edp-contact-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 12px;

	margin-top: 28px;
}

.edp-contact-nav.is-right {
	justify-content: flex-end;
}


/* 戻る */
.edp-contact-back {
	min-height: 50px;

	padding: 0 22px;

	border: 1px solid #ddd;
	border-radius: 50px;

	background: #fff;

	color: #666;

	font-size: 13px;
	font-weight: 600;

	cursor: pointer;

	transition: .25s ease;
}

.edp-contact-back:hover {
	color: var(--contact-main);

	border-color: var(--contact-main);

	background:
		color-mix(
			in srgb,
			var(--contact-main) 4%,
			#fff
		);

	transform: translateX(-2px);
}


/* ==========================================================
 * 次へ進むボタン
 * ========================================================== */

.edp-contact-next {
	position: relative;

	display: inline-flex !important;
	align-items: center;
	justify-content: center;

	gap: 16px;

	min-width: 180px;
	min-height: 52px;

	padding: 0 28px !important;

	border: 1px solid var(--color_main) !important;
	border-radius: 100px !important;

	background: var(--color_main) !important;
	background-image: none !important;

	color: #fff !important;

	font-size: 13px;
	font-weight: 700;

	line-height: 1;

	appearance: none;
	-webkit-appearance: none;

	cursor: pointer;

	box-shadow:
		0 7px 20px
		color-mix(
			in srgb,
			var(--color_main) 20%,
			transparent
		);

	transition:
		transform .25s ease,
		box-shadow .25s ease,
		opacity .25s ease;
}


/* 右矢印 */
.edp-contact-next::after {
	content: "";

	display: block;

	width: 7px;
	height: 7px;

	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;

	transform: rotate(45deg);

	transition: transform .25s ease;
}


/* hover */
.edp-contact-next:hover {
	background: var(--color_main) !important;
	color: #fff !important;

	transform: translateY(-2px);

	box-shadow:
		0 10px 28px
		color-mix(
			in srgb,
			var(--color_main) 30%,
			transparent
		);

	opacity: .9;
}


/* 矢印だけ右へ */
.edp-contact-next:hover::after {
	transform:
		translateX(4px)
		rotate(45deg);
}


/* focus */
.edp-contact-next:focus,
.edp-contact-next:focus-visible {
	background: var(--color_main) !important;
	color: #fff !important;

	outline: 3px solid
		color-mix(
			in srgb,
			var(--color_main) 20%,
			transparent
		);

	outline-offset: 3px;
}


/* ==========================================================
 * 送信ボタン
 * ========================================================== */

.edp-submit-wrap {
	display: block;
	min-width: 200px;
}

.edp-contact-submit,
input.edp-contact-submit,
.wpcf7 input[type="submit"].edp-contact-submit {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;

	width: 100% !important;
	min-width: 200px;
	min-height: 52px;

	margin: 0 !important;
	padding: 0 50px 0 28px !important;

	border: 0 !important;
	border-radius: 100px !important;

	background-color: var(--color_main) !important;

	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") !important;

	background-repeat: no-repeat !important;
	background-position: right 25px center !important;

	color: #fff !important;

	font-size: 13px !important;
	font-weight: 700 !important;

	cursor: pointer;

	box-shadow: 0 7px 20px rgba(0, 0, 0, .10);

	transition:
		transform .25s ease,
		box-shadow .25s ease !important;
}

.edp-contact-submit:hover {
	transform: translateY(-2px);

	box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}


/* CF7送信中 */
.edp-contact-submit:disabled {
	opacity: .6 !important;
	cursor: not-allowed;
}


/* スピナー */
.edp-contact-submit-area .wpcf7-spinner {
	margin: 8px 0 0;
}


/* スマホ */
@media (max-width: 780px) {

	.edp-contact-submit-area {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.edp-submit-wrap {
		width: 100%;
		min-width: 0;
	}

	.edp-contact-submit {
		width: 100% !important;
	}

	.edp-contact-submit-area .edp-contact-back {
		align-self: flex-start;
	}

}
/* ==========================================================
 * プライバシーポリシー同意チェック
 * ========================================================== */

.edp-contact-acceptance {
	margin-top: 12px;
}

.edp-contact-acceptance .wpcf7-list-item {
	margin: 0;
}

.edp-contact-acceptance label {
	display: flex;
	align-items: center;
	gap: 8px;

	cursor: pointer;

	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
}


/* ==========================================================
 * プライバシーポリシー同意チェック
 * Font Awesome
 * ========================================================== */

.edp-contact-acceptance {
	margin-top: 12px;
}

.edp-contact-acceptance .wpcf7-list-item {
	margin: 0;
}

.edp-contact-acceptance label {
	display: flex;
	align-items: center;

	cursor: pointer;
}


/* 元のcheckboxを非表示 */
.edp-contact-acceptance input[type="checkbox"] {
	position: absolute;

	width: 1px;
	height: 1px;

	opacity: 0;
	pointer-events: none;
}


/* テキスト */
.edp-contact-acceptance .wpcf7-list-item-label {
	position: relative;

	display: flex;
	align-items: center;

	min-height: 28px;

	padding-left: 34px;

	color: #444;

	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;

	cursor: pointer;
}


/* ==========================================================
 * チェックボックス枠
 * ========================================================== */
.edp-contact-acceptance .wpcf7-list-item-label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 25px;
	height: 25px;
	border: 1px solid #d5d5d5;
	background: #fff;
	transform: translateY(-50%);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, .04);
	transition:
		border-color .25s ease,
		background-color .25s ease,
		box-shadow .25s ease;
}
.edp-contact-acceptance .wpcf7-list-item-label::after {
	content: "\f00c";
	position: absolute;
	left: 5px;
	top: 50%;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--color_main;
	font-size: 23px;
	line-height: 1;
	opacity: 0;
	transform:
		translateY(-50%)
		scale(.5);
	transition:
		opacity .2s ease,
		transform .25s cubic-bezier(.22, 1, .36, 1);
}
.edp-contact-acceptance
input[type="checkbox"]:checked
+ .wpcf7-list-item-label::before {
	box-shadow:
		0 4px 12px
		color-mix(
			in srgb,
			var(--color_main) 22%,
			transparent
		);
}
.edp-contact-acceptance
input[type="checkbox"]:checked
+ .wpcf7-list-item-label::after {
	opacity: 1;
	transform:
		translateY(-50%)
		scale(1);
}
/* ==========================================================
 * キーボード操作
 * ========================================================== */
.edp-contact-acceptance
input[type="checkbox"]:focus-visible
+ .wpcf7-list-item-label::before {
	outline: 2px solid
		color-mix(
			in srgb,
			var(--color_main) 35%,
			transparent
		);
	outline-offset: 3px;
}
/* ==========================================================
 * エラー
 * ========================================================== */

.edp-contact-error {
	min-height: 18px;

	margin: 10px 0 0;

	color: #d6535d;

	font-size: 11px;
}

.edp-contact-modal .wpcf7-not-valid-tip {
	margin-top: 5px;

	font-size: 11px;
}

.edp-contact-modal .wpcf7-response-output {
	margin: 20px 0 0 !important;

	padding: 12px 15px !important;

	border-radius: 8px;

	font-size: 12px;
}


/* ==========================================================
 * MOBILE
 * ========================================================== */

@media (max-width: 780px) {

	.edp-contact-modal {
		padding: 10px;
	}


	.edp-contact-modal__dialog {
		width: 100%;

		max-height: 95vh;
		max-height: 95dvh;

		border-radius: 18px;
	}


	.edp-contact-modal__content {
		max-height: 95vh;
		max-height: 95dvh;

		padding: 55px 20px 28px;
	}


	.edp-contact-modal__close {
		top: 12px;
		right: 12px;

		width: 40px;
		height: 40px;
	}


	.edp-contact-step-head h3 {
		font-size: 20px;
	}


	/* 選択肢は1列 */
	.edp-contact-choices .wpcf7-form-control {
		grid-template-columns: 1fr;
	}


	.edp-contact-choices .wpcf7-list-item-label {
		min-height: 56px;
	}


	/* ボタン */
	.edp-contact-nav {
		margin-top: 24px;
	}


	.edp-contact-next {
		min-width: 160px;
	}


	/* 最終STEP */
	.edp-contact-submit-area {
		flex-direction: column-reverse;
		align-items: stretch;
	}


	.edp-contact-submit {
		width: 100% !important;
	}


	.edp-contact-submit-area .edp-contact-back {
		align-self: flex-start;
	}

}