@charset "UTF-8";




/*--- サービス紹介 (#service_intro_block) ---*/
#service_intro_block {
	padding: 8vw 0;
}

.service_intro_inner {
	display: flex;
	align-items: flex-start;
	gap: 6vw;
}

.service_intro_img {
	width: 46%;
	flex-shrink: 0;
}

.service_intro_img img {
	width: 100%;
	aspect-ratio: 800 / 500;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.service_intro_text {
	width: 100%;
}

.service_intro_lead {
	margin-top: 1.6em;
	font-size: 1.5rem;
	line-height: 1.9em;
}

.service_intro_lead+.service_intro_lead {
	margin-top: 1.2em;
}

.photo_feature_list {
	margin-top: 1.6em;
}

.photo_feature_list li {
	position: relative;
	padding-left: 1.4em;
	font-size: 1.4rem;
	line-height: 1.9em;
}

.photo_feature_list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.9em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--c-brown);
}

.service_intro_text .btn_more {
	margin-top: 2em;
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
	.service_intro_lead {
		font-size: 1.4rem;
	}
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	#service_intro_block {
		padding: 80px 0;
	}
	.service_intro_inner {
		flex-direction: column;
		gap: 32px;
	}

	.service_intro_img {
		width: 100%;
	}
}

/*--- サービス一覧 (#service_list_block) ---*/
#service_list_block {
	padding: 5vw 0 6.5vw;
}

.service_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.service_card {
	display: block;
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service_card:hover {
	opacity: 1;
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(52, 52, 52, 0.12);
}

.service_card_img {
	overflow: hidden;
}

.service_card_img img {
	width: 100%;
	aspect-ratio: 600 / 270;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.service_card:hover .service_card_img img {
	transform: scale(1.06);
}

.service_card_body {
	position: relative;
	padding: 32px;
}

.service_card_num {
	font-family: var(--font-en-serif);
	font-size: 1.3rem;
	color: var(--c-brown);
}

.service_card_en {
	display: block;
	margin-top: 4px;
	font-family: var(--font-en-serif);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: var(--c-brown);
	opacity: 0.7;
}

.service_card_title {
	margin-top: 0.5em;
	font-family: var(--font-jp-serif);
	font-weight: 700;
	font-size: 2.4rem;
	color: var(--c-text);
}

.service_card_text {
	margin-top: 1em;
	font-size: 1.4rem;
	line-height: 1.8em;
}

.service_card .btn_more {
	margin-top: 1.8em;
	width: auto;
	padding: 0 20px;
	height: 64px;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	.service_list {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.service_card_body {
		padding: 24px;
	}

	.service_card_title {
		font-size: 2rem;
	}
}

/*--- シローの店のこだわり (#hair_quality_block) ---*/
#hair_quality_block {
	padding: 5vw 0;
	background: #fff;
}

.quality_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
	margin-top: 3vw;
}

.quality_item_img img {
	width: 100%;
	aspect-ratio: 500 / 280;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.quality_item_title {
	margin-top: 1.4em;
	font-family: var(--font-jp-serif);
	font-weight: 700;
	font-size: 2.4rem;
	color: var(--c-text);
}

.quality_item_text {
	margin-top: 0.8em;
	font-size: 1.5rem;
	line-height: 1.9em;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	#hair_quality_block {
		padding: 80px 0;
	}
	.quality_list {
		margin-top: 40px;
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/*--- 料金メニュー (#price_menu_block) ---*/
#price_menu_block {
	padding: 5vw 0 6vw;
}

.price_table_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 48px;
	row-gap: 3vw;
	margin: 3vw auto 0;
}

.price_table_title {
	position: relative;
	padding-left: 20px;
	font-family: var(--font-jp-serif);
	font-weight: 700;
	font-size: 1.9rem;
	color: var(--c-text);
}

.price_table_title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	height: 1em;
	background: var(--c-brown);
	margin: auto 0;
}

.price_table {
	width: 100%;
	margin-top: 1.2em;
	border-collapse: collapse;
	border-top: 1px solid rgba(52, 52, 52, 0.12);
}

.price_table tr {
	border-bottom: 1px solid rgba(52, 52, 52, 0.12);
}

.price_table th,
.price_table td {
	padding: 15px 0;
	text-align: left;
	font-weight: 600;
	font-size: 1.8rem;
}

.price_table th {
	width: 70%;
	color: var(--c-text);
	transition: padding-left 0.3s ease;
}

