@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Noto+Serif+KR:wght@400;500;600;700&display=swap');

.ing_wear_page,
.ing_wear_page * {
	box-sizing: border-box;
}

.ing_wear_page {
	--ivory: #f8f4ec;
	--ivory-deep: #eee5d5;
	--cream: #fffdf8;
	--champagne: #c9aa78;
	--champagne-dark: #98764b;
	--rose-beige: #d8c3b5;
	--brown: #4b3e34;
	--charcoal: #181b1f;
	--charcoal-soft: #24282d;
	--navy: #111923;
	--silver: #aeb3b8;
	--line: rgba(75, 62, 52, 0.14);

	position: relative;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	color: #282522;
	font-family:
		Pretendard,
		"SUIT",
		"Noto Sans KR",
		"Apple SD Gothic Neo",
		Arial,
		sans-serif;
	word-break: keep-all;
}

.ing_wear_page a {
	color: inherit;
	text-decoration: none;
}

.ing_wear_page p,
.ing_wear_page h2,
.ing_wear_page h3,
.ing_wear_page h4,
.ing_wear_page ul {
	margin: 0;
	padding: 0;
}

.ing_wear_page ul {
	list-style: none;
}

.ing_wear_inner {
	position: relative;
	width: calc(100% - 48px);
	max-width: 1320px;
	margin: 0 auto;
}


/* ---------------------------------------
	공통 제목
--------------------------------------- */

.ing_wear_section_head {
	max-width: 760px;
	margin: 0 auto 58px;
	text-align: center;
}

.ing_wear_section_label {
	margin-bottom: 17px !important;
	color: var(--champagne-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.28em;
}

.ing_wear_section_head h3 {
	color: #292521;
	font-family:"Cormorant Garamond", "Noto Serif KR", serif;
	font-size: clamp(32px, 3.3vw, 48px);
	font-weight: 500;
	line-height: 1.38;
	letter-spacing: -0.045em;
}

.ing_wear_section_head > p:last-child {
	margin-top: 22px;
	color: #777069;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.85;
	letter-spacing: -0.025em;
}

.ing_wear_section_head_dark h3 {
	color: #f7f3ec;
}

.ing_wear_section_head_dark > p:last-child {
	color: #aeb1b4;
}


/* ---------------------------------------
	상단 히어로
--------------------------------------- */

.ing_wear_hero {
	position: relative;
	min-height: 790px;
}

.ing_wear_hero:before {
	position: absolute;
	top: 0;
	left: 47%;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.16);
	content: "";
}

.ing_wear_hero_glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(10px);
	pointer-events: none;
}

.ing_wear_hero_glow_left {
	top: -230px;
	left: -130px;
	width: 600px;
	height: 600px;
	background: rgba(255, 255, 255, 0.8);
}

.ing_wear_hero_glow_right {
	right: -200px;
	bottom: -330px;
	width: 660px;
	height: 660px;
	border: 1px solid rgba(201, 170, 120, 0.15);
}

.ing_wear_hero_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 790px;
	padding: 90px 0 105px;
}

.ing_wear_hero_text {
	position: relative;
	z-index: 3;
	width: 48%;
	padding-right: 54px;
}

.ing_wear_eyebrow {
	margin-bottom: 23px !important;
	color: var(--champagne-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.29em;
}

.ing_wear_hero_title {
	color: #29241f;
	font-family:"Cormorant Garamond", "Noto Serif KR", serif;
	font-size: clamp(42px, 4.35vw, 66px);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -0.06em;
}

.ing_wear_hero_title span {
	color: #9f7f55;
	font-style: italic;
	font-weight: 400;
}

.ing_wear_hero_desc {
	max-width: 650px;
	margin-top: 28px !important;
	color: #6f675f;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: -0.027em;
}

.ing_wear_hero_desc strong {
	color: #453b31;
	font-weight: 700;
}

.ing_wear_hero_buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 40px;
}

.ing_wear_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 165px;
	height: 54px;
	padding: 0 25px;
	border: 1px solid;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.015em;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

.ing_wear_btn:hover {
	transform: translateY(-3px);
}

.ing_wear_btn_light {
	border-color: #aa8d64;
	background: #aa8d64;
	color: #ffffff !important;
}

.ing_wear_btn_light:hover {
	border-color: #8d704a;
	background: #8d704a;
}

.ing_wear_btn_dark {
	border-color: #34383e;
	background: #24272c;
	color: #ffffff !important;
}

.ing_wear_btn_dark:hover {
	border-color: #111317;
	background: #111317;
}

.ing_wear_hero_visual {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52%;
	height: 590px;
	box-sizing: border-box;
}

.ing_wear_hero_photo {
	position: relative;
	width: 100%;
	max-width: 460px;
	height: 590px;
	overflow: hidden;
	border: 1px solid rgba(201, 170, 120, 0.25);
	border-radius: 230px 230px 26px 26px;
	background: #eee6da;
	box-shadow:
		0 30px 65px rgba(20, 17, 13, 0.28),
		0 8px 20px rgba(20, 17, 13, 0.13);
}

.ing_wear_hero_photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.8s ease;
}

.ing_wear_hero_photo:hover img {
	transform: scale(1.025);
}

.ing_wear_photo_overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(
			to bottom,
			transparent 58%,
			rgba(13, 12, 11, 0.08) 73%,
			rgba(13, 12, 11, 0.62) 100%
		);
}

.ing_wear_visual_caption {
	position: absolute;
	right: 25px;
	bottom: 22px;
	left: 25px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 17px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-family: Arial, "Noto Sans KR", sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.ing_wear_visual_caption span:first-child {
	color: #f2dfbd;
}

.ing_wear_visual_caption i {
	display: block;
	width: 40px;
	height: 1px;
	background: rgba(255, 255, 255, 0.55);
}

.ing_wear_scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #a98d65 !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 9px;
	letter-spacing: 0.23em;
	transform: translateX(-50%);
}

.ing_wear_scroll i {
	position: relative;
	display: block;
	width: 1px;
	height: 32px;
	overflow: hidden;
	background: rgba(169, 141, 101, 0.25);
}

.ing_wear_scroll i:after {
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #9b7c50;
	content: "";
	animation: ing_wear_scroll_move 1.8s ease-in-out infinite;
}

@keyframes ing_wear_scroll_move {
	0% {
		top: -100%;
	}

	100% {
		top: 100%;
	}
}


/* ---------------------------------------
	소개 및 균형 카드
--------------------------------------- */

.ing_wear_intro {
	padding: 125px 0 135px;
	background: #ffffff;
}

.ing_wear_balance_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.ing_wear_balance_card {
	position: relative;
	min-height: 350px;
	padding: 55px 55px 50px;
	overflow: hidden;
	border: 1px solid;
}

.ing_wear_balance_bride {
	border-color: #e7ded0;
	background:
		linear-gradient(135deg, #fffefb, #f8f2e8);
}

.ing_wear_balance_groom {
	border-color: #292e35;
	background:
		linear-gradient(135deg, #22262c, #121519);
	color: #ffffff;
}

.ing_wear_balance_number {
	position: absolute;
	top: 25px;
	right: 34px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 72px;
	font-style: italic;
	line-height: 1;
}

.ing_wear_balance_bride .ing_wear_balance_number {
	color: rgba(182, 151, 108, 0.12);
}

.ing_wear_balance_groom .ing_wear_balance_number {
	color: rgba(255, 255, 255, 0.06);
}

.ing_wear_balance_icon {
	position: relative;
	width: 64px;
	height: 68px;
	margin-bottom: 25px;
}

.ing_wear_mini_dress {
	position: absolute;
	top: 4px;
	left: 50%;
	width: 46px;
	height: 60px;
	background:
		linear-gradient(
			90deg,
			#eadfce,
			#fffdf8 50%,
			#e6d8c5
		);
	clip-path: polygon(38% 0, 62% 0, 72% 35%, 100% 100%, 0 100%, 28% 35%);
	transform: translateX(-50%);
}

.ing_wear_mini_tuxedo {
	position: absolute;
	top: 3px;
	left: 50%;
	width: 48px;
	height: 62px;
	background: #07090b;
	clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
	transform: translateX(-50%);
}

.ing_wear_mini_tuxedo:before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 17px;
	height: 48px;
	background: #eeeeec;
	clip-path: polygon(0 0, 100% 0, 66% 100%, 34% 100%);
	content: "";
	transform: translateX(-50%);
}

.ing_wear_balance_en {
	margin-bottom: 10px !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
}

.ing_wear_balance_bride .ing_wear_balance_en {
	color: #ad8f65;
}

.ing_wear_balance_groom .ing_wear_balance_en {
	color: #bca37e;
}

.ing_wear_balance_card h4 {
	margin-bottom: 20px;
	font-family:"Cormorant Garamond", "Noto Serif KR", serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: -0.045em;
}

.ing_wear_balance_bride h4 {
	color: #4a4037;
}

.ing_wear_balance_card > p:last-child {
	max-width: 510px;
	font-size: 15px;
	line-height: 1.85;
	letter-spacing: -0.02em;
}

.ing_wear_balance_bride > p:last-child {
	color: #746b62;
}

.ing_wear_balance_groom > p:last-child {
	color: #b7bbc0;
}


/* ---------------------------------------
	브랜드 공통
--------------------------------------- */

.ing_wear_brand_layout {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 85px;
}

.ing_wear_brand_layout_reverse {
	flex-direction: row-reverse;
}

.ing_wear_brand_visual {
	width: 48%;
}

.ing_wear_brand_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 52%;
	padding: 35px 0;
}

.ing_wear_brand_small {
	margin-bottom: 19px !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
}

.ing_wear_brand_content h3 {
	font-family:"Cormorant Garamond", "Noto Serif KR", serif;
	font-size: clamp(34px, 3.15vw, 48px);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.052em;
}

.ing_wear_brand_content h3 strong {
	font-weight: 500;
}

.ing_wear_brand_line {
	width: 52px;
	height: 1px;
	margin: 29px 0;
}

.ing_wear_brand_lead {
	max-width: 620px;
	margin-bottom: 17px !important;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.75;
	letter-spacing: -0.03em;
}

.ing_wear_brand_desc {
	max-width: 650px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: -0.02em;
}

.ing_wear_feature_list {
	margin-top: 34px !important;
	border-top: 1px solid;
}

.ing_wear_feature_list li {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 19px 0;
	border-bottom: 1px solid;
}

.ing_wear_feature_num {
	flex: 0 0 auto;
	padding-top: 3px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.ing_wear_feature_list strong {
	display: block;
	margin-bottom: 5px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.025em;
}

.ing_wear_feature_list p {
	font-size: 13px;
	line-height: 1.65;
	letter-spacing: -0.02em;
}

.ing_wear_shop_summary {
	display: grid;
	grid-template-columns: 0.9fr 1.4fr;
	margin-top: 30px;
	padding: 20px 23px;
	border: 1px solid;
}

.ing_wear_shop_summary > div {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ing_wear_shop_summary > div + div {
	padding-left: 24px;
	border-left: 1px solid;
}

.ing_wear_shop_summary span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.ing_wear_shop_summary strong {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.ing_wear_brand_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	gap: 22px;

	width: auto;
	min-width: 250px;
	min-height: 62px;
	margin-top: 30px;
	padding: 0 28px;

	border-radius: 4px;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.02em;
	text-align: center;
	text-decoration: none;

	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.ing_wear_brand_button span {
	display: block;
	flex: none;
	line-height: 1.4;
	white-space: nowrap;
}

.ing_wear_brand_button i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;

	width: 24px;
	height: 24px;

	font-family: Arial, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
	line-height: 1;

	transition: transform 0.25s ease;
}

.ing_wear_brand_button:hover {
	box-shadow: 0 12px 28px rgba(48, 37, 24, 0.16);
	transform: translateY(-3px);
}

.ing_wear_brand_button:hover i {
	transform: translateX(5px);
}

/* ---------------------------------------
	헤미쉬
--------------------------------------- */

.ing_wear_heimish {
	padding: 145px 0;
	background:
		radial-gradient(
			circle at 14% 15%,
			rgba(255, 255, 255, 0.95),
			transparent 27%
		),
		linear-gradient(135deg, #f9f5ee, #f1e9dd);
}

.ing_wear_heimish_frame {
	position: relative;
	height: 710px;
	overflow: hidden;
	border: 12px solid rgba(255, 255, 255, 0.8);
	background-size: 100% auto;
		background-repeat: no-repeat;
		background-position: center top;
	box-shadow: 0 30px 70px rgba(105, 83, 54, 0.13);
}

.ing_wear_heimish_frame:before {
	position: absolute;
	inset: 20px;
	border: 1px solid rgba(170, 139, 97, 0.18);
	content: "";
}

.ing_wear_heimish_art {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 410px;
	height: 650px;
	transform: translateX(-50%);
}

.ing_wear_heimish_head {
	position: absolute;
	top: 34px;
	left: 50%;
	z-index: 8;
	width: 72px;
	height: 88px;
	border-radius: 46% 46% 48% 48%;
	background:
		linear-gradient(
			110deg,
			#d7b9a5 0%,
			#f0d5c1 56%,
			#cfae98 100%
		);
	transform: translateX(-50%);
}

.ing_wear_heimish_head:before {
	position: absolute;
	top: -11px;
	left: -5px;
	width: 83px;
	height: 53px;
	border-radius: 60% 50% 35% 25%;
	background: #5d4639;
	content: "";
}

.ing_wear_heimish_neck {
	position: absolute;
	top: 105px;
	left: 50%;
	z-index: 5;
	width: 46px;
	height: 63px;
	background: #e0c0aa;
	transform: translateX(-50%);
}

.ing_wear_heimish_top {
	position: absolute;
	top: 140px;
	left: 50%;
	z-index: 6;
	width: 145px;
	height: 180px;
	border: 1px solid rgba(184, 158, 120, 0.28);
	border-radius: 50px 50px 27px 27px;
	background:
		linear-gradient(
			90deg,
			#eadfce,
			#fffefa 48%,
			#e9ddcc
		);
	clip-path: polygon(14% 0, 86% 0, 100% 100%, 0 100%);
	transform: translateX(-50%);
}

.ing_wear_heimish_top:before {
	position: absolute;
	inset: 8px 20px 0;
	background:
		radial-gradient(circle, rgba(192, 163, 122, 0.45) 1px, transparent 2px);
	background-size: 14px 14px;
	content: "";
	opacity: 0.65;
}

.ing_wear_heimish_waist {
	position: absolute;
	top: 304px;
	left: 50%;
	z-index: 9;
	width: 128px;
	height: 19px;
	border-top: 1px solid rgba(175, 143, 101, 0.35);
	border-bottom: 1px solid rgba(175, 143, 101, 0.28);
	background: #f8f0e5;
	transform: translateX(-50%);
}

.ing_wear_heimish_skirt {
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 4;
	width: 400px;
	height: 340px;
	border: 1px solid rgba(184, 156, 119, 0.27);
	border-radius: 50% 50% 4% 4% / 14% 14% 2% 2%;
	background:
		linear-gradient(
			90deg,
			#dfcfbb 0%,
			#fffefb 25%,
			#fffefc 68%,
			#decdb8 100%
		);
	clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
	transform: translateX(-50%);
}

.ing_wear_heimish_skirt:before,
.ing_wear_heimish_skirt:after {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(178, 147, 107, 0.18);
	content: "";
}

.ing_wear_heimish_skirt:before {
	left: 37%;
	transform: rotate(6deg);
}

.ing_wear_heimish_skirt:after {
	right: 37%;
	transform: rotate(-6deg);
}

.ing_wear_heimish_arm {
	position: absolute;
	top: 166px;
	z-index: 3;
	width: 38px;
	height: 230px;
	border-radius: 50%;
	background:
		linear-gradient(
			90deg,
			#cfae98,
			#ecd0bb 55%,
			#c9a68f
		);
}

.ing_wear_heimish_arm_left {
	left: 109px;
	transform: rotate(8deg);
}

.ing_wear_heimish_arm_right {
	right: 109px;
	transform: rotate(-8deg);
}

.ing_wear_heimish_veil {
	position: absolute;
	top: 71px;
	left: 50%;
	z-index: 2;
	width: 335px;
	height: 525px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 50% 50% 25% 25%;
	background:
		linear-gradient(
			120deg,
			rgba(255, 255, 255, 0.11),
			rgba(255, 255, 255, 0.55),
			rgba(255, 255, 255, 0.08)
		);
	clip-path: polygon(36% 0, 64% 0, 100% 100%, 0 100%);
	transform: translateX(-50%);
}

.ing_wear_heimish_flower {
	position: absolute;
	border: 1px solid rgba(171, 139, 97, 0.3);
	border-radius: 50%;
}

.ing_wear_flower_1 {
	top: 70px;
	left: 35px;
	width: 105px;
	height: 105px;
}

.ing_wear_flower_2 {
	top: 113px;
	left: 80px;
	width: 45px;
	height: 45px;
}

.ing_wear_flower_3 {
	right: 38px;
	bottom: 72px;
	width: 130px;
	height: 130px;
}

.ing_wear_heimish_visual_text {
	position: absolute;
	right: 38px;
	bottom: 31px;
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	color: #866d4d;
}

.ing_wear_heimish_visual_text span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.34em;
}

.ing_wear_heimish_visual_text strong {
	margin: 3px 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: 0.07em;
}

.ing_wear_heimish_visual_text i {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 10px;
	font-weight: 400;
}

.ing_wear_heimish_content {
	color: #443b33;
}

.ing_wear_heimish_content .ing_wear_brand_small {
	color: #ad8d61;
}

.ing_wear_heimish_content h3 strong {
	color: #9e7c50;
}

.ing_wear_heimish_content .ing_wear_brand_line {
	background: #b69a71;
}

.ing_wear_heimish_content .ing_wear_brand_lead {
	color: #564a40;
}

.ing_wear_heimish_content .ing_wear_brand_desc {
	color: #786e65;
}

.ing_wear_heimish_content .ing_wear_feature_list,
.ing_wear_heimish_content .ing_wear_feature_list li {
	border-color: rgba(99, 79, 56, 0.16);
}

.ing_wear_heimish_content .ing_wear_feature_num {
	color: #ad8d61;
}

.ing_wear_heimish_content .ing_wear_feature_list strong {
	color: #51463c;
}

.ing_wear_heimish_content .ing_wear_feature_list p {
	color: #81766b;
}

.ing_wear_shop_summary_light {
	border-color: rgba(104, 80, 52, 0.18);
	background: rgba(255, 255, 255, 0.4);
}

.ing_wear_shop_summary_light > div + div {
	border-color: rgba(104, 80, 52, 0.15);
}

.ing_wear_shop_summary_light span {
	color: #a48458;
}

.ing_wear_shop_summary_light strong {
	color: #5d5043;
}

.ing_wear_heimish_button {
	border: 1px solid #a98a61;
	background: #a98a61;
	color: #ffffff !important;
}

.ing_wear_heimish_button:hover {
	border-color: #896b43;
	background: #896b43;
}


/* ---------------------------------------
	드레스 스타일
--------------------------------------- */

.ing_wear_dress_guide {
	padding: 125px 0 135px;
	background: #fffefa;
}

.ing_wear_style_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid #e6ded2;
	border-left: 1px solid #e6ded2;
}

.ing_wear_style_card {
	min-height: 320px;
	padding: 42px 31px 38px;
	border-right: 1px solid #e6ded2;
	border-bottom: 1px solid #e6ded2;
	background: #ffffff;
	transition:
		background 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.ing_wear_style_card:hover {
	position: relative;
	z-index: 2;
	background: #fbf7f0;
	box-shadow: 0 20px 45px rgba(87, 67, 44, 0.09);
	transform: translateY(-7px);
}

.ing_wear_style_symbol {
	position: relative;
	width: 200px;
	height: 200px;
	margin: 0 auto 27px;
}
.ing_wear_style_symbol img {
	width:100%;
	height:100%;
	border-radius:30px !important;
}
.ing_wear_style_en {
	margin-bottom: 9px !important;
	color: #b09267;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-align: center;
}

.ing_wear_style_card h4 {
	margin-bottom: 14px;
	color: #443a31;
	font-family:"Cormorant Garamond", "Noto Serif KR", serif;
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	letter-spacing: -0.04em;
}

.ing_wear_style_card > p:last-child {
	color: #7c746c;
	font-size: 14px;
	line-height: 1.75;
	text-align: center;
	letter-spacing: -0.02em;
}


/* ---------------------------------------
	다나베 비스포크
--------------------------------------- */

.ing_wear_tanabe {
	position: relative;
	padding: 145px 0;
	overflow: hidden;
	background:
		linear-gradient(
			125deg,
			#121519 0%,
			#20242a 58%,
			#171a1f 100%
		);
	color: #ffffff;
}

.ing_wear_tanabe_pattern {
	position: absolute;
	inset: 0;
	opacity: 0.23;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 54px 54px;
}

.ing_wear_tanabe:before {
	position: absolute;
	top: -360px;
	right: -230px;
	width: 780px;
	height: 780px;
	border: 1px solid rgba(185, 157, 112, 0.11);
	border-radius: 50%;
	content: "";
}

.ing_wear_tanabe_frame {
	position: relative;
	height: 710px;
	overflow: hidden;
	border: 1px solid rgba(205, 179, 135, 0.3);
	background:
		radial-gradient(
			circle at 50% 26%,
			rgba(92, 101, 112, 0.35),
			transparent 34%
		),
		linear-gradient(145deg, #2a2e34, #0b0d10);
	box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
}

.ing_wear_tanabe_frame:before,
.ing_wear_tanabe_frame:after {
	position: absolute;
	content: "";
}

.ing_wear_tanabe_frame:before {
	inset: 20px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.ing_wear_tanabe_frame:after {
	top: 0;
	left: 35%;
	width: 30%;
	height: 100%;
	background:
		linear-gradient(
			to bottom,
			rgba(255, 255, 255, 0.04),
			transparent
		);
	transform: skewX(-12deg);
}

.ing_wear_tanabe_art {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 430px;
	height: 660px;
	transform: translateX(-50%);
}
.ing_wear_tanabe_art img {
	width:100%;
	border:0;
}
.ing_wear_tanabe_head {
	position: absolute;
	top: 17px;
	left: 50%;
	z-index: 7;
	width: 80px;
	height: 99px;
	border-radius: 45% 45% 47% 47%;
	background:
		linear-gradient(
			110deg,
			#b98d70,
			#d5ad91 55%,
			#a9795e
		);
	transform: translateX(-50%);
}

.ing_wear_tanabe_head:before {
	position: absolute;
	top: -9px;
	left: -3px;
	width: 87px;
	height: 42px;
	border-radius: 55% 50% 20% 20%;
	background: #1a1615;
	content: "";
}

.ing_wear_tanabe_neck {
	position: absolute;
	top: 104px;
	left: 50%;
	z-index: 4;
	width: 53px;
	height: 67px;
	background: #bf9275;
	transform: translateX(-50%);
}

.ing_wear_tanabe_body {
	position: absolute;
	top: 132px;
	left: 50%;
	z-index: 2;
	width: 344px;
	height: 528px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 105px 105px 0 0;
	background:
		linear-gradient(
			90deg,
			#090b0e 0%,
			#292d33 48%,
			#080a0c 100%
		);
	clip-path: polygon(19% 0, 81% 0, 100% 100%, 0 100%);
	transform: translateX(-50%);
}

.ing_wear_tanabe_shirt {
	position: absolute;
	top: 134px;
	left: 50%;
	z-index: 3;
	width: 105px;
	height: 430px;
	background:
		linear-gradient(
			90deg,
			#d5d5d2,
			#fafaf7 50%,
			#c8c8c5
		);
	clip-path: polygon(0 0, 100% 0, 67% 100%, 33% 100%);
	transform: translateX(-50%);
}

.ing_wear_tanabe_lapel {
	position: absolute;
	top: 137px;
	z-index: 5;
	width: 142px;
	height: 290px;
	background:
		linear-gradient(
			145deg,
			#3a3f47,
			#111419 72%
		);
}

.ing_wear_tanabe_lapel_left {
	left: calc(50% - 163px);
	clip-path: polygon(0 0, 100% 0, 76% 100%, 16% 51%);
}

.ing_wear_tanabe_lapel_right {
	right: calc(50% - 163px);
	clip-path: polygon(0 0, 100% 0, 84% 51%, 24% 100%);
}

.ing_wear_tanabe_bow {
	position: absolute;
	top: 158px;
	z-index: 8;
	width: 61px;
	height: 36px;
	background: #050607;
}

.ing_wear_tanabe_bow_left {
	left: calc(50% - 56px);
	clip-path: polygon(0 10%, 100% 50%, 0 90%);
}

.ing_wear_tanabe_bow_right {
	right: calc(50% - 56px);
	clip-path: polygon(100% 10%, 0 50%, 100% 90%);
}

.ing_wear_tanabe_pocket {
	position: absolute;
	top: 287px;
	right: 80px;
	z-index: 7;
	width: 62px;
	height: 5px;
	background: #090b0e;
	transform: rotate(-5deg);
}

.ing_wear_tanabe_pocket:after {
	position: absolute;
	right: 9px;
	bottom: 1px;
	width: 36px;
	height: 31px;
	background: #e8e6df;
	clip-path: polygon(0 38%, 100% 0, 87% 100%);
	content: "";
}

.ing_wear_tanabe_button {
	position: absolute;
	left: 50%;
	z-index: 9;
	width: 8px;
	height: 8px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: #07090b;
	transform: translateX(-50%);
}

.ing_wear_tanabe_button_1 {
	top: 415px;
}

.ing_wear_tanabe_button_2 {
	top: 458px;
}

.ing_wear_tanabe_seal {
	position: absolute;
	top: 38px;
	right: 35px;
	z-index: 15;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border: 1px solid rgba(198, 167, 115, 0.45);
	border-radius: 50%;
	color: #bda176;
}

.ing_wear_tanabe_seal:before {
	position: absolute;
	inset: 5px;
	border: 1px solid rgba(198, 167, 115, 0.18);
	border-radius: 50%;
	content: "";
}

.ing_wear_tanabe_seal span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
}

.ing_wear_tanabe_seal small {
	margin-top: 3px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 7px;
	letter-spacing: 0.15em;
}

.ing_wear_tanabe_visual_text {
	position: absolute;
	bottom: 33px;
	left: 37px;
	z-index: 18;
	display: flex;
	flex-direction: column;
	color: #c5a97b;
}

.ing_wear_tanabe_visual_text span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.3em;
}

.ing_wear_tanabe_visual_text strong {
	margin: 4px 0;
	color: #e5d7c0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.ing_wear_tanabe_visual_text i {
	color: #777e87;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 9px;
	letter-spacing: 0.08em;
}

.ing_wear_tanabe_content .ing_wear_brand_small {
	color: #bca178;
}

.ing_wear_tanabe_content h3 {
	color: #f1eee9;
}

.ing_wear_tanabe_content h3 strong {
	color: #c5aa7e;
}

.ing_wear_tanabe_content .ing_wear_brand_line {
	background: #aa8d62;
}

.ing_wear_tanabe_content .ing_wear_brand_lead {
	color: #e1ddd6;
}

.ing_wear_tanabe_content .ing_wear_brand_desc {
	color: #aeb2b7;
}

.ing_wear_feature_list_dark,
.ing_wear_feature_list_dark li {
	border-color: rgba(255, 255, 255, 0.1);
}

.ing_wear_feature_list_dark .ing_wear_feature_num {
	color: #bca178;
}

.ing_wear_feature_list_dark strong {
	color: #e5e1da;
}

.ing_wear_feature_list_dark p {
	color: #989da3;
}

.ing_wear_shop_summary_dark {
	border-color: rgba(255, 255, 255, 0.11);
	background: rgba(255, 255, 255, 0.025);
}

.ing_wear_shop_summary_dark > div + div {
	border-color: rgba(255, 255, 255, 0.1);
}

.ing_wear_shop_summary_dark span {
	color: #bca178;
}

.ing_wear_shop_summary_dark strong {
	color: #c6c9cc;
}

.ing_wear_tanabe_button {
	border: 1px solid #b79a6e;
	background: transparent;
	color: #e5d5bc !important;
}

.ing_wear_tanabe_button:hover {
	background: #b79a6e;
	color: #17191d !important;
}


/* ---------------------------------------
	신랑 예복 안내
--------------------------------------- */

.ing_wear_suit_guide {
	padding: 125px 0 135px;
	background: #0f1216;
}

.ing_wear_suit_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ing_wear_suit_card {
	position: relative;
	min-height: 290px;
	padding: 38px 29px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.045),
			rgba(255, 255, 255, 0.012)
		);
	transition:
		border-color 0.3s ease,
		background 0.3s ease,
		transform 0.3s ease;
}

.ing_wear_suit_card:before {
	position: absolute;
	right: -65px;
	bottom: -65px;
	width: 140px;
	height: 140px;
	border: 1px solid rgba(188, 161, 120, 0.12);
	border-radius: 50%;
	content: "";
}

.ing_wear_suit_card:hover {
	border-color: rgba(188, 161, 120, 0.5);
	background:
		linear-gradient(
			145deg,
			rgba(188, 161, 120, 0.1),
			rgba(255, 255, 255, 0.015)
		);
	transform: translateY(-7px);
}

.ing_wear_suit_index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 39px;
	height: 39px;
	margin-bottom: 64px;
	border: 1px solid rgba(188, 161, 120, 0.5);
	border-radius: 50%;
	color: #bda379;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 10px;
}

.ing_wear_suit_en {
	margin-bottom: 10px !important;
	color: #a48b66;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.ing_wear_suit_card h4 {
	margin-bottom: 16px;
	color: #f0ede8;
	font-family:"Cormorant Garamond", "Noto Serif KR", serif;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.04em;
}

.ing_wear_suit_card > p:last-child {
	color: #959aa0;
	font-size: 14px;
	line-height: 1.75;
	letter-spacing: -0.02em;
}


/* ---------------------------------------
	준비 과정
--------------------------------------- */

.ing_wear_process {
	padding: 125px 0 140px;
	background: #f7f4ef;
}

.ing_wear_process_list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.ing_wear_process_list:before {
	position: absolute;
	top: 44px;
	right: 12.5%;
	left: 12.5%;
	height: 1px;
	background: #d9c9b3;
	content: "";
}

.ing_wear_process_item {
	position: relative;
	z-index: 2;
	text-align: center;
}

.ing_wear_process_circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	margin: 0 auto 27px;
	border: 1px solid #c8af8b;
	border-radius: 50%;
	background: #f7f4ef;
	color: #9e8058;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
}

.ing_wear_process_circle:after {
	position: absolute;
	width: 70px;
	height: 70px;
	border: 1px solid rgba(200, 175, 139, 0.32);
	border-radius: 50%;
	content: "";
}

.ing_wear_process_text > p {
	margin-bottom: 9px !important;
	color: #a0845e;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.22em;
}

.ing_wear_process_text h4 {
	margin-bottom: 13px;
	color: #443b33;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.ing_wear_process_text span {
	display: block;
	max-width: 250px;
	margin: 0 auto;
	color: #7c746c;
	font-size: 13px;
	line-height: 1.75;
	letter-spacing: -0.02em;
}


/* ---------------------------------------
	커플 조화
--------------------------------------- */

.ing_wear_harmony {
	padding: 0 0 135px;
	background: #f7f4ef;
}

.ing_wear_harmony_box {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: center;
	gap: 75px;
	padding: 72px 76px;
	background:
		linear-gradient(
			110deg,
			#fffefd 0%,
			#fffefd 54%,
			#191c21 54.1%,
			#111419 100%
		);
	box-shadow: 0 25px 70px rgba(72, 58, 42, 0.1);
}

.ing_wear_harmony_label {
	margin-bottom: 18px !important;
	color: #a6885e;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.25em;
}

.ing_wear_harmony_text h3 {
	color: #3f3730;
	font-family:"Cormorant Garamond", "Noto Serif KR", serif;
	font-size: clamp(30px, 2.6vw, 41px);
	font-weight: 500;
	line-height: 1.42;
	letter-spacing: -0.05em;
}

.ing_wear_harmony_text > p:last-child {
	max-width: 580px;
	margin-top: 22px !important;
	color: #786f67;
	font-size: 15px;
	line-height: 1.85;
	letter-spacing: -0.02em;
}

.ing_wear_harmony_points {
	display: grid;
	gap: 14px;
	margin-left:70px;
}

.ing_wear_harmony_points > div {
	position: relative;
	padding:18px 20px 18px 67px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(255, 255, 255, 0.02);
}

.ing_wear_harmony_points span {
	position: absolute;
	top: 50%;
	left: 20px;
	color: #bca078;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 11px;
	transform: translateY(-50%);
}

.ing_wear_harmony_points strong {
	display: block;
	margin-bottom: 5px;
	color: #d9c8ad;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 10px;
	letter-spacing: 0.18em;
}

.ing_wear_harmony_points p {
	color: #979ca2;
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: -0.02em;
}


/* ---------------------------------------
	하단 상담
--------------------------------------- */

.ing_wear_contact {
	position: relative;
	padding: 130px 0 140px;
	overflow: hidden;
	background:
		linear-gradient(
			120deg,
			#171a1f,
			#292d33
		);
	text-align: center;
}

.ing_wear_contact:before,
.ing_wear_contact:after {
	position: absolute;
	border: 1px solid rgba(196, 166, 117, 0.12);
	border-radius: 50%;
	content: "";
}

.ing_wear_contact:before {
	top: -270px;
	left: -150px;
	width: 620px;
	height: 620px;
}

.ing_wear_contact:after {
	right: -160px;
	bottom: -300px;
	width: 690px;
	height: 690px;
}

.ing_wear_contact_light {
	position: absolute;
	top: -170px;
	left: 50%;
	width: 650px;
	height: 350px;
	border-radius: 50%;
	background: rgba(201, 170, 120, 0.1);
	filter: blur(70px);
	transform: translateX(-50%);
}

.ing_wear_contact_inner {
	z-index: 2;
}

.ing_wear_contact_small {
	margin-bottom: 19px !important;
	color: #c1a478;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.3em;
}

.ing_wear_contact h3 {
	color: #f7f3ec;
	font-family:"Cormorant Garamond", "Noto Serif KR", serif;
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: -0.055em;
}

.ing_wear_contact_inner > p:not(.ing_wear_contact_small) {
	max-width: 650px;
	margin: 23px auto 0 !important;
	color: #aeb2b6;
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: -0.02em;
}

.ing_wear_contact_button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 260px;
	height: 62px;
	margin-top: 38px;
	padding: 0 24px;
	border: 1px solid #c1a478;
	background: #c1a478;
	color: #17191d !important;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.02em;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.ing_wear_contact_button i {
	font-family: Arial, sans-serif;
	font-size: 21px;
	font-style: normal;
	font-weight: 300;
	transition: transform 0.25s ease;
}

.ing_wear_contact_button:hover {
	background: transparent;
	color: #ddc7a5 !important;
	transform: translateY(-4px);
}

.ing_wear_contact_button:hover i {
	transform: translateX(6px);
}


/* ---------------------------------------
	스크롤 애니메이션
--------------------------------------- */

.ing_wear_reveal {
	opacity: 0;
	transform: translateY(34px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
}

.ing_wear_reveal.ing_wear_visible {
	opacity: 1;
	transform: translateY(0);
}

.ing_wear_style_card:nth-child(2),
.ing_wear_suit_card:nth-child(2),
.ing_wear_process_item:nth-child(2) {
	transition-delay: 0.08s;
}

.ing_wear_style_card:nth-child(3),
.ing_wear_suit_card:nth-child(3),
.ing_wear_process_item:nth-child(3) {
	transition-delay: 0.16s;
}

.ing_wear_style_card:nth-child(4),
.ing_wear_suit_card:nth-child(4),
.ing_wear_process_item:nth-child(4) {
	transition-delay: 0.24s;
}



/* ---------------------------------------
	모바일
--------------------------------------- */

@media all and (max-width: 768px) {

	.ing_wear_inner {
		width: calc(100% - 36px);
	}

	.ing_wear_section_head {
		margin-bottom: 40px;
	}

	.ing_wear_section_label {
		margin-bottom: 13px !important;
		font-size: 9px;
		letter-spacing: 0.23em;
	}

	.ing_wear_section_head h3 {
		font-size:27px;
		line-height: 1.4;
	}

	.ing_wear_section_head > p:last-child {
		margin-top: 17px;
		font-size: 14px;
		line-height: 1.75;
	}

	/* 모바일 히어로 */

	.ing_wear_hero {
		min-height: auto;
	}

	.ing_wear_hero:before {
		display: none;
	}

	.ing_wear_hero_inner {
		display: block;
		min-height: auto;
		padding: 75px 0 60px;
	}

	.ing_wear_hero_text {
		width: 100%;
		padding: 0;
		text-align: center;
	}

	.ing_wear_eyebrow {
		margin-bottom: 17px !important;
		font-size: 9px;
		letter-spacing: 0.24em;
	}

	.ing_wear_hero_title {
		font-size: 37px;
		line-height: 1.32;
	}

	.ing_wear_hero_desc {
		margin-top: 21px !important;
		font-size: 14px;
		line-height: 1.8;
	}

	.ing_wear_hero_buttons {
		justify-content: center;
		margin-top: 29px;
	}

	.ing_wear_btn {
		min-width: 140px;
		height: 49px;
		padding: 0 18px;
		font-size: 12px;
	}

	.ing_wear_hero_visual {
		width: 135%;
		height: 420px;
		margin: 80px 0 0 -17.5%;
		transform: scale(0.72);
		transform-origin: center bottom;
	}

	.ing_wear_visual_caption {
		bottom: -20px;
	}

	.ing_wear_scroll {
		display: none;
	}

	/* 소개 */

	.ing_wear_intro {
		padding: 85px 0 90px;
	}

	.ing_wear_balance_grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.ing_wear_balance_card {
		min-height: auto;
		padding: 39px 28px 36px;
	}

	.ing_wear_balance_number {
		top: 19px;
		right: 22px;
		font-size: 55px;
	}

	.ing_wear_balance_icon {
		margin-bottom: 18px;
	}

	.ing_wear_balance_card h4 {
		font-size: 25px;
	}

	.ing_wear_balance_card > p:last-child {
		font-size: 14px;
		line-height: 1.75;
	}

	/* 브랜드 공통 */

	.ing_wear_heimish,
	.ing_wear_tanabe {
		padding: 85px 0 90px;
	}

	.ing_wear_brand_layout,
	.ing_wear_brand_layout_reverse {
		display: block;
	}

	.ing_wear_brand_visual,
	.ing_wear_brand_content {
		width: 100%;
	}

	.ing_wear_brand_visual {
		margin-bottom: 43px;
	}

	.ing_wear_brand_content {
		padding: 0;
	}

	.ing_wear_brand_small {
		margin-bottom: 14px !important;
		font-size: 9px;
		letter-spacing: 0.23em;
	}

	.ing_wear_brand_content h3 {
		font-size:27px;
		line-height: 1.4;
	}

	.ing_wear_brand_line {
		margin: 22px 0;
	}

	.ing_wear_brand_lead {
		margin-bottom: 14px !important;
		font-size: 16px;
		line-height: 1.7;
	}

	.ing_wear_brand_desc {
		font-size: 14px;
		line-height: 1.8;
	}

	.ing_wear_feature_list {
		margin-top: 25px !important;
	}

	.ing_wear_feature_list li {
		gap: 13px;
		padding: 16px 0;
	}

	.ing_wear_feature_list strong {
		font-size: 14px;
	}

	.ing_wear_feature_list p {
		font-size: 12px;
	}

	.ing_wear_shop_summary {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 18px;
	}

	.ing_wear_shop_summary > div + div {
		padding-top: 14px;
		padding-left: 0;
		border-top: 1px solid;
		border-left: 0;
	}

	.ing_wear_brand_button {
		width: 100%;
		min-width: 0;
	}

	/* 헤미쉬 그림 */

	.ing_wear_heimish_frame,
	.ing_wear_tanabe_frame {
		height: 520px;
	}

	.ing_wear_heimish_art,
	.ing_wear_tanabe_art {
		transform: translateX(-50%) scale(0.74);
	}
	.ing_wear_tanabe_art img {
		width:100%;
		border:0;
	}

	.ing_wear_heimish_visual_text {
		right: 24px;
		bottom: 22px;
	}

	.ing_wear_heimish_visual_text strong,
	.ing_wear_tanabe_visual_text strong {
		font-size: 18px;
	}

	.ing_wear_tanabe_visual_text {
		bottom: 24px;
		left: 23px;
	}

	.ing_wear_tanabe_seal {
		top: 25px;
		right: 24px;
		width: 64px;
		height: 64px;
	}

	/* 스타일 카드 */

	.ing_wear_dress_guide,
	.ing_wear_suit_guide {
		padding: 85px 0 90px;
	}

	.ing_wear_style_grid,
	.ing_wear_suit_grid {
		grid-template-columns: 1fr;
	}

	.ing_wear_style_card {
		min-height: auto;
		padding: 34px 25px;
	}

	.ing_wear_style_symbol {
		position: relative;
		width: 200px;
		height: 200px;
		margin: 0 auto 27px;
	}
	.ing_wear_style_symbol img {
		width:100%;
		height:100%;
		border-radius:30px !important;
	}

	.ing_wear_suit_card {
		min-height: auto;
		padding: 29px 25px 31px;
	}

	.ing_wear_suit_index {
		margin-bottom: 37px;
	}

	/* 과정 */

	.ing_wear_process {
		padding: 85px 0 90px;
	}

	.ing_wear_process_list {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.ing_wear_process_list:before {
		top: 30px;
		bottom: 30px;
		left: 35px;
		width: 1px;
		height: auto;
	}

	.ing_wear_process_item {
		display: flex;
		align-items: center;
		gap: 20px;
		padding: 12px 0;
		text-align: left;
	}

	.ing_wear_process_circle {
		flex: 0 0 auto;
		width: 70px;
		height: 70px;
		margin: 0;
	}

	.ing_wear_process_circle:after {
		width: 56px;
		height: 56px;
	}

	.ing_wear_process_text span {
		max-width: none;
		font-size: 12px;
	}

	/* 조화 */

	.ing_wear_harmony {
		padding-bottom: 90px;
	}

	.ing_wear_harmony_box {
		display: block;
		padding: 43px 25px;
		background:
			linear-gradient(
				to bottom,
				#fffefd 0%,
				#fffefd 52%,
				#181b20 52.1%,
				#111419 100%
			);
	}

	.ing_wear_harmony-text {
		padding-bottom: 40px;
	}

	.ing_wear_harmony_text h3 {
		font-size: 28px;
	}

	.ing_wear_harmony_text > p:last-child {
		margin-bottom: 75px !important;
		font-size: 14px;
		line-height: 1.75;
	}

	.ing_wear_harmony_points {
		margin:0 auto;
		width:90%;
	}

	.ing_wear_harmony_points > div {
		padding:16px 40px;
	}

	.ing_wear_harmony_points span {
		left: 16px;
	}

	/* 상담 */

	.ing_wear_contact {
		padding: 90px 0 100px;
	}

	.ing_wear_contact-small {
		font-size: 9px;
	}

	.ing_wear_contact h3 {
		font-size: 34px;
		line-height: 1.4;
	}

	.ing_wear_contact_inner > p:not(.ing_wear_contact_small) {
		margin-top: 18px !important;
		font-size: 14px;
		line-height: 1.75;
	}

	.ing_wear_contact_button {
		width: 100%;
		max-width: 280px;
		height: 58px;
		margin-top: 30px;
	}

}


/* ---------------------------------------
	애니메이션 최소화 설정
--------------------------------------- */

@media (prefers-reduced-motion: reduce) {

	.ing_wear_reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.ing_wear_scroll i:after {
		animation: none;
	}

	.ing_wear_btn,
	.ing_wear_brand_button,
	.ing_wear_contact_button,
	.ing_wear_style_card,
	.ing_wear_suit_card {
		transition: none;
	}

}