/* Reset */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* Base */
html {
	overflow-x: hidden;
	background-color: #262626;
	scroll-behavior: smooth;
	font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	-webkit-overflow-scrolling: touch;
	overflow: hidden;
	padding-bottom: 150px;
}

.container {
	width: 900px;
	margin: 0 auto;
	background-color: #9fa8f5;
}

img {
	width: 100%;
	display: block;
}

#landing2_3 .formTitle {
	width: 70%;
	margin: 20px auto;
}

#landing2_3 .section01 {
	position: relative;
}

#landing2_3 .section01 a {
	position: absolute;
	left: 50%;
	top: 89%;
	transform: translate(-50%, -50%);
	width: 90%;
}

#landing2_3 .form_section {
	position: relative;
	overflow: hidden;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	background-color: #e1af5e;
	padding: 30px 0;
}

#landing2_3 .inputForm-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 80%;
	background-color: #fff;
	padding: 15px;
	border-radius: 10px;
}

#landing2_3 .wishCheckList {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

#landing2_3 .wishTitle {
	background-color: #ececec;
	text-align: center;
	font-weight: bold;
	border-radius: 10px;
	width: 100%;
	padding: 10px 0;
}

#landing2_3 .wishTitle span {
	color: red;
	font-weight: 400;
	font-size: 13px;
	margin-left: 10px;
}

#landing2_3 .wishCheck {
	display: grid;
	gap: 25px;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#landing2_3 .wishCheck label {
	display: flex;
	gap: 5px;
	align-items: center;
	font-size: 17px;
	font-weight: bold;
	word-break: keep-all;
}

#landing2_3 .wishCheck label input {
	width: 20px;
	height: 20px;
}

#landing2_3 .inputForm-wrapper > div.inputBoxWrap {
	display: grid;
	grid-template-columns: 1.5fr 2fr;
	gap: 15px;
}

#landing2_3 .inputForm-wrapper .inputBox {
	display: flex;
	align-items: center;
	gap: 10px;
}

#landing2_3 .inputForm-wrapper .inputBox label {
	word-break: keep-all;
	font-family: 23px;
}

#landing2_3 .inputForm-wrapper > div label {
	font-weight: bold;
	text-align: left;
}

#landing2_3 .inputForm-wrapper .inputBox input {
	flex: 1;
	padding: 10px;
	border: 1px solid #ddd;
	font-size: 16px;
	box-sizing: border-box;
	border-radius: 5px;
	height: 45px;
	width: 100%;
}

#landing2_3 .inputForm-wrapper > div input::placeholder {
	color: #ccc;
}

.callBtn {
	width: 100px;
	overflow: hidden;
	border-radius: 50%;
	display: block;
	position: fixed;
	right: 19%;
	bottom: 5%;
	z-index: 99;
	box-shadow: 0 0 25px 3px rgba(85, 85, 85, 0.5);
	border: 5px solid #4f49ee;
}

.video_box {
	position: relative;
	padding: 66% 0 49% 0;
	width: 100%;
	overflow: hidden;
}

.video_box video {
	width: 135%;
	margin-left: -5%;
}

.video_box_wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video_box_img {
	position: relative;
}

/* 토글 버튼 스타일 개선 */
.video_box_img .toggleBtn {
	position: absolute;
	bottom: 48px;
	left: 50%;
	transform: translateX(-50%);
	background: none;
	border: none;
	width: 85%;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	animation: pulse 2s infinite;
}

.video_box_img .toggleBtn:active {
	transform: translateX(-50%) scale(0.95);
}

/* 토글 버튼 애니메이션 */
@keyframes pulse {
	0% {
		transform: translateX(-50%) scale(1);
	}
	50% {
		transform: translateX(-50%) scale(1.05);
	}
	100% {
		transform: translateX(-50%) scale(1);
	}
}

/* Submit 버튼 애니메이션 */
@keyframes submitPulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

#landing2_3 #submitBtn {
	width: 95%;
	margin: 0 auto;
}

/* Submit 버튼에 펄스 애니메이션 적용 */
#submitBtn {
	animation: submitPulse 2s infinite;
	transition: all 0.3s ease;
}

#submitBtn:hover {
	animation: none;
	transform: scale(1.05);
}

#submitBtn:active {
	transform: scale(0.95);
}

/* 토글 영역이 보일 때 버튼 애니메이션 중지 */
.toggleArea.show ~ .video_box_img .toggleBtn,
.toggleArea.show + .video_box_img .toggleBtn {
	animation: none;
	transform: translateX(-50%) scale(0.9);
	opacity: 0.7;
}

/* 화면 하단 고정 토글 버튼 */
.toggleBtn-fixed {
	position: fixed;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	width: 85%;
	max-width: 520px;
	background: none;
	border: none;
	z-index: 999;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
}

.toggleBtn-fixed img {
	width: 100%;
	display: block;
}

@media (max-width: 768px) {
	.toggleBtn-fixed {
		bottom: 12px;
		width: 92%;
		max-width: none;
	}
}

.toggleArea {
	padding: 20px;
	display: none; /* 초기에 숨김 */
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}

.toggleArea.show {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.countBox {
	position: relative;
}

.countBox .countText {
	position: absolute;
	top: 31%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 45px;
	font-weight: 700;
}

.countBox .countText .countNum {
	color: #ff1bf7;
	font-weight: bold;
}

.formArea {
	background-color: #fff;
	padding: 10%;
}

@media (max-width: 768px) {
	.formArea {
		padding: 10px;
	}
}

.q1_form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 40px 0 100px;
}

/* Q2 폼 스타일링 */
.q2_form {
	margin: 40px 0 0;
	padding: 20px;
	background: linear-gradient(135deg, #fff0ff 0%, #ffe6ff 100%);
	border-radius: 10px;
	border: 2px solid #ffb3ff;
}

/* 이름과 나이를 한 줄에 표시 */
.q2_form .nameBox,
.q2_form .ageBox {
	display: inline-block;
	width: 48%;
	margin-bottom: 25px;
	position: relative;
}

.q2_form .nameBox {
	margin-right: 3%;
}

.q2_form .phoneBox {
	margin-bottom: 25px;
	position: relative;
	width: 100%;
}

.q2_form .nameBox:last-child,
.q2_form .ageBox:last-child,
.q2_form .phoneBox:last-child {
	margin-bottom: 0;
}

/* 입력 필드 공통 스타일 */
.q2_form input[type="text"],
.q2_form select {
	width: 100%;
	padding: 18px 20px;
	border: 2px solid #ffb3ff;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	background: #ffffff;
	color: #333;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.q2_form input[type="text"]:focus,
.q2_form select:focus {
	outline: none;
	border-color: #ff65f9;
	box-shadow: 0 0 0 3px rgba(255, 101, 249, 0.1);
	transform: translateY(-2px);
}

.q2_form input[type="text"]::placeholder {
	color: #999;
	font-weight: 400;
}

/* 전화번호 입력 박스 특별 스타일 */
.q2_form .phoneBox {
	display: flex;
	align-items: center;
	gap: 10px;
}

.q2_form .phoneBox span {
	background: linear-gradient(135deg, #ff65f9 0%, #ff4df9 100%);
	color: white;
	padding: 18px 15px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 4px 15px rgba(255, 101, 249, 0.3);
	min-width: 60px;
	text-align: center;
}

.q2_form .phoneBox input {
	flex: 1;
}

/* 셀렉트 박스 스타일 */
.q2_form select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 15px center;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-right: 50px;
}

.q2_form select option {
	padding: 10px;
	font-size: 16px;
	color: #333;
}

/* 호버 효과 */
.q2_form input[type="text"]:hover,
.q2_form select:hover {
	border-color: #ff99ff;
	box-shadow: 0 4px 15px rgba(255, 101, 249, 0.15);
}

/* 애니메이션 효과 */
@keyframes formFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.q2_form {
	animation: formFadeIn 0.6s ease-out;
}

/* Privacy Box 스타일링 */
.privacy_box {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 20px 0 15px;
	transition: all 0.3s ease;
}

.privacy_box label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.privacy_box input[type="checkbox"] {
	display: none;
}

#landing2_3 .privacy_box input[type="checkbox"] + span {
	background: #ccc;
}

.privacy_box input[type="checkbox"] + span {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 24px;
	background: linear-gradient(135deg, #ffe6ff 0%, #ffb3ff 100%);
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

#landing2_3 .privacy_box input[type="checkbox"] + span:before {
	background: #fff;
}

.privacy_box input[type="checkbox"] + span:before {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff65f9 0%, #ff4df9 100%);
	top: 3px;
	left: 3px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.privacy_box input[type="checkbox"]:checked + span {
	background: linear-gradient(135deg, #ff65f9 0%, #ff4df9 100%);
}

#landing4 .privacy_box input[type="checkbox"] + span:before {
	background: #fff;
}

#landing4 .privacy_box input[type="checkbox"] + span {
	background: #ccc;
	width: 48px;
}

#landing4 .privacy_box input[type="checkbox"]:checked + span {
	background: linear-gradient(135deg, #df3d6e 0%, #dd8797 100%);
}

#landing4 #agreeView {
	color: #333;
	font-weight: 600;
	word-break: keep-all;
}

#landing2_3 .privacy_box input[type="checkbox"]:checked + span {
	background: #000;
}

.privacy_box input[type="checkbox"]:checked + span:before {
	transform: translateX(21px);
	background: #ffffff;
}

.agreeText {
	font-size: 15px;
	font-weight: 500;
	color: #333;
	line-height: 1.4;
	word-break: keep-all;
}

#landing2_3 #agreeView {
	color: #000;
	background: transparent;
	word-break: keep-all;
}

#agreeView {
	color: #ff65f9;
	text-decoration: underline;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 5px 10px;
	border-radius: 8px;
	background: rgba(255, 101, 249, 0.1);
}

#agreeView:hover {
	color: #ff4df9;
	background: rgba(255, 101, 249, 0.2);
	transform: translateY(-1px);
}

/* Modal 스타일링 */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
	animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
	border-radius: 20px;
	padding: 0;
	width: 90%;
	max-width: 500px;
	max-height: 80vh;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.4s ease-out;
}

.close {
	position: absolute;
	top: 15px;
	right: 20px;
	color: #000;
	font-size: 20px;
	padding: 10px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
}

.close:hover {
	color: #333;
	background: rgba(0, 0, 0, 0.15);
	transform: scale(1.1);
}

.modal-content-inner {
	padding: 10px 20px;
}

.modal-content h3 {
	margin: 0;
	padding: 15px 30px;
	font-size: 22px;
	font-weight: 700;
	color: #333;
	text-align: center;
}

.modal-content p {
	margin: 15px 0;
	font-size: 14px;
	line-height: 1.6;
	color: #555;
	word-break: keep-all;
	overflow-y: auto;
	max-height: 60vh;
}

/* Modal 애니메이션 */
@keyframes modalFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translate(-50%, -60%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

/* 반응형 Modal */
@media (max-width: 768px) {
	#landing2_3 .inputForm-wrapper .inputBox input {
		height: 40px;
		font-size: 13px;
	}

	#landing2_3 .wishCheck label {
		font-size: 13px;
	}

	#landing2_3 .wishCheck {
		grid-template-columns: 1fr 1fr 1fr;
	}

	#landing2_3 .inputForm-wrapper {
		width: 90%;
		font-size: 13px;
	}

	#landing2_3 .privacy_box input[type="checkbox"]:checked + span,
	#landing2_3 .privacy_box input[type="checkbox"] + span {
		width: 48px;
	}

	#landing2_3 .agreeText {
		font-size: 12px;
	}

	#landing2_3 .inputForm-wrapper > div.inputBoxWrap {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.video_box_img .toggleBtn {
		bottom: 20px;
	}

	.callBtn {
		width: 60px;
		right: 20px;
		bottom: 100px;
	}

	.privacy_box input[type="checkbox"] + span {
		width: 60px;
	}
	.countBox .countText {
		font-size: 19px;
	}

	.q1_form {
		margin: 20px 0 50px;
	}
	.q2_form {
		padding: 20px;
		margin: 20px 0;
	}

	/* 모바일에서는 이름과 나이를 세로로 배치 */
	.q2_form .nameBox,
	.q2_form .ageBox {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}

	.q2_form .nameBox {
		margin-right: 0;
	}

	.q2_form input[type="text"],
	.q2_form select {
		padding: 15px 18px;
		font-size: 15px;
	}

	.q2_form .phoneBox span {
		padding: 15px 12px;
		font-size: 15px;
		min-width: 50px;
	}

	.container {
		width: 100%;
	}
	.modal-content {
		width: 95%;
		max-width: none;
		margin: 20px auto;
	}

	.modal-content h3 {
		font-size: 20px;
		padding: 10px 25px;
	}

	.modal-content p {
		font-size: 13px;
	}

	.close {
		top: 10px;
		right: 15px;
		font-size: 24px;
	}
}

/* RollList 스타일링 */
.rollList {
	padding: 20px;
	background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
	border-top: 2px solid #9fa8f5;
	border-bottom: 2px solid #9fa8f5;
}

.rollList h3 {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #7b52ff;
	margin-bottom: 20px;
}

.rollSwiper {
	width: 100%;
	height: 300px;
	overflow: hidden;
	max-width: 600px;
}

.rollItem {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(159, 168, 245, 0.1);
	border: 1px solid #9fa8f5;
	transition: all 0.3s ease;
	height: 50px;
	margin-bottom: 5px;
}

.rollItem:hover {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 15px rgba(159, 168, 245, 0.2);
	transform: translateY(-2px);
}

.rollName {
	font-weight: 600;
	color: #9fa8f5;
	font-size: 16px;
}

.rollPhone {
	color: #666;
	font-size: 14px;
	font-weight: 500;
}

.rollTime {
	color: #999;
	font-size: 12px;
	font-weight: 400;
}

/* Swiper 네비게이션 숨기기 */
.rollSwiper .swiper-button-next,
.rollSwiper .swiper-button-prev {
	display: none;
}

/* Swiper 페이징 숨기기 */
.rollSwiper .swiper-pagination {
	display: none;
}

body#landing4 {
	padding-bottom: 0;
}

body#landing4 .form_section {
	background: #edededff;
	padding: 50px 20px 30px;
	position: relative;
}

body#landing4 .form_section.popup-mode {
	max-width: 600px;
	margin: 0 auto;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	max-height: 80vh;
	overflow-y: auto;
	z-index: 1000;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

body#landing4 .form_section.popup-mode.show {
	transform: translateY(0);
}

/* 닫기 버튼 */
body#landing4 .form_section .closeBtn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #333;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	display: none;
	align-items: center;
	justify-content: center;
}

body#landing4 .form_section.popup-mode .closeBtn {
	display: flex;
}

body#landing4 .form_section .closeBtn:hover {
	background: #dd3d6e;
	transform: rotate(90deg);
}

/* 폼 컨테이너 */
body#landing4 .form_section .form-container {
	max-width: 700px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

/* 입력 필드 그룹 */
body#landing4 .form_section .form-group {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 15px;
}

body#landing4 .form_section .form-group label {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	min-width: 120px;
	white-space: nowrap;
}

body#landing4 .form_section .form-group input[type="text"],
body#landing4 .form_section .form-group input[type="tel"] {
	flex: 1;
	padding: 18px 20px;
	border: 1px solid #ccc;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 500;
	background: #fafafa;
	color: #333;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

body#landing4 .form_section .form-group input[type="text"]:focus,
body#landing4 .form_section .form-group input[type="tel"]:focus {
	outline: none;
	border-color: #dd3d6e;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(223, 61, 110, 0.1);
	transform: translateY(-2px);
}

body#landing4 .form_section .form-group input::placeholder {
	color: #ccc;
	font-weight: 400;
}

/* 전화번호 입력 */
body#landing4 .form_section .phone-group {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
}

body#landing4 .form_section .phone-group .phone-prefix {
	background: #333;
	color: #fff;
	padding: 15px 20px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 18px;
	min-width: 70px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

body#landing4 .form_section .phone-group input {
	flex: 1;
}

/* 실손보험 여부 라디오 버튼 */
body#landing4 .form_section .insurance-group {
	display: flex;
	gap: 15px;
	align-items: center;
	flex: 1;
}

body#landing4 .form_section .insurance-group input[type="radio"] {
	display: none;
}

body#landing4 .form_section .insurance-group .insurance-label {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	height: 60px;
	border: 1px solid #ccc;
	border-radius: 12px;
	font-size: 28px;
	font-weight: 700;
	color: #999;
	background: #fafafa;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
}

body#landing4
	.form_section
	.insurance-group
	input[type="radio"]:checked
	+ .insurance-label {
	background: linear-gradient(135deg, #dd3d6e 0%, #c92558 100%);
	border-color: #dd3d6e;
	color: #fff;
	box-shadow: 0 4px 15px rgba(223, 61, 110, 0.4);
	transform: translateY(-2px);
}

body#landing4 .form_section .insurance-group .insurance-label:hover {
	border-color: #dd3d6e;
	transform: translateY(-1px);
}

/* 현재 증상 텍스트 영역 */
body#landing4 .form_section .form-group textarea {
	width: 100%;
	padding: 18px 20px;
	border: 1px solid #ccc;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 500;
	background: #fafafa;
	color: #333;
	transition: all 0.3s ease;
	box-sizing: border-box;
	min-height: 120px;
	resize: vertical;
	font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
}

body#landing4 .form_section .form-group textarea:focus {
	outline: none;
	border-color: #ccc;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

body#landing4 .form_section .form-group textarea::placeholder {
	color: #ccc;
	font-weight: 400;
}

/* 제출 버튼 */
body#landing4 .form_section .submit-btn {
	width: 95%;
	padding: 22px 30px;
	background: linear-gradient(135deg, #df3d6e 0%, #dd8797 100%);
	color: #fff;
	border: none;
	border-radius: 15px;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 25px rgba(223, 61, 110, 0.4);
	margin: 15px auto 0;
	animation: submitPulse 2s infinite;
	display: block;
}

body#landing4 .bottomFixedBtn {
	width: 90%;
	max-width: 500px;
	padding: 15px 25px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	animation: submitPulse2 2s infinite;
	background: linear-gradient(135deg, #df3d6e 0%, #dd8797 100%);
	color: #fff;
	border: none;
	border-radius: 15px;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 25px rgba(223, 61, 110, 0.4);
}

body#landing4 .bottomFixedBtn.hidden {
	opacity: 0;
	pointer-events: none;
}

body#landing4 .form_section .submit-btn:hover {
	animation: none;
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(223, 61, 110, 0.5);
}

body#landing4 .form_section .submit-btn:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(223, 61, 110, 0.3);
}

.pcImg {
	display: block;
}
.moImg {
	display: none;
}

/* bottomFixedBtn 버튼 애니메이션 */
@keyframes submitPulse2 {
	0% {
		transform: translateX(-50%) scale(1);
	}
	50% {
		transform: translateX(-50%) scale(1.05);
	}
	100% {
		transform: translateX(-50%) scale(1);
	}
}

/* 반응형 - 태블릿 */
@media (max-width: 768px) {
	.pcImg {
		display: none;
	}
	.moImg {
		display: block;
	}
	body#landing4 .form_section {
		padding: 40px 15px 20px;
	}

	body#landing4 .form_section .form-title h2 {
		font-size: 24px;
	}

	body#landing4 .form_section .form-title h3 {
		font-size: 28px;
	}

	body#landing4 .form_section .form-title p {
		font-size: 15px;
	}

	body#landing4 .form_section .form-container {
		padding: 30px 20px;
	}

	body#landing4 .form_section .form-group {
		gap: 10px;
	}

	body#landing4 .form_section .form-group label {
		font-size: 15px;
		min-width: auto;
	}

	body#landing4 .form_section .form-group input[type="text"],
	body#landing4 .form_section .form-group input[type="tel"],
	body#landing4 .form_section .form-group textarea {
		padding: 16px 18px;
		font-size: 15px;
		width: 100%;
	}

	body#landing4 .form_section .phone-group {
		width: 100%;
	}

	body#landing4 .form_section .phone-group .phone-prefix {
		padding: 16px 18px;
		font-size: 16px;
		min-width: 65px;
	}

	body#landing4 .form_section .insurance-group {
		width: 100%;
	}

	body#landing4 .form_section .submit-btn {
		padding: 20px 25px;
		font-size: 18px;
	}

	body#landing4 .form_section .insurance-group .insurance-label {
		height: 48px;
		font-size: 22px;
	}
}

/* 반응형 - 모바일 */
@media (max-width: 480px) {
	body#landing4 .footer {
		width: 200%;
		transform: translateX(-25%);
	}
	body#landing4 .form_section {
		padding: 30px 10px 10px;
	}

	body#landing4 .form_section .form-title h2 {
		font-size: 20px;
	}

	body#landing4 .form_section .form-title h3 {
		font-size: 24px;
	}

	body#landing4 .form_section .form-title p {
		font-size: 14px;
	}

	body#landing4 .form_section .form-container {
		padding: 25px 15px;
		border-radius: 15px;
	}

	body#landing4 .form_section .form-group {
		gap: 8px;
	}

	body#landing4 .form_section .form-group label {
		font-size: 14px;
		min-width: auto;
	}

	body#landing4 .form_section .form-group input[type="text"],
	body#landing4 .form_section .form-group input[type="tel"],
	body#landing4 .form_section .form-group textarea {
		padding: 14px 16px;
		width: 100%;
		font-size: 14px;
		border-radius: 10px;
	}

	body#landing4 .form_section .phone-group {
		gap: 8px;
		width: 100%;
	}

	body#landing4 .form_section .phone-group .phone-prefix {
		padding: 14px 12px;
		font-size: 14px;
		min-width: 55px;
		border-radius: 10px;
	}

	body#landing4 .form_section .form-group textarea {
		min-height: 100px;
	}

	body#landing4 .form_section .insurance-group {
		width: 100%;
	}

	body#landing4 .form_section .submit-btn {
		padding: 18px 20px;
		font-size: 17px;
		border-radius: 12px;
	}

	body#landing4 .form_section .insurance-group .insurance-label {
		height: 48px;
		font-size: 22px;
	}

	body#landing4 .agreeText {
		font-size: 13px;
	}
}