.price_table td {
	width: 30%;
	font-family: var(--font-en-serif);
	color: var(--c-brown);
	text-align: right;
}

.price_table tr:hover {
	background: rgba(52, 52, 52, 0.03);
}

.price_table tr:hover th {
	padding-left: 8px;
}

.price_notes {
	margin-top: 2.5em;
}

.price_notes li {
	position: relative;
	padding-left: 1.2em;
	font-size: 1.3rem;
	line-height: 1.9em;
	color: var(--c-text);
	opacity: 0.85;
}

.price_notes li::before {
	content: "※";
	position: absolute;
	left: 0;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	#price_menu_block {
		padding: 80px 0;
	}
	.price_table_grid {
		grid-template-columns: 1fr;
		row-gap: 0;
		margin-top: 40px;
	}

	.price_table_group+.price_table_group {
		margin-top: 3vw;
	}
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {

	.price_table th,
	.price_table td {
		font-size: 1.3rem;
	}
}

/*--- 和装着付け アンカーナビ (#wasou_anchor_nav) ---*/
#wasou_anchor_nav {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 1.5vw 0;
	border: 1px solid var(--c-brown);
	border-radius: var(--radius-lg);
}

#wasou_anchor_nav .contents_inner {
	max-width: 85vw;
	flex-wrap: wrap;
	row-gap: 20px;
}

#wasou_anchor_nav li {
	margin: 0 20px;
}

#wasou_anchor_nav a {
	position: relative;
	display: inline-block;
	font-family: var(--font-jp-serif);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--c-text);
}

#wasou_anchor_nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--c-brown);
	transition: width 0.3s ease, left 0.3s ease;
}

#wasou_anchor_nav a:hover::after,
#wasou_anchor_nav a.is_active::after {
	left: 0;
	width: 100%;
}

#wasou_anchor_nav a.is_active {
	color: var(--c-brown);
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
	#wasou_anchor_nav .contents_inner {
		max-width: 92vw;
	}
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	#wasou_anchor_nav .contents_inner {
		width: 90%;
		max-width: 100%;
		justify-content: flex-start;
	}

	#wasou_anchor_nav li {
		margin: 0 16px 0 0;
	}
}

/*--- 和装着付け 共通セクション (.wasou_section) ---*/
.wasou_section {
	padding: 8vw 0;
	scroll-margin-top: 100px;
}

.wasou_section:nth-child(odd) {
	background: #fff;
}

.wasou_section_lead {
	margin: 2em auto 0;
	font-size: 1.4rem;
	line-height: 1.9em;
	opacity: 0.85;
}

@media screen and (max-width: 640px) {
.wasou_section {
	padding: 80px 0;
	scroll-margin-top: 100px;
}
}

/*--- プレースホルダー画像枠 (.ph_frame) ---*/
.ph_frame {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f1ec;
	border-radius: var(--radius-sm);
	color: rgba(52, 52, 52, 0.4);
	font-size: 1.1rem;
	line-height: 1.4;
	text-align: center;
}

.ph_frame::before {
	content: attr(data-ph);
}

.ph_frame.is_square {
	aspect-ratio: 1 / 1;
}



/*--- 料金メニュー 補足行 (.price_table) ---*/
.price_table_note {
	display: block;
	margin-top: 0.4em;
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--c-text);
	opacity: 0.7;
}

.price_table tr.price_table_group_row th {
	padding-bottom: 4px;
}

.price_table tr.price_table_sub th,
.price_table tr.price_table_sub td {
	padding: 8px 0 8px 1.4em;
	font-size: 1.6rem;
	color: var(--c-text);
	opacity: 0.85;
}

.price_table tr.price_table_sub td {
	color: var(--c-brown);
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {

	.price_table tr.price_table_sub th,
	.price_table tr.price_table_sub td {
		font-size: 1.15rem;
	}
}

/*--- 装い別 持ち物リスト (#wasou_items) ---*/
.attire_tabs {
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 2.4vw;
}

.attire_tab_btn {
	font-family: inherit;
	cursor: pointer;
	border: 1px solid rgba(52, 52, 52, 0.2);
	background: #fff;
	border-radius: 999px;
	padding: 9px 20px;
	font-size: 1.5rem;
	color: var(--c-text);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.attire_tab_btn.is_active {
	background: var(--c-brown);
	border-color: var(--c-brown);
	color: #fff;
	font-weight: 700;
}

.attire_progress {
	gap: 20px;
	max-width: 760px;
	margin: 2.4vw auto 0;
}

.attire_progress_bar {
	flex: 1;
	height: 8px;
	border-radius: 999px;
	background: rgba(52, 52, 52, 0.1);
	overflow: hidden;
}

.attire_progress_fill {
	display: block;
	height: 100%;
	width: 0%;
	background: var(--c-red);
	border-radius: 999px;
	transition: width 0.2s ease;
}

.attire_progress_text {
	flex-shrink: 0;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--c-brown);
	white-space: nowrap;
}

.attire_groups {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 2.4vw;
}

.attire_group {
	background: #fff;
	border: 1px solid rgba(52, 52, 52, 0.12);
	border-radius: var(--radius-lg);
	padding: 20px 22px;
}

.attire_group.is_hidden {
	display: none;
}

.attire_group_head {
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--c-brown);
}

.attire_group_label {
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--c-text);
}

.attire_group_en {
	font-family: var(--font-en-serif);
	font-size: 1rem;
	letter-spacing: 0.1em;
	color: rgba(52, 52, 52, 0.45);
}

.attire_group_desc {
	margin-top: 6px;
	font-size: 1.1rem;
	color: rgba(52, 52, 52, 0.55);
}

.attire_item_list {
	margin-top: 6px;
}

.attire_item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(52, 52, 52, 0.08);
	cursor: pointer;
}

.attire_item.is_hidden {
	display: none;
}

.attire_item:last-child {
	border-bottom: none;
}

.attire_item_check {
	flex-shrink: 0;
	position: relative;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	border: 1.5px solid rgba(52, 52, 52, 0.35);
	border-radius: 4px;
	background: #fff;
}

.attire_item.is_checked .attire_item_check {
	background: var(--c-brown);
	border-color: var(--c-brown);
}

.attire_item.is_checked .attire_item_check::after {
	content: "";
	position: absolute;
	left: 4.5px;
	top: 1px;
	width: 5px;
	height: 9px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(40deg);
}

.attire_item_thumb {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	font-size: 0.9rem;
}

.attire_item_body {
	min-width: 0;
}

.attire_item_name {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--c-text);
}

.attire_item.is_checked .attire_item_name {
	color: rgba(52, 52, 52, 0.4);
	text-decoration: line-through;
}

.attire_item_flag {
	margin-left: 6px;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--c-red);
}

.attire_item_note {
	display: block;
	margin-top: 0;
	font-size: 1.3rem;
	line-height: 1.5em;
	color: rgb(52 52 52 / 60%);
}

.wasou_items_note {
	max-width: 760px;
	margin-top: 2em;
	font-size: 1.3rem;
	line-height: 1.9em;
	opacity: 0.85;
}

.wasou_contact_cta {
	margin: 5em auto 0;
	padding: 40px 32px;
	background: #f3f1ec;
	border-radius: var(--radius-lg);
	text-align: center;
}

.wasou_contact_cta_title {
	font-family: var(--font-jp-serif);
	font-weight: 700;
	font-size: 2.4rem;
	color: var(--c-brown);
}

.wasou_contact_text {
	margin: 0.8em auto 0;
	font-size: 1.4rem;
	line-height: 1.8em;
	opacity: 0.85;
}

.wasou_contact_btn {
	margin-top: 24px;
	width: auto;
	padding: 0 28px;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	.attire_groups {
		margin-top: 40px;
		grid-template-columns: 1fr;
	}

	.wasou_contact_cta {
		padding: 32px 24px;
	}
}

/*--- ご来店時の注意事項 (#wasou_notes) ---*/
.wasou_notes_row {
	display: flex;
	align-items: center;
	gap: 6vw;
}

.wasou_notes_row .h2_style {
	width: 320px;
	flex-shrink: 0;
}

.wasou_notes_row .price_notes {
	flex: 1;
	min-width: 0;
	margin-top: 0;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	.wasou_notes_row {
		flex-direction: column;
		gap: 32px;
	}

	.wasou_notes_row .h2_style {
		width: 100%;
	}
}

.step_stepper .ph_frame {
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 30px auto 0;
	overflow: hidden;      /* ← divの場合はこれで中身をクリップ */
	border-radius: var(--radius-sm);
}

.step_stepper .ph_frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


.step_stepper .ph_frame.is_square {
	display: block;
	width: 100%;
	max-width: 350px;
	margin: 30px auto 0;
	overflow: hidden;      /* ← divの場合はこれで中身をクリップ */
	border-radius: var(--radius-sm);
}

.step_stepper .ph_frame.is_square img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media screen and (max-width: 640px) {
	.step_stepper {
		margin: 40px auto 0;
	}
	.step_stepper .ph_frame.is_square {
		margin: 20px auto 0;
			max-width: 200px;
	}
	
}

/*--- ステッパーUI (.step_stepper) ---*/
.step_stepper {
	margin: 2.4vw auto 0;
}

.step_list {
	display: flex;
	gap: 16px;
	align-items: stretch;
}

.step_card {
	flex: 1;
	min-width: 0;
	background: #fff;
	border: 1px solid rgba(52, 52, 52, 0.15);
	border-radius: var(--radius-lg);
	padding: 20px;
	opacity: 0.5;
	cursor: pointer;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}

.step_card.is_active {
	opacity: 1;
	border: 2px solid var(--c-brown);
}

.step_card.is_sm {
	padding: 14px;
}

.step_head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

.step_dot {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(52, 52, 52, 0.1);
	color: rgba(52, 52, 52, 0.5);
	font-size: 1.3rem;
	font-weight: 700;
}

.step_card.is_active .step_dot {
	background: var(--c-brown);
	color: #fff;
}

.step_title {
	font-size: 1.8rem;
	font-weight: 700;
}

.step_card.is_sm .step_title {
	font-size: 1.8rem;
}

.step_text {
	font-size: 1.4rem;
	line-height: 1.7em;
	color: rgba(52, 52, 52, 0.7);
}

.step_img {
	margin-top: 12px;
	width: 100%;
}

.step_nav {
	gap: 18px;
	margin-top: 16px;
}

.step_prev,
.step_next {
	font-family: inherit;
	cursor: pointer;
	border-radius: 999px;
	padding: 8px 22px;
	font-size: 1.3rem;
	transition: opacity 0.2s ease;
}

.step_prev {
	border: 1.5px solid rgba(52, 52, 52, 0.35);
	background: #fff;
	color: var(--c-text);
}

.step_next {
	border: 1.5px solid var(--c-brown);
	background: var(--c-brown);
	color: #fff;
}

.step_prev.is_disabled,
.step_next.is_disabled {
	opacity: 0.4;
	pointer-events: none;
}

.step_counter {
	font-size: 1.3rem;
	font-weight: 700;
	color: rgba(52, 52, 52, 0.7);
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	.step_list {
		flex-wrap: wrap;
	}

	.step_list:not(.is_5col):not(.is_4col) {
		flex-direction: column;
	}

	.step_list.is_5col .step_card,
	.step_list.is_4col .step_card {
		flex: 1 1 calc(50% - 8px);
	}
	.step_nav {
display: none;
}
.step_card {
	opacity: 1;
	border: 2px solid var(--c-brown);
}
.step_dot {
	background: var(--c-brown);
	color: #fff;
}

}

@media screen and (max-width: 640px) {

	.step_list.is_5col .step_card,
	.step_list.is_4col .step_card {
		flex: 1 1 calc(100% - 8px);
	}
}

/*--- 着付けの流れ タブ切替 (#wasou_flow) ---*/
.flow_tabs {
	flex-wrap: wrap;
	gap: 0;
	border-bottom: 2px solid var(--c-brown);
	margin-top: 2em;
}

.flow_tab_btn {
	font-family: inherit;
	cursor: pointer;
	border: none;
	border-radius: 8px 8px 0 0;
	background: rgba(52, 52, 52, 0.08);
	color: rgba(52, 52, 52, 0.55);
	padding: 13px 26px;
	font-size: 1.8rem;
	font-weight: 700;
}

.flow_tab_btn.is_active {
	background: var(--c-brown);
	color: #fff;
}

.flow_panel {
	display: none;
	max-width: 760px;
	margin: 3vw auto 0;
}

.flow_panel.is_active {
	display: block;
}

.flow_phase:not(:first-child) {
	margin-top: 3vw;
}

.flow_phase_label {
	display: inline-block;
	background: var(--c-text);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 5px 18px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.flow_step {
	background: #fff;
	border: 1px solid rgba(52, 52, 52, 0.12);
	border-radius: var(--radius-lg);
	padding: 20px 22px;
}

.flow_step_head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.flow_step_num {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: var(--c-brown);
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
}

.flow_step_title {
	font-size: 2.4rem;
	font-weight: 700;
}

.flow_step_body {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.flow_step_lines {
	flex: 1;
	min-width: 0;
}

.flow_step_lines p {
	font-size: 1.5rem;
	line-height: 1.75em;
	color: rgba(52, 52, 52, 0.75);
	margin-bottom: 4px;
}

.flow_step_lines p.is_strong {
	color: var(--c-text);
	font-weight: 700;
}

.flow_step_links {
	margin-top: 10px;
}

.flow_step_links li {
	position: relative;
	padding-left: 1.1em;
	font-size: 1.25rem;
	color: var(--c-brown);
	text-decoration: underline;
}

.flow_step_imgs {
	flex-shrink: 0;
	display: flex;
	gap: 8px;
}

.flow_step_imgs .ph_frame {
	width: 120px;
	max-width: 120px;
	font-size: 0.95rem;
	aspect-ratio: 1 / 1;
}

.flow_step_imgs .ph_frame img {
	object-fit: cover;
	aspect-ratio: 1 / 1;
	object-position: top;
}

.flow_step_arrow {
	text-align: center;
	color: var(--c-brown);
	font-size: 1.5rem;
	margin: 8px 0;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	.flow_step_body {
		flex-direction: column;
	}

	.flow_step_imgs {
		width: 100%;
	}

	.flow_step_imgs .ph_frame {
		flex: 1;
		width: auto;
	}
}
@media screen and (max-width: 640px) {
.flow_step_title {
	font-size: 1.8rem;
}
.flow_step_lines p {
	line-height: 1.7;
	font-size: 1.4rem;
}
}


/*--- お手入れ：休息作法 (.care_rest_list) ---*/
.care_rest_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 2.4vw;
	max-width: 1200px;
	/* 300px * 3 + gap(20px) * 2 の目安。実際のカード幅に合わせて調整 */
	margin-left: auto;
	margin-right: auto;
}

.care_rest_item {
	border: 1px solid rgba(52, 52, 52, 0.12);
	border-radius: var(--radius-lg);
	overflow: hidden;
	padding: 10px 10px 20px;
	max-width: 500px;
	margin: 0 auto;
	/* 念のためカード自体も中央寄せ */
}

.care_rest_img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 0;
	margin: 0 auto;
}

.care_rest_title {
	margin: 18px 22px 6px;
	font-size: 2.0rem;
	font-weight: 700;
}

.care_rest_text {
	margin: 0 22px;
	font-size: 1.5rem;
	line-height: 1.8em;
	color: rgba(52, 52, 52, 0.7);
}

.wasou_care_fold_head {
	margin-top: 6vw;
}

/*--- お手入れ：たたみ方 (.fold_group) ---*/
.fold_group {
	margin: 3vw auto 0;
}

.flow_group_title {
	font-size: 2.2rem;
	font-weight: 700;
}

.fold_group:not(:first-child) {
	margin-top: 1.5em;
	padding-top: 1.5em;
	border-top: 1px solid rgba(52, 52, 52, 0.12);
}

.fold_group_text {
	margin-top: 0.6em;
	font-size: 1.4rem;
	color: rgba(52, 52, 52, 0.7);
}

.fold_kimono {
	display: flex;
	gap: 70px;
	align-items: center;
	margin-top: 5px;
}

.fold_kimono_list {
	flex: 1;
	min-width: 0;
}

.fold_kimono_list li {
	display: flex;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(52, 52, 52, 0.1);
}

.fold_kimono_num {
	flex-shrink: 0;
	font-family: var(--font-en-serif);
	font-size: 2.4rem;
	color: var(--c-brown);
}

.fold_kimono_text {
	font-size: 1.8rem;
	line-height: 1.7em;
	color: rgba(52, 52, 52, 0.75);
}

.fold_kimono_img {
	width: 320px;
	flex-shrink: 0;

}

.fold_kimono_img img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--radius-sm);
	max-width: 250px;
		margin: auto;
}

.fold_stepper_row {
	display: flex;
	gap: 26px;
	align-items: flex-start;
	margin-top: 1.2em;
}

.fold_stepper_row .step_stepper {
	flex: 1;
	min-width: 0;
	margin-top: 0;
}

.fold_stepper_img {
	width: 220px;
	flex-shrink: 0;
}

.fold_stepper_img .ph_frame {
	width: 100%;
	aspect-ratio: 1 / 1;
	max-width: 200px;
	margin: auto;
}

.fold_stepper_note {
	margin-top: 6px;
	font-size: 1.1rem;
	text-align: center;
	color: rgba(52, 52, 52, 0.5);
}


.fold_group_head {
	display: flex;
	color: var(--c-text) !important;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	.care_rest_list {
		gap: 15px;
	}

	.care_rest_text {
		margin: 0 10px;
	}

	.care_rest_title {
		margin: 7px 10px 7px;
	}

	.fold_kimono {
		flex-direction: column;
		gap: 30px;
	}
	.fold_kimono_img {
		width:auto;
	}
.fold_kimono_img img {
	    aspect-ratio: 1.3 / 1;
}
	.fold_stepper_row {
		flex-direction: column;
	}

	.fold_stepper_img {
		width: 100%;
	}

	/*--- fold_group アコーディオン ---*/

.fold_group_btn {
	position: relative;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border: 1px solid rgba(96, 65, 61, 0.3);
	border-radius: 50%;
	background: none;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.fold_group_btn::before,
.fold_group_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	border-radius: 999px; /* ← 追加：線の両端を丸くする */
	background: var(--c-brown);
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease, background 0.3s ease;
}

.fold_group_btn::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.fold_group.is_open .fold_group_btn {
	background: var(--c-brown);
}

.fold_group.is_open .fold_group_btn::before,
.fold_group.is_open .fold_group_btn::after {
	background: #fff;
}

.fold_group.is_open .fold_group_btn::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.fold_group_body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.fold_group.is_open .fold_group_body {
	margin-top: 1.2em;
}

/* スマホでボタンサイズを少し小さく */
@media screen and (max-width: 640px) {
	.fold_group_btn {
		width: 30px;
		height: 30px;
	}
}
}

@media screen and (max-width: 640px) {
	.care_rest_list {
		margin-top: 40px;
		margin-bottom: 70px;
		grid-template-columns: repeat(1, 1fr);
	}
	.care_rest_item {
		max-width: 400px;
	}
	.care_rest_img {
		max-width: 200px;
		margin: 5px auto 15px;
	}
	.care_rest_title {
		text-align: center;
		font-size: 1.8rem;
	}
	.care_rest_text {
		font-size: 1.4rem;
	}
	.fold_kimono_text {
	font-size: 1.4rem;
}

.flow_group_title {
	font-size: 1.8rem;
	font-weight: 700;
}

}


/*--- 貸衣装ギャラリー (#costume_gallery_block) ---*/
#costume_gallery_block {
	padding: 5vw 0 6vw;
	background: #fff;
}

.costume_gallery_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 3vw;
}

.costume_gallery_list li {
	overflow: hidden;
	border-radius: var(--radius-lg);
	transition: box-shadow 0.4s ease;
}

.costume_gallery_list li:hover {
	box-shadow: 0 20px 40px rgba(52, 52, 52, 0.12);
}

.costume_gallery_list img {
	width: 100%;
	aspect-ratio: 400 / 460;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.costume_gallery_list li:hover img {
	transform: scale(1.06);
}

.costume_gallery_note {
	max-width: 760px;
	margin: 2.4em auto 0;
	font-size: 1.4rem;
	line-height: 1.9em;
	text-align: center;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {

	#costume_gallery_block {
		padding: 80px 0;
	}
	.costume_gallery_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		margin-top: 40px;
	}
}

/*--- フォトギャラリー (#photo_gallery_block) ---*/
#photo_gallery_block {
	padding: 5vw 0 6vw;
	background: #fff;
}

.photo_gallery_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 3vw;
}

.photo_gallery_list li {
	position: relative;
}

.photo_gallery_list li .photo_gallery_img_wrap {
	overflow: hidden;
	border-radius: var(--radius-lg);
	transition: box-shadow 0.4s ease;
}

.photo_gallery_list li:hover .photo_gallery_img_wrap {
	box-shadow: 0 20px 40px rgba(52, 52, 52, 0.12);
}

.photo_gallery_list img {
	width: 100%;
	aspect-ratio: 400 / 460;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.photo_gallery_list li:hover img {
	transform: scale(1.06);
}

.photo_gallery_label {
	display: block;
	margin-top: 1em;
	font-family: var(--font-jp-serif);
	font-weight: 700;
	font-size: 2rem;
	text-align: center;
	color: var(--c-text);
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
	#photo_gallery_block {
		padding: 80px 0;
	}
	.photo_gallery_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-top: 40px;
	}
}