@keyframes trans {
	0%{transform: translate(10vw, 0); opacity: 0;}
	100%{transform: translate(0, 0); opacity: .8;}
}
@keyframes trans2 {
	0%{transform: translate(10vw, 0); opacity: 0;}
	100%{transform: translate(0, 0); opacity: 1;}
}
@keyframes trans3 {
	0%{transform: translate(2vw, -1vw) rotate(-15deg);}
	100%{transform: translate(0, 0) rotate(-15deg);}
}
@media screen and (min-width: 600px) {
	#side-cart{
		position: fixed;
		width: 100vw;
		display: flex;
		justify-content: center;
		left: 0;
		bottom: 1vw;
		z-index: 50;
		transition: all .2s;
		opacity: 0;
		pointer-events: none;
	}

	.preload{
		position: fixed;
		left: 0;
		top: 0;
        opacity: 0;
        pointer-events: none;
	}
	#header-logo{
		filter: brightness(50);
		transition: all .2s;
	}

	#page-no{
		position: fixed;
		left: 2.5vw;
		top: 8vw;
		z-index: 150;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#page-no > div{
		width: .5vw;
		height: .5vw;
		margin: .5vw;
		background-color: #fff;
		border-radius: .5vw;
		cursor: pointer;
	}
	#page-no > div:nth-child(1){
		transform: scale(1.5);
	}
	#page-no::after{
		content: "";
		width: .2vw;
		height: 2vw;
		background-color: #fff;
		border-radius: .2vw;
		margin-top: .5vw;
	}


	#main-info{
		padding-top: 8vw;
		padding-bottom: 5vw;
		background-size: cover;
		background-repeat: no-repeat;
		position: relative;
		background-position: left center;
		background-attachment: fixed;
		min-height: calc(100vh - 12vw);
		width: 100vw;
	}
	#main-info-content{
		width: 36vw;
		padding: 3.5vw 5vw;
		margin: 0 0 0 45vw;
		background: rgba(255, 255, 255, .2);
		border-radius: 5vw;
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;	
	    animation: right 1s backwards;
	    animation-delay: 0;
	}
	#main-info-content > h1{
		width: 25vw;
		font-size: 1.5vw;
		line-height: 2vw;
		color: #666;
	}
	#main-info-content > h1 > span{
		display: block;
		font-size: 3vw;
		line-height: 4vw;
		transform: translate(-.2vw, 0);
		color: #333;
	}
	#des-slo{
		width: 36vw;
		font-size: 1.2vw;
		line-height: 1.2vw;
		color: #333;
	}

	#price{
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-end;
		justify-content: flex-end;
		width: 11vw;
		height: 6vw;
		padding: .5vw 0;
	}
	#price > span{
		display: block;
		line-height: 2.5vw;
	}
	#price-1{
		font-size: 1vw;
		color: #666;
		text-decoration: line-through;
		width: 6vw;
		height: 2vw;
		line-height: 2vw;
		background-color: #eee;
		border-radius: 2vw;
		text-align: center;
		margin: .5vw 0;
	}
	#price-2{
		font-size: 2.5vw;
		color: #E69D13;
	}

	#color{
		width: 36vw;
		display: flex;
		align-items: center;
		margin: 2vw 0 1vw 0;
	}
	#color > div{
		width: 3vw;
		height: 3vw;
		border-radius: 3vw;
		box-sizing: border-box;
		margin-right: .5vw;
		cursor: pointer;
		transition: all .2s;
		font-size: 1vw;
		line-height: 2.5vw;
		text-align: center;
		color: #fff;
		user-select: none;
		border: solid .25vw transparent;
	}
	#color > div:nth-child(1){
		border: solid .25vw #fff;
	}

	.add-to-cart-button{
		margin: .5vw 0;
		transition: all .2s;
	}
	.plus-minus{
		width: 14.9vw;
		margin: .5vw 0;
		display: flex;
		margin-right: 1vw;
	}
	.plus{
		width: 3vw;
		height: 3vw;
		background-color: #666;
		cursor: pointer;
		border-radius: 0 1.5vw 1.5vw 0;
	}
	.minus{
		width: 3vw;
		height: 3vw;
		background-color: #666;
		cursor: pointer;
		border-radius: 1.5vw 0 0 1.5vw;
	}
	.plus > img{
		width: 1vw;
		height: 1vw;
		padding: 1vw 1.2vw 1vw .8vw;
		display: block;
	}
	.minus > img{
		width: 1vw;
		height: 1vw;
		padding: 1vw .8vw 1vw 1.2vw;
		display: block;
	}
	.pro-num{
		width: 8.3vw;
		height: 3vw;
		font-size: 1.2vw;
		line-height: 3vw;
		text-align: center;
		background-color: #666;
		color: #fff;
		margin: 0 .3vw;
		border: none;
		padding: 0;
	}

	#add-to-cart{
		margin: 1vw;
	}

	#shipping-delivery{
		margin: .5vw 0;
	}
	#shipping-delivery > div{
		margin: .5vw 0;
		display: flex;
		align-items: center;
	}
	#shipping-delivery > div > img{
		width: 2vw;
		display: block;
	}
	#shipping-delivery > div > p{
		font-size: 1vw;
		margin-left: .5vw;
		color: #666;
	}
	#shipping-delivery > div > p > span{
		font-weight: bold;
		color: #E69D13;
	}

	#main-des{
		width: 36vw;
		font-size: 1vw;
		line-height: 2vw;
		color: #666;
		margin: 0 0 1vw 0;
	}
	#cart-animation{
		position: absolute;
		left: 10vw;
		top: 10vw;
		width: 3vw;
		height: 3vw;
		border-radius: 3vw;
		box-sizing: border-box;
		transition: all .2s;
		pointer-events: none;
		z-index: 5;
	}

	#main-advantage{
		width: 36vw;
		display: flex;
		justify-content: space-between;
		margin: 1vw 0;
	}
	#main-advantage > div{
		margin: 0 1vw;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#main-advantage > div > img{
		width: 3.5vw;
	}
	#main-advantage > div > div{
		font-size: 1.1vw;
		font-weight: bold;
		text-align: center;
		margin-top: .3vw;
		width: 7vw;
	}

	#more-info{
		width: 36vw;
		margin: 1vw 0 0 0;
	}
	#more-info > div{
		width: 36vw;
		height: 3.5vw;
		margin: 1vw 0;
	}
	.info-title{
		width: 32vw;
		padding: 0 2vw;
		height: 3.5vw;
		background-color: rgba(255, 255, 255, .6);
		line-height: 3.5vw;
		font-weight: bold;
		font-size: 1.2vw;
		color: #666;
		border-radius: 1vw;
		cursor: pointer;
	}

	#main-feature{
		width: 100%;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		position: relative;
	}
	#main-feature-img{
		position: sticky;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}
	#main-feature-img::before{
		content: "MagSafe";
		position: absolute;
		width: 100vw;
		height: 100vh;
		line-height: 100vh;
		text-align: center;
		color: #eee;
		left: 0;
		top: 0;
		font-size: 20vw;
		font-weight: bold;
		opacity: .6;
		z-index: -1;
	}
	#main-feature-img > div{
		width: 100vw;
		height: 60vw;
		position: relative;
	}	
	#main-feature-img > div > img{
		position: absolute;
	}
	.main-feature-p{
		width: 80vw;
		height: 60vw;
		margin: 0 10vw;
		display: flex;
		justify-content: space-between;
		align-items: center;
		z-index: 1;
		position: relative;
	}
	.main-feature-p > div{
		padding-bottom: 0;
	}
	.main-feature-p > div > h2{
		font-size: 6vw;
		line-height: 7vw;
		color: #333;
		margin: 10vw 0;
	}
	.main-feature-p > div > div{
		font-size: 3vw;
		line-height: 4vw;
		width: 25vw;
		font-weight: bold;
		color: #666;
		margin: 10vw 0;
	}
	.main-feature-p > p{
		width: 30vw;
		font-size: 1vw;
		line-height: 2vw;
		padding-top: 0;
	}
	#main-feature-p-2{
		flex-direction: row-reverse;
	}

	#main-feature-2{
		width: 100vw;
		padding-bottom: 1vw;
	}
	#main-feature-2 > div{
		width: 95vw;
		height: calc(100vh - 7.5vw);
		background-size: cover;
		background-position: center;
		transition: all .3s;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-content: center;
		overflow: hidden;
		border-radius: 2vw;
		position: sticky;
		top: 5vw;
		left: 2.5vw;
		margin-bottom: 5vw;
	}
	#main-feature-2 > div > h2{
		width: 80vw;
		font-size: 10vh;
		line-height: 12vh;
		margin: 0 0 8vh 0;
		text-align: center;
		color: #fff;
		transform: translate(0, 0);
	}
	#main-feature-2 > div > div{
		width: 30vw;
		font-size: 3vw;
		line-height: 4vw;
		font-weight: bold;
		color: #fff;
		text-shadow: 0 0 1vw #333;
		margin: 0 3.5vw;
	}
	#main-feature-2 > div > p{
		width: 30vw;
		font-size: 1.1vw;
		line-height: 2vw;
		color: #fff;
		text-shadow: 0 0 .5vw #333;
		margin: 0 3.5vw;
	}

	#gallery-section{
		width: 100vw;
	}
	#gallery-section > h2{
		width: 90vw;
		padding: 6vw 5vw;
		font-size: 11vw;
		line-height: 12vw;
		font-weight: normal;
		position: sticky;
		left: 0;
		top: 0;
	}
	#gallery-section > h2 > span{
		display: block;
		z-index: 1;
	}
	#gallery-section > h2 > span:nth-child(1){
		color: #9eb2c9;
	}
	#gallery-section > h2 > span:nth-child(2){
		color: #b09299;
	}
	#gallery-section > h2 > span:nth-child(3){
		color: #cfc2a2;
	}

	#photos{
		width: 100vw;
	}
	#photos > div{
		width: 125.5vh;
		position: sticky;
		left: calc(50vw - 63.75vh);
		top: 20vh;
		border-radius: 2.6vw;
		padding: 1vh;
		overflow: hidden;
		background: linear-gradient(150deg, #9eb2c9 0%, #b09299 50%, #cfc2a2 100%);
		background: #fff;
		margin-bottom: 1vw;
	}
	#photos > div > img{
		width: 125.5vh;
		display: block;
		border-radius: 2vw;
	}
	#photos > div > div{
		position: absolute;
		top: 1vh;
		left: calc(63.75vh - 17.5vw);
		width: 35vw;
		height: 4.5vw;
		background-color: rgba(255, 255, 255, .8);
		border-radius: 0 0 2vw 2vw;
		backdrop-filter: blur(1vw);
		text-align: center;
		line-height: 4.5vw;
		font-size: 1.2vw;
		font-weight: bold;
	}

	#data-section{
		width: 95vw;
		height: 45vw;
		padding: 2.5vw;
		display: flex;
		background: #fff;
	}
	#data-main{
		width: 55vw;
		height: 40vw;
		padding: 2.5vw;
		background-color: #e6e6e6;
		border-radius: 2vw 0 0 2vw;
		margin-right: 1vw;
		position: relative;
		display: flex;
		overflow: hidden;
	}
	#data-main > div{
		position: relative;
		z-index: 1;
	}
	#data-main::before{
		content: "";
		width: .2vw;
		height: 45vw;
		background: #eaeaea;
		position: absolute;
		left: 5vw;
		top: 0;
		box-shadow: 5vw 0 0 #eaeaea,
					10vw 0 0 #eaeaea,
					15vw 0 0 #eaeaea,
					20vw 0 0 #eaeaea,
					25vw 0 0 #eaeaea,
					30vw 0 0 #eaeaea,
					35vw 0 0 #eaeaea,
					40vw 0 0 #eaeaea,
					45vw 0 0 #eaeaea,
					50vw 0 0 #eaeaea;
	}
	#data-main::after{
		content: "";
		width: 60vw;
		height: .2vw;
		background: #eaeaea;
		position: absolute;
		left: 0;
		top: 5vw;
		box-shadow: 0 5vw 0 #eaeaea,
					0 10vw 0 #eaeaea,
					0 15vw 0 #eaeaea,
					0 20vw 0 #eaeaea,
					0 25vw 0 #eaeaea,
					0 30vw 0 #eaeaea,
					0 35vw 0 #eaeaea;
	}
	#choose-info{
		width: 15vw;
		height: 40vw;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	#small-info > div{
		font-size: 1.5vw;
		margin: 1vw 0;
		cursor: pointer;
		color: #999;
		transition: all .2s;
	}
	#up-button, #down-button{
		width: 4.5vw;
		height: 4.5vw;
		background-color: #eee;
		border-radius: 4.5vw;
		cursor: pointer;
		z-index: 1;
	}
	#up-button > img, #up-button > img{
		width: 4.5vw;
	}
	#up-button{
		top: 1vw;
		transform: rotate(180deg);
	}
	#down-button{
		bottom: 1vw;
	}

	#detail-info{
		transition: all .2s;
	}

	.data-data{
		width: 45vw;
		height: 38vw;
		padding: 1vw 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: relative;
		z-index: 1;
	}
	.data-data > h3{
		font-size: 8vw;
		font-weight: normal;
		z-index: 1;
	}
	#data-legend{
		width: 34vw;
		height: 45vw;
		background-color: #e6e6e6;
		border-radius: 0 2vw 2vw 0;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	#data-legend > img{
		height: 42vw;
		position: relative;
		z-index: 1;
	}
	#data-legend::before{
		content: "";
		width: .2vw;
		height: 45vw;
		background: #eaeaea;
		position: absolute;
		left: 5vw;
		top: 0;
		box-shadow: 5vw 0 0 #eaeaea,
					10vw 0 0 #eaeaea,
					15vw 0 0 #eaeaea,
					20vw 0 0 #eaeaea,
					25vw 0 0 #eaeaea;
	}
	#data-legend::after{
		content: "";
		width: 34vw;
		height: .2vw;
		background: #eaeaea;
		position: absolute;
		left: 0;
		top: 5vw;
		box-shadow: 0 5vw 0 #eaeaea,
					0 10vw 0 #eaeaea,
					0 15vw 0 #eaeaea,
					0 20vw 0 #eaeaea,
					0 25vw 0 #eaeaea,
					0 30vw 0 #eaeaea,
					0 35vw 0 #eaeaea;
	}

	#data-size > div{
		width: 42.5vw;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		color: #666;
		position: relative;
		margin-bottom: 3vw;
		z-index: 1;
	}
	#data-size > div::before{
		content: "";
		width: 28vw;
		height: .2vw;
		background-color: #666;
		position: absolute;
		bottom: -.8vw;
		left: 0;
	}
	#data-size > div::after{
		content: "";
		width: 13vw;
		height: .2vw;
		background-color: #666;
		position: absolute;
		bottom: -.8vw;
		right: 0;
	}
	#data-size > div > div:first-child{
		font-size: 1.5vw;
	}
	#data-size > div > div:last-child{
		font-size: 2.5vw;
		font-weight: bold;
	}
	#data-model{
		display: flex;
		flex-wrap: wrap;
		z-index: 1;
	}
	#data-model > div{
		width: 6vw;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 2vw 2vw 2vw 0;
	}
	#data-model > div > img{
		width: 6vw;
		margin-bottom: .5vw;
	}
	#data-model > div > div{
		font-size: 1.2vw;
		font-weight: bold;
		text-align: center;
		color: #666;
	}


	#data-material{
		display: flex;
		flex-wrap: wrap;
		z-index: 1;
	}
	#data-material > div{
		width: 8vw;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 3vw 0 3vw 0;
	}
	#data-material > div > img{
		width: 4.5vw;
		margin-bottom: 1vw;
	}
	#data-material > div > div{
		font-size: 1.2vw;
		font-weight: bold;
		text-align: center;
		color: #666;
	}

	.data-data::before{
		content: attr(data-num);
		position: absolute;
		left: 0;
		top: 0;
		width: 45vw;
		height: 40vw;
		line-height: 40vw;
		text-align: right;
		color: #eee;
		font-size: 45vw;
		z-index: 0;
		font-weight: bold;
	}

}



@media screen and (max-width: 600px) {
	header{
		background-color: transparent;
	}

	#side-cart{
		position: fixed;
		width: 80vw;
		display: flex;
		left: 5vw;
		bottom: 4vw;
		z-index: 50;
		transition: all .2s;
		opacity: 0;
		pointer-events: none;
	}
	#side-cart > .add-to-cart-button > div {
		width: 60vw;
	}

	.preload{
		position: fixed;
		left: 0;
		top: 0;
        opacity: 0;
        pointer-events: none;
	}
	#header-logo{
		filter: brightness(50);
		transition: all .2s;
	}

	#page-no{
		position: fixed;
		left: 2.5vw;
		top: 8vw;
		z-index: 150;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#page-no > div{
		width: .5vw;
		height: .5vw;
		margin: .5vw;
		background-color: #fff;
		border-radius: .5vw;
		cursor: pointer;
	}
	#page-no > div:nth-child(1){
		transform: scale(1.5);
	}
	#page-no::after{
		content: "";
		width: .2vw;
		height: 2vw;
		background-color: #fff;
		border-radius: .2vw;
		margin-top: .5vw;
	}


	#main-info{
		padding-top: 8vw;
		padding-bottom: 5vw;
		background-size: cover;
		background-repeat: no-repeat;
		position: relative;
		background-position: center top;
		background-attachment: fixed;
		min-height: calc(100vh - 12vw);
		overflow: hidden;
	}
	#main-info::before{
		content: "";
		position: fixed;
		z-index: -1;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		background-color: #333;
	    background-size: cover;
	}
	#main-info-content{
		width: 80vw;
		padding: 7.5vw;
		margin: 0 2.5vw;
		margin-top: 110vw;
		background: rgba(255, 255, 255, .8);
		border-radius: 10vw;
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;	
	    animation: up 1s backwards;
	    animation-delay: 0;
	}
	#main-info-content > h1{
		width: 90vw;
		font-size: 5.5vw;
		line-height: 9vw;
		color: #666;
	}
	#main-info-content > h1 > span{
		display: block;
		font-size: 10vw;
		line-height: 12vw;
		transform: translate(-.6vw, 0);
		color: #333;
	}
	#des-slo{
		width: 80vw;
		font-size: 5vw;
		line-height: 7vw;
		color: #333;
	}

	#price{
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: flex-end;
		width: 80vw;
		padding: 4.5vw 0;
	}
	#price > span{
		display: block;
		line-height: 7.5vw;
	}
	#price > span:nth-child(1){
		font-size: 3vw;
		color: #666;
		text-decoration: line-through;
		width: 18vw;
		height: 6vw;
		line-height: 6vw;
		background-color: #eee;
		border-radius: 6vw;
		text-align: center;
		margin: 0 1.5vw;
	}
	#price > span:nth-child(2){
		font-size: 7.5vw;
		color: #E69D13;
	}

	#color{
		width: 50vw;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		margin: 3vw 0;
	}
	#color > div{
		width: 9vw;
		height: 9vw;
		border-radius: 9vw;
		box-sizing: border-box;
		margin-right: 1.5vw;
		cursor: pointer;
		transition: all .2s;
		font-size: 3vw;
		line-height: 7.5vw;
		text-align: center;
		color: #fff;
		user-select: none;
		border: solid .75vw transparent;
	}
	#color > div:nth-child(1){
		border: solid .75vw #fff;
	}

	.add-to-cart-button{
		margin: 1vw 0;
		transition: all .2s;
	}
	.plus-minus{
		width: 80vw;
		margin: 2vw 0;
		display: flex;
		margin-right: 4vw;
	}
	.plus{
		width: 12vw;
		height: 12vw;
		background-color: #666;
		cursor: pointer;
		border-radius: 0 16vw 16vw 0;
	}
	.minus{
		width: 12vw;
		height: 12vw;
		background-color: #666;
		cursor: pointer;
		border-radius: 16vw 0 0 16vw;
	}
	.plus > img{
		width: 4vw;
		height: 4vw;
		padding: 4vw 4.8vw 4vw 3.2vw;
		display: block;
	}
	.minus > img{
		width: 4vw;
		height: 4vw;
		padding: 4vw 3.2vw 4vw 4.8vw;
		display: block;
	}
	.pro-num{
		width: 53.5vw;
		height: 12vw;
		font-size: 4.8vw;
		line-height: 12vw;
		text-align: center;
		background-color: #666;
		color: #fff;
		margin: 0 1.2vw;
		border: none;
		padding: 0;
	}

	#add-to-cart{
		margin: 1vw;
	}

	#shipping-delivery{
		margin: 2vw 0;
	}
	#shipping-delivery > div{
		margin: 2vw 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#shipping-delivery > div > img{
		width: 8vw;
		display: block;
	}
	#shipping-delivery > div > p{
		width: 80vw;
		font-size: 4vw;
		line-height: 6vw;
		color: #666;
		text-align: center;
	}
	#shipping-delivery > div > p > span{
		font-weight: bold;
		color: #E69D13;
		display: block;
	}

	#main-des{
		width: 80vw;
		font-size: 4vw;
		line-height: 6vw;
		color: #333;
		margin: 3vw 0;
		text-align: center;
	}
	#cart-animation{
		position: absolute;
		left: 10vw;
		top: 10vw;
		width: 3vw;
		height: 3vw;
		border-radius: 3vw;
		box-sizing: border-box;
		transition: all .2s;
		pointer-events: none;
		z-index: 5;
	}

	#main-advantage{
		width: 80vw;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 3vw 0;
	}
	#main-advantage > div{
		width: 40vw;
		margin: 3vw 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#main-advantage > div > img{
		width: 12vw;
	}
	#main-advantage > div > div{
		font-size: 4.2vw;
		font-weight: bold;
		text-align: center;
		margin-top: .9vw;
		width: 21vw;
	}

	#more-info{
		width: 36vw;
		margin: 1vw 0 0 0;
	}
	#more-info > div{
		width: 36vw;
		height: 3.5vw;
		margin: 1vw 0;
	}
	.info-title{
		width: 32vw;
		padding: 0 2vw;
		height: 3.5vw;
		background-color: rgba(255, 255, 255, .6);
		line-height: 3.5vw;
		font-weight: bold;
		font-size: 1.2vw;
		color: #666;
		border-radius: 1vw;
		cursor: pointer;
	}

	#main-feature{
		width: 100%;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		position: relative;
		background-color: #fff;
	}
	#main-feature-img{
		position: sticky;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}
	#main-feature-img::before{
		content: "MagSafe";
		position: absolute;
		width: 100vw;
		height: 100vh;
		line-height: 100vh;
		text-align: center;
		color: #eee;
		left: 0;
		top: 0;
		font-size: 20vw;
		font-weight: bold;
		opacity: .6;
		z-index: -1;
	}
	#main-feature-img > div{
		width: 100vw;
		height: 100vh;
		position: relative;
	}	
	#main-feature-img > div > img{
		position: absolute;
	}
	.main-feature-p{
		width: 80vw;
		z-index: 1;
		position: relative;
		background: rgba(255, 255, 255, .8);
	}
	.main-feature-p > div{
		padding-bottom: 0;
	}
	.main-feature-p > div > h2{
		font-size: 15vw;
		line-height: 18vw;
		color: #333;
		margin: 2vw 0;
	}
	.main-feature-p > div > div{
		font-size: 9vw;
		line-height: 12vw;
		width: 80vw;
		font-weight: bold;
		color: #666;
		margin: 5vw 0;
	}
	.main-feature-p > p{
		width: 80vw;
		font-size: 4vw;
		line-height: 6vw;
		padding-top: 0;
	}
	#main-feature-p-1{
		padding: 20vw 10vw 8vw 10vw;
	}
	#main-feature-p-2{
		padding: 8vw 10vw 25vw 10vw;
	}

	#main-feature-2{
		width: 100vw;
		padding-bottom: 1vw;
		background-color: #fff;
	}
	#main-feature-2 > div{
		width: 95vw;
		height: calc(100vh - 17.5vw);
		background-size: cover;
		background-position: center;
		transition: all .3s;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		border-radius: 6vw;
		position: sticky;
		top: 15vw;
		left: 2.5vw;
		margin-bottom: 5vw;
	}
	#main-feature-2 > div > h2{
		width: 80vw;
		font-size: 12vw;
		line-height: 14vw;
		text-align: center;
		color: #fff;
		transform: translate(0, 0);
	}
	#main-feature-2 > div > div{
		width: 80vw;
		font-size: 6vw;
		line-height: 8vw;
		font-weight: bold;
		text-align: center;
		color: #eee;
		text-shadow: 0 0 3vw #333;
		margin: 10vw 0;
	}
	#main-feature-2 > div > p{
		width: 80vw;
		font-size: 4vw;
		line-height: 6vw;
		color: #fff;
		text-align: center;
		text-shadow: 0 0 1.5vw #333;
	}

	#gallery-section{
		width: 100vw;
		padding-bottom: 5vw;
		background-color: #fff;
	}
	#gallery-section > div{
		width: 100vw;
		position: sticky;
		left: 0;
		top: 0;
		overflow: hidden;
	}
	#gallery-section > h2{
		width: 90vw;
		padding: 6vw 5vw;
		font-size: 21vw;
		line-height: 22vw;
		font-weight: normal;
		position: sticky;
		left: 0;
		top: 15vw;
	}
	#gallery-section > h2 > span{
		display: block;
		z-index: 1;
		margin: 6vw 0;
	}
	#gallery-section > h2 > span:nth-child(1){
		color: #9eb2c9;
	}
	#gallery-section > h2 > span:nth-child(2){
		color: #b09299;
	}
	#gallery-section > h2 > span:nth-child(3){
		color: #cfc2a2;
	}

	#photos{
		width: 100vw;
	}
	#photos > div{
		width: 100vw;
		position: relative;
		background-color: #fff;
	}
	#photos > div > img{
		width: 100vw;
		display: block;
	}
	#photos > div:first-child > img{
		border-radius: 6vw 6vw 0 0;
	}
	#photos > div:last-child > div{
		border-radius: 0 0 6vw 6vw;
	}
	#photos > div > div{
		width: 100vw;
		height: 12vw;
		background-color: #eee;
		backdrop-filter: blur(1vw);
		text-align: center;
		line-height: 12vw;
		font-size: 4vw;
		font-weight: bold;
	}

	#data-section{
		width: 95vw;
		padding: 2.5vw;
		display: flex;
		flex-direction: column-reverse;
		background: #fff;
	}
	#data-main{
		width: 80vw;
		height: 140vw;
		padding: 7.5vw;
		background-color: #e6e6e6;
		border-radius: 0 0 6vw 6vw;
		margin-top: 2.5vw;
		position: relative;
		display: flex;
		flex-direction: column-reverse;
		overflow: hidden;
	}
	#data-main > div{
		position: relative;
		z-index: 1;
	}
	#data-main::before{
		content: "";
		width: .8vw;
		height: 155vw;
		background: #eaeaea;
		position: absolute;
		left: 2.5vw;
		top: 0;
		box-shadow: 15vw 0 0 #eaeaea,
					30vw 0 0 #eaeaea,
					45vw 0 0 #eaeaea,
					60vw 0 0 #eaeaea,
					75vw 0 0 #eaeaea,
					90vw 0 0 #eaeaea;
	}
	#data-main::after{
		content: "";
		width: 95vw;
		height: .8vw;
		background: #eaeaea;
		position: absolute;
		left: 0;
		top: 15vw;
		box-shadow: 0 15vw 0 #eaeaea,
					0 30vw 0 #eaeaea,
					0 45vw 0 #eaeaea,
					0 60vw 0 #eaeaea,
					0 75vw 0 #eaeaea,
					0 90vw 0 #eaeaea,
					0 105vw 0 #eaeaea,
					0 120vw 0 #eaeaea,
					0 135vw 0 #eaeaea;
	}
	#choose-info{
		width: 80vw;
		height: 30vw;
		position: relative;
	}
	#small-info{
		width: 80vw;
		height: 30vw;
		position: relative;
		top: 0;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}
	#small-info > div{
		height: 30vw;
		margin: 0 2.5vw;
		font-size: 4.5vw;
		cursor: pointer;
		color: #999;
		transition: all .2s;
		writing-mode: vertical-lr;
		text-align: center;
		transform: rotate(-45deg);
		transform-origin: center;
	}
	#up-button, #down-button{
		width: 13.5vw;
		height: 13.5vw;
		background-color: #eee;
		border-radius: 13.5vw;
		cursor: pointer;
		z-index: 1;
		position: absolute;
		bottom: 0;
	}
	#up-button > img, #up-button > img{
		width: 13.5vw;
	}
	#up-button{
		left: 0;
		transform: translate(-3.5vw, 3.5vw) rotate(90deg);
	}
	#down-button{
		right: 0;
		transform: translate(3.5vw, 3.5vw) rotate(-90deg);
	}

	#detail-info{
		width: 370vw;
		display: flex;
		transition: all .2s;
	}

	.data-data{
		width: 80vw;
		height: 110vw;
		padding: 0 7.5vw 0 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: relative;
		z-index: 1;
	}
	.data-data > h3{
		font-size: 16vw;
		font-weight: normal;
		z-index: 1;
	}
	#data-legend{
		width: 95vw;
		height: 135vw;
		background-color: #e6e6e6;
		border-radius: 6vw 6vw 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		overflow: hidden;
	}
	#data-legend > img{
		width: 80vw;
		position: relative;
		z-index: 1;
	}
	#data-legend::before{
		content: "";
		width: .8vw;
		height: 135vw;
		background: #eaeaea;
		position: absolute;
		left: 2.5vw;
		top: 0;
		box-shadow: 15vw 0 0 #eaeaea,
					30vw 0 0 #eaeaea,
					45vw 0 0 #eaeaea,
					60vw 0 0 #eaeaea,
					75vw 0 0 #eaeaea,
					90vw 0 0 #eaeaea;
	}
	#data-legend::after{
		content: "";
		width: 95vw;
		height: .8vw;
		background: #eaeaea;
		position: absolute;
		left: 0;
		top: 15vw;
		box-shadow: 0 15vw 0 #eaeaea,
					0 30vw 0 #eaeaea,
					0 45vw 0 #eaeaea,
					0 60vw 0 #eaeaea,
					0 75vw 0 #eaeaea,
					0 90vw 0 #eaeaea,
					0 105vw 0 #eaeaea;
	}

	#data-size > div{
		width: 80vw;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		color: #666;
		position: relative;
		margin-bottom: 9vw;
		z-index: 1;
	}
	#data-size > div::before{
		content: "";
		width: 45vw;
		height: .6vw;
		background-color: #666;
		position: absolute;
		bottom: -2.4vw;
		left: 0;
	}
	#data-size > div::after{
		content: "";
		width: 30vw;
		height: .6vw;
		background-color: #666;
		position: absolute;
		bottom: -2.4vw;
		right: 0;
	}
	#data-size > div > div:first-child{
		font-size: 4.5vw;
	}
	#data-size > div > div:last-child{
		font-size: 7.5vw;
		font-weight: bold;
	}
	#data-model{
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		z-index: 1;
	}
	#data-model > div{
		display: flex;
		align-items: center;
		margin: 1vw 0;
	}
	#data-model > div > img{
		width: 18vw;
		margin-right: 2.5vw;
	}
	#data-model > div > div{
		font-size: 4vw;
		font-weight: bold;
		color: #666;
	}


	#data-material{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: flex-end;
		z-index: 1;
	}
	#data-material > div{
		width: 25vw;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 3vw 0;
	}
	#data-material > div > img{
		width: 15vw;
		margin-bottom: 1vw;
	}
	#data-material > div > div{
		font-size: 4vw;
		font-weight: bold;
		text-align: center;
		color: #666;
	}

	.data-data::before{
		content: attr(data-num);
		position: absolute;
		left: 0;
		top: 0;
		width: 80vw;
		text-align: right;
		color: #eee;
		font-size: 100vw;
		z-index: 0;
		font-weight: bold;
	}
}




