@charset "utf-8";		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}

		:root {
			--white: #ffffff;
			--off-white: #f5f2ee;
			--black: #0e0d0c;
			--gray: #888480;
			--text-on-photo: rgba(255,255,255,0.92);
			}

		body {
			background: var(--white);
			color: var(--black);
			font-family: 'Lato',"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Arial,verdana,sans-serif;
		}

		header.header,
		.crumbsList,
		.footer {
			display: none;
		}

		.for-pc .hero {
			position: relative;
			width: 100%;
			height: 140vh;
			min-height: 560px;
			overflow: hidden;
		}

		.for-pc .hero-img {
			position: relative;
			inset: 0;
			object-fit: cover;
			object-position: center top;
			transform: scale(0.8) rotate(-90deg);
			margin-top: -35%
		}

		/* ========== HERO INTRO ANIMATION ========== */

		/* Ảnh: bắt đầu scale lớn + mờ, thu về bình thường */
		.for-pc .hero-img,
		.for-sp .hero-img {
			animation: heroImgIntro 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
		}

		/* PC: ban đầu ảnh đã rotate(-90deg) + scale(0.8), nên animation phải kết hợp đúng */
		.for-pc .hero-img {
			transform: scale(1.08) rotate(-90deg);
			animation: heroImgIntroPC 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
		}

		@keyframes heroImgIntroPC {
			0% {
				opacity: 0;
				transform: scale(1.15) rotate(-90deg);
				margin-top: -33%;
			}
			100% {
				opacity: 1;
				transform: scale(0.8) rotate(-90deg);
				margin-top: -35%;
			}
		}

		.for-sp .hero-img {
			transform: scale(1.08);
			animation: heroImgIntroSP 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
		}

		@keyframes heroImgIntroSP {
			0% {
				opacity: 0;
				transform: scale(1.12);
			}
			100% {
				opacity: 1;
				transform: scale(1);
			}
		}

		/* Label block: ẩn ban đầu */
		.for-pc .label-block,
		.for-sp .label-block {
			opacity: 0;
		}

		/* Divider: grow từ trái sang phải */
		.for-pc .s1-divider,
		.for-sp .s1-divider {
			transform-origin: left center;
			transform: scaleX(0);
		}

		/* Các text span trong label: ẩn ban đầu */
		.for-pc .label-brand,
		.for-pc .label-year,
		.for-pc .label-season,
		.for-pc .label-full,
		.for-pc .label-look,
		.for-sp .label-brand,
		.for-sp .label-year,
		.for-sp .label-season,
		.for-sp .label-full,
		.for-sp .label-look {
			opacity: 0;
			transform: translateX(-20px);
		}

		/* Active states (toggled via JS) */
		.hero-label-visible {
			opacity: 1 !important;
		}

		.hero-divider-grow {
			transform: scaleX(1) !important;
			transition: transform 1s ease !important;
		}

		.hero-text-in {
			opacity: 1 !important;
			transform: translateY(0) !important;
			transition: opacity 0.7s ease, transform 0.7s ease !important;
		}

		.for-pc .label-block {
			position: absolute;
			left: 0;
			right: 0;
			top: 62%;
			transform: translateY(-50%);
			z-index: 4;
			padding: 0 3rem;
			display: flex;
			flex-direction: column;
		}

		.for-pc .s1-top-row {
			display: flex;
			justify-content: space-between;
			align-items: flex-end;
			padding-bottom: 6px;
		}

		.for-pc .s1-divider {
			width: 100%;
			height: 2px;
			background: #fff200;
		}

		.for-pc .s1-bottom-row {
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			padding-top: 6px;
		}

		.for-pc .label-brand {
			font-size:30px;
			color: #fff200;
			font-weight: 500;
		}

		.for-pc .label-year,
		.for-pc .label-season,
		.for-pc .label-full,
		.for-pc .label-look {
			font-size: 25px;
			color: #fff200;
			font-weight: 500;
			letter-spacing: 1px;
		}

		.for-pc .label-season {
			margin-right: 185px;
		}

		.for-pc .label-year {
			margin-right: 130px;
		}

		.for-pc .label-full {
			 margin-left: 320px;
		}

		.for-pc .label-look {
			margin-right: 75px;
		}

		.for-pc .bg-wrapper {
			position: relative;
			width: 100%;
		}

		/* PC */
		.for-pc .s3-bg-wrapper::before {
			content: '';
			position: absolute;
			inset: 0;
			background-image: url('/photo/page/20260508/007.jpg');
			background-size: 100% 2000px;
			background-position: top center;
			background-repeat: no-repeat;
			z-index: 0;
		}

		.for-pc .s3-bg-wrapper {
			position: relative;
			width: 100%;
			height: 1587px;
			overflow: hidden;
			z-index: 1;
		}

		.for-pc .bg-wrapper-img {
			display: none;
		}

		.for-pc .lookbook {
			position: relative;
			z-index: 2;
			width: 100%;
			padding: 7% 23% 0 23%;
			margin-bottom: -55px;
		}

		.for-pc .lookbook-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 2%;
		}

		.for-pc .look-card {
			display: flex;
			flex-direction: column;
		}

		.for-pc .look-card .card-header {
			padding: 10px 10px 0px 10px;
		}

		.for-pc .look-card .card-img {
			padding: 10px;
		}

		.for-pc .look-card:last-child {
			border-right: none;
		}

		.for-pc .card-header {
			position: relative;
			padding: 10px 20px 0px;
			background-color: #fff;
			font-size: 13px;
		}

		.for-pc .lookbook .card-header,
		.for-pc .s4-wrap .card-header,
		.for-pc .s5-wrap .card-header,
		.for-pc .s6-wrap .card-header,
		.for-pc .s7-wrap .card-header,
		.for-pc .s8-wrap .card-header {
			background: #fffdf7;
			padding-top: 20px;
		}

		.for-pc .lookbook .card-img,
		.for-pc .s4-wrap .card-img-bg,
		.for-pc .s5-wrap .card-img-bg,
		.for-pc .s6-wrap .card-img,
		.for-pc .s7-wrap .card-img,
		.for-pc .s8-wrap .card-img-bg {
			background: #fffdf7;
		}

		.for-pc .s6-wrap .s6-slider,
		.for-pc .s7-wrap .s7-slider {
			background: #fffdf7;
			padding-top: 40px;
		}

		.for-pc .lookbook .ch-divider {
			margin: 5px 0px;
		}

		.for-pc .lookbook .card-header {
			font-size: 7px;
		}

		.for-pc .ch-top {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.for-pc .ch-brand {
			font-weight: 500;
			letter-spacing: 0.1em;
			color: #000;
		}

		.for-pc .lookbook .ch-year {
			margin-right: 40px;
		}

		.for-pc .lookbook .ch-count {
			margin-right: 0px;
		}
		
		.for-pc .lookbook .ch-name {
			margin-left: 35px;
		}

		.for-pc .ch-year,
		.for-pc .ch-season {
			font-weight: 500;
			letter-spacing: 0.08em;
			color: #000;
			margin-right: 50px;
		}

		.for-pc .ch-year {
			margin-right: 70px;
		}

		.for-pc .lookbook .ch-year {
			margin-right: 45px;
		}


		.for-pc .lookbook .ch-season {
			margin-right: 30px;
		}

		.for-pc .ch-count {
			margin-right: 0px;
		}

		.for-pc .ch-name {
			margin-left: 50px;
		}

		.for-pc .ch-divider {
			width: 100%;
			height: 1px;
			background: #000;
			margin: 10px 0px;
		}

		.for-pc .ch-bottom {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.for-pc .ch-name, .for-pc .ch-count {
			font-weight: 500;
			color: #000;
		}

		.for-pc .card-img {
			position: relative;
			width: 100%;
			max-width: 585px;
			overflow: hidden;
			padding: 10px 20px 20px 20px;
			background: #fff;
			display: flex;
			justify-content: center;
			align-items: center;
		}

		.for-pc .card-img img {
			width: 100%;
			height: 100%;
			object-position: center top;
			display: block;
		}

		.for-pc .look-num {
			position: absolute;
			bottom: 1.2rem;
			left: 1rem;
			font-size: 1.3rem;
			font-weight: 300;
			font-style: italic;
			color: #1a1a18;
			letter-spacing: 0.04em;
		}

		.for-pc .card-caption {
			position: relative;
			color: #000;
			letter-spacing: 0.04em;
			line-height: 1.7;
			text-align: center;
			font-size: 15px;
			font-weight: 500;
		}

		.for-pc .s3-wrap .card-caption a {
			color: #fff;
		}

		.for-pc .s3-wrap {
			position: absolute;
			inset: 0;
			z-index: 2;
			display: flex;
			justify-content: center;
			align-items: center;
			filter: none;
			margin-top: 85px;
		}

		.for-pc .s4-wrap {
			position: relative;
			z-index: 2;
			padding: 0 0 90px;
			display: flex;
			justify-content: center;
			margin-top: -195px;
			flex-direction: column;
			align-items: center;
		}

		.for-pc .s4-strip {
			position: relative;
			z-index: 1;
			display: flex;
			width: 65%;
			transform: rotate(8deg);
			margin-top: -10px;
		}

		.for-pc .s4-strip img {
			width: 33.33%;
			object-fit: cover;
			object-position: top;
			display: block;
		}

		.for-pc .s5-wrap {
			position: relative;
			z-index: 2;
			padding: 0 0 90px;
			display: flex;
			justify-content: center;
			flex-direction: column;
			align-items: center;
		}

		.for-pc .s5-strip {
			position: relative;
			z-index: 1;
			width: 670px;
			margin-top: -150px;
			transform: rotate(90deg);
			margin-bottom: -55px;
			overflow: hidden;
		}

		.for-pc .s5-strip img {
			width: 85%;
			object-fit: cover;
			object-position: top;
			display: block;
			transform: scale(1.2) translateY(60px);
		}

		.for-pc .s6-wrap {
			position: relative;
			z-index: 2;
			padding: 0 0 90px;
			display: flex;
			justify-content: center;
			flex-direction: column;
			align-items: center;
		}

		.for-pc .s6-slider-inner,
		.for-pc .s7-slider-inner {
			width: 100%;
			overflow: hidden;
		}

		.for-pc .s6-slider-track,
		.for-pc .s7-slider-track {
			display: block;
			position: relative;
			transition: none;
			transform: none !important;
		}

		.for-pc .s6-slide {
			transform: scale(1.4) translate(10px, -10px);
			transform-origin: center top;
		}

		.for-pc .s6-slide,
		.for-pc .s7-slide {
			min-width: unset;
			width: 100%;
			position: absolute;
			top: 0;
			left: 0;
			opacity: 0;
			transition: opacity 1s ease;
		}

		.for-pc .s6-slide.active,
		.for-pc .s7-slide.active{
			opacity: 1;
			position: relative;
		}

		.for-pc .s7-wrap {
			position: relative;
			z-index: 2;
			padding: 0 0 90px;
			display: flex;
			justify-content: center;
			flex-direction: column;
			align-items: center;
		}

		.for-pc .s8-wrap {
			position: relative;
			z-index: 2;
			padding: 0 0 90px;
			display: flex;
			justify-content: center;
			flex-direction: column;
			align-items: center;
		}

		.for-pc .s8-strip {
			position: relative;
			z-index: 1;
			width: 740px;
			margin-bottom: -360px;
		}

		.for-pc .s8-strip img {
			width: 100%;
			object-fit: cover;
			object-position: top;
			display: block;
		}

		.for-pc .flex-column {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}

		.for-pc .single-card {
			position: relative;
			width: 100%;
			max-width: 585px;
			display: flex;
			flex-direction: column;
			z-index: 2;
		}

		.for-pc .for-pc footer {
			background: var(--off-white);
			padding: 0px 0 150px;
			text-align: center;
		}
		.for-pc .footer-logo-wrap {
			display: inline-flex;
			flex-direction: column;
			align-items: center;
			gap: 10px;
			margin-bottom: 180px;
			width: 100%;
		}
		.for-pc .footer-nav {
			display: flex;
			justify-content: center;
			gap: 215px;
			margin-bottom: 20px;
		}
		.for-pc .footer-nav a {
			font-size: 17px;
			font-weight: 500;
			text-transform: uppercase;
			transition: opacity 0.2s;
		}
		.for-pc .footer-nav a:hover { 
			opacity: 0.5; 
		}
		.for-pc .footer-nav-row2 {
			display: flex;
			justify-content: center;
			font-weight: 500;
		}
		.for-pc .footer-nav-row2 a {
			font-size: 17px;
			text-transform: uppercase;
			transition: opacity 0.2s;
		}
		.for-pc .footer-nav-row2 a:hover { 
			opacity: 0.5; 
		}

		.for-pc .footer-nav-column {
			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;
			text-align: left;
			gap: 215px;
			font-size: 20px;
			line-height: 2;
			margin-bottom: 150px;
			font-weight: 500;
		}
		.for-pc .footer-content-right,
		.for-pc .footer-content-left {
			display: flex;
			flex-direction: column;
		}

		.lazy-reveal {
			opacity: 0;
			transition: opacity 1.1s ease;
		}

		.lazy-reveal.is-visible {
			opacity: 1;
		}

		.s6-slider-track,
		.s7-slider-track {
			opacity: 1 !important;
		}

		.for-sp {
			display: none;
		}

		@media (max-width: 767px) {
			.for-pc { display: none; }
			.for-sp { display: block; }
		}

		/* HERO */
		.for-sp .hero {
			position: relative;
			width: 100%;
			overflow: hidden;
			aspect-ratio: 9/13;
		}
		.for-sp .hero-img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: center top;
		}
		.for-sp .label-block {
			position: absolute;
			left: 0; right: 0;
			bottom: 30%;
			z-index: 4;
			display: flex;
			flex-direction: column;
		}
		.for-sp .s1-top-row {
			display: flex;
			justify-content: space-between;
			align-items: flex-end;
			padding-bottom: 4px;
			padding-left: 15px;
			padding-right: 15px;
		}
		.for-sp .s1-divider {
			width: 100%;
			height: 1px;
			background: #fff200;
		}
		.for-sp .s1-bottom-row {
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			padding-top: 4px;
		}
		.for-sp .label-brand { font-size: 18px; color: #fff200; font-weight: 500; }
		.for-sp .label-year,
		.for-sp .label-season,
		.for-sp .label-full,
		.for-sp .label-look { font-size: 17px; color: #fff200; font-weight: 500; }

		.for-sp .label-full {
			padding-left: 60px;
		}

		.for-sp .label-look {
			padding-right: 25px;
		}

		/* LOOKBOOK GRID */
		.for-sp .lookbook {
			position: relative;
			z-index: 2;
			width: 100%;
			padding: 10% 10% 0;
			margin-bottom: -25px;
		}
		.for-sp .lookbook-grid {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 1%;
		}
		.for-sp .look-card {
			display: flex;
			flex-direction: column;
		}
		.for-sp .card-header {
			background: #fff;
			padding: 13px 13px 0;
			font-size: 9px;
		}
		.for-sp .lookbook .card-header {
			font-size: 4px;
			padding: 5px 5px 0;
		}
		.for-sp .ch-top {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
		.for-sp .ch-brand,
		.for-sp .ch-year,
		.for-sp .ch-season { font-weight: 500; letter-spacing: 0.06em; color: #000; }
		.for-sp .ch-divider {
			width: 100%;
			height: 1px;
			background: #000;
			margin: 6px 0;
		}
		.for-sp .ch-year {
			margin-right: 65px;
		}
		.for-sp .ch-season {
			margin-right: 30px;
		}
		.for-sp .ch-count {
			margin-right: 0px;
		}
		.for-sp .ch-name {
			margin-left: 30px;
		}
		.for-sp .ch-bottom {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
		.for-sp .ch-name,
		.for-sp .ch-count { font-weight: 500; color: #000; }
		.for-sp .card-img {
			width: 100%;
			background: #fff;
			padding: 13px;
		}

		.for-sp .lookbook .card-img
		{
			padding: 5px;
		}

		.for-sp .lookbook .ch-year {
			margin-right: 15px;
		}

		.for-sp .lookbook .ch-count {
			margin-right: 0px;
		}
		
		.for-sp .lookbook .ch-name {
			margin-left: 20px;
		}

		.for-sp .lookbook .ch-season {
			margin-right: 20px;
		}

		.for-sp .card-img img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: center top;
			display: block;
		}

		.for-sp .card-caption {
			color: #000;
			letter-spacing: 0.03em;
			line-height: 1.6;
			text-align: center;
			font-size: 12px;
			font-weight: 500;
		}

		.for-sp .s3-wrap .card-caption a {
			color: #fff;
		}

		/* SINGLE CARD */
		.for-sp .flex-column { display: flex; flex-direction: column; }
		.for-sp .single-card {
			position: relative;
			width: 95%;
			margin: 0 auto;
			display: flex;
			flex-direction: column;
			z-index: 2;
		}

		/* BG WRAPPER */
		.for-sp .bg-wrapper { 
			position: relative; 
			width: 100%;
		 }
		/* SP */
		.for-sp .s3-bg-wrapper::before {
			content: '';
			position: absolute;
			inset: 0;
			background-image: url('/photo/page/20260508/007.jpg');
			background-size: 100% 561px;
			background-position: top center;
			background-repeat: no-repeat;
			z-index: 0;
			transform-origin: top;
		transform: scale(3.4) translateX(-38px);
		}

		.for-sp .s3-bg-wrapper {
			position: relative;
			width: 100%;
			height: 1300px;
			overflow: hidden;
			z-index: 1;
		}

		.for-sp .bg-wrapper-img {
			display: none;
		}

		.for-sp .s3-wrap {
			position: absolute;
			inset: 0;
			z-index: 2;
			display: flex;
			justify-content: center;
			align-items: center;
			filter: none;
			padding-top: 0;
			margin-top: 125px;
		}

		/* S4 */
		.for-sp .s4-wrap {
		position: relative;
		z-index: 2;
		padding: 0 0 70px;
		display: flex;
		justify-content: center;
		margin-top: -190px;
		flex-direction: column;
		align-items: center;
		overflow: hidden;
		}
		.for-sp .s4-strip {
		position: relative;
		z-index: 1;
		display: flex;
		width: 100%;
		transform: rotate(83deg);
		margin-top: -87px;
		margin-right: 36px;
		}
		.for-sp .s4-strip img {
		width: 80%;
		object-fit: cover;
		object-position: top;
		display: block;
		}

		/* S5 */
		.for-sp .s5-wrap {
		position: relative;
		z-index: 2;
		padding: 0 0 50px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		}
		.for-sp .s5-strip {
		position: relative;
		z-index: 1;
		width: 100%;
		margin: -157px auto 0;
		overflow: hidden;
		}
		.for-sp .s5-strip img {
		width: 100%;
		object-fit: cover;
		object-position: top;
		display: block;
		transform: rotate(90deg) translateY(37px);
		}

		/* S6 / S7 sliders */
		.for-sp .s6-wrap,
		.for-sp .s7-wrap {
		position: relative;
		z-index: 2;
		padding: 0 0 70px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		}
		.for-sp .s6-slider-inner,
		.for-sp .s7-slider-inner {
		width: 100%;
		overflow: hidden;
		}
		.for-sp .s6-slider-track,
		.for-sp .s7-slider-track {
			display: block;
			position: relative;
			transition: none;
			transform: none !important;
		}
		.for-sp .s6-slide {
			transform: scale(1.4) translate(5px, 0px);
			transform-origin: center top;
		}
		.for-sp .s6-slide,
		.for-sp .s7-slide {
			min-width: unset;
			width: 100%;
			position: absolute;
			top: 0;
			left: 0;
			opacity: 0;
			transition: opacity 1s ease;
		}

		.for-sp .s6-slide.active,
		.for-sp .s7-slide.active{
			opacity: 1;
			position: relative;
		}

		.for-sp .lookbook .card-header,
		.for-sp .s4-wrap .card-header,
		.for-sp .s5-wrap .card-header,
		.for-sp .s6-wrap .card-header,
		.for-sp .s7-wrap .card-header,
		.for-sp .s8-wrap .card-header {
			background-color: #fffdf7;
		}

		.for-sp .lookbook .card-img,
		.for-sp .s4-wrap .card-img-bg,
		.for-sp .s5-wrap .card-img-bg,
		.for-sp .s6-wrap .card-img,
		.for-sp .s7-wrap .card-img,
		.for-sp .s8-wrap .card-img-bg {
			background-color: #fffdf7;
		}

		.for-sp .s6-wrap .s6-slider,
		.for-sp .s7-wrap .s7-slider {
			background-color: #fffdf7;
			padding-top: 30px;
		}

		/* S8 */
		.for-sp .s8-wrap {
		position: relative;
		z-index: 2;
		padding: 0 0 50px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		}
		.for-sp .s8-strip {
		position: relative;
		z-index: 1;
		width: 100%;
		overflow: hidden; 
		height: 1023px;
		margin-bottom: -300px;
		}
		.for-sp .s8-strip img {
		width: 100%;
		object-fit: cover;
		object-position: top;
		display: block;
		transform: scale(2);
		padding-top: 179px;
		}

		/* FOOTER */
		.for-sp footer {
		padding: 50px 0 80px;
		text-align: left;
		}
		.for-sp .footer-logo-wrap {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 100px;
		}
		.for-sp .footer-nav-column {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 40px;
		font-size: 13px;
		font-weight: 500;
		line-height: 1.8;
		margin-bottom: 40px;
		padding-left: 30px;
		}
		.for-sp .footer-content-right,
		.for-sp .footer-content-left {
		display: flex;
		flex-direction: column;
		text-align: left;
		}
		.for-sp .footer-nav {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 30px;
		margin-bottom: 20px;
		}
		.for-sp .footer-nav a {
		font-size: 10px;
		font-weight: 500;
		text-transform: uppercase;
		transition: opacity 0.2s;
		}
		.for-sp .footer-nav-row2 {
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 500;
		margin-top: 30px;
		}
		.for-sp .footer-nav-row2 a {
		font-size: 10px;
		text-transform: uppercase;
		transition: opacity 0.2s;
		}

		.for-sp .custom-padding-img-last {
			margin: 50px auto 0px;
		}

		.for-sp .s4-wrap .card-caption {
			margin-top: 625px;
		}

		@media (max-width: 391px) {
			.for-sp .card-caption {
				font-size: 11px;
			}

			.for-sp .label-year,
			.for-sp .label-season,
			.for-sp .label-full,
			.for-sp .label-look {
				font-size: 15px;
			}

			.for-sp .label-full {
				padding-left: 75px;
			}

			.for-sp .s3-bg-wrapper {
				height: 1144px;
			}

			.for-sp .s3-bg-wrapper::before {
				background-size: 100% 496px;
			}

			.for-sp .s3-wrap {
				margin-top: 135px;
			}

			.for-sp .s4-wrap {
				margin-top: -150px;
			}

			.for-sp .s4-wrap .card-caption {
				margin-top: 575px;
			}

			.for-sp .s5-strip {
				margin: -135px auto 0;
			}

			.for-sp .s8-strip {
				margin-bottom: -343px;
			}
		}

		@media (max-width: 376px) {
			.for-sp .card-caption { 
				font-size: 11px;
			}

			.for-sp .s3-bg-wrapper {
				height: 1080px;
			}

			.for-sp .s3-bg-wrapper::before {
				background-size: 100% 475px;
			}

			.for-sp .s3-wrap {
				margin-top: 145px;
			}

			.for-sp .s4-wrap {
				margin-top: -125px;
			}

			.for-sp .s4-wrap .card-caption {
				margin-top: 555px;
			}

			.for-sp .lookbook .ch-name {
				margin-left: 13px;
			}

			.for-sp .lookbook .ch-season {
				margin-right: 11px;
			}

			.for-sp .ch-name {
				margin-left: 30px;
			}

			.for-sp .ch-year {
				margin-right: 45px;
			 }
			
			 .for-sp .lookbook .ch-year {
				margin-right: 30px;
			 }

			 .for-sp .s5-strip {
				margin: -120px auto 0;
			 }

			 .for-sp .s8-strip {
				margin-bottom: -330px;
			}
		}

		@media (max-width: 321px) {
			.for-sp .label-brand {
				font-size: 14px;
			}

			.for-sp .label-year,
			.for-sp .label-season,
			.for-sp .label-full,
			.for-sp .label-look {
				font-size: 12px;
			}

			.for-sp .label-full {
				padding-left: 65px;
			}

			.for-sp .label-look {
				padding-right: 20px;
			}

			.for-sp .s1-divider {
				height: 1px;
			}

			.for-sp .s3-bg-wrapper::before {
				background-size: 100% 410px;
				transform: scale(3.4) translateX(-28px);
			}

			.for-sp .s3-wrap {
				margin-top: 100px;
			}

			.for-sp .card-caption {
				font-size: 9px;
			}

			.for-sp .s3-bg-wrapper {
				height: 960px;
			}

			.for-sp .s4-strip {
				margin-top: -63px;
			}

			.for-sp .s4-wrap .card-caption {
				margin-top: 468px;
			}

			.for-sp .s4-wrap {
				padding: 0 0 55px;
			}

			.for-sp .s5-strip {
				margin-top: -114px;
			}

			.for-sp .s5-strip img {
				transform: rotate(90deg) translateY(24px);
			}

			.for-sp .s6-wrap, .for-sp .s7-wrap {
				padding: 0 0 55px;
			}

			.for-sp .s8-strip img {
				padding-top: 140px;
			}

			.for-sp .s8-strip {
				margin-bottom: -475px;
			}

			.for-sp .custom-padding-img-last {
				margin: 30px auto 0px;
			}

			.for-sp .lookbook .ch-year {
				margin-right: 17px;
			}
			
		}
