<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* =====================================
MV
===================================== */
.mv {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.mv-logo {
	position: absolute;
	margin-top: -5.5%;
	margin-left: 1.3%;
	width: 82%;
	z-index: 1;
}
/* PC
---------------------------------*/
@media (min-width: 769px) {
	.mv-logo {
		display: block;
		margin-top: -7%;
		margin-left: 0.1%;
		width: 48.21%;
	}
	.mv-bg {
		width: 100%;
	}
}



/* =====================================
NEWS
===================================== */
.news {
	margin: 0 auto 0;
	padding-top: 15vw;
	width: 80%;
	overflow: hidden;
}
.news-list {
	margin: 7vw auto 0;
}
.news-list li {
	margin-top: 6vw;
	padding-bottom: 6vw;
	border-bottom: 1px solid #CCC;
}
.news-list li a span {
	font-weight: 300;
	letter-spacing: .05em;
	color: #808080;
}
.news-list li p {
	margin-top: 1.5vw;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.news-list li p::before {
	display: block;
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgb(184,212,222);
	background: linear-gradient(133deg, rgba(184,212,222,1) 0%, rgba(241,193,162,1) 100%);
	transform: translate(-101%, 0);
	animation: mouseOut forwards;
	animation-duration: 000ms;
}
.news-list li:active p::before,
.news-list li.sp-tap p::before {
	animation: mouseOver forwards;
	animation-duration: 400ms;
}
.news-list li.load p::before {
	animation-duration: 400ms;
}
@keyframes mouseOut {
	0% {
		transform-origin: left center;
		transform: translate(0, 0);
	}
	100% {
		transform-origin: left center;
		transform: translate(101%, 0);
	}
}
@keyframes mouseOver {
	0% {
		transform-origin: right center;
		transform: translate(-101%, 0);
	}
	100% {
		transform-origin: right center;
		transform: translate(0, 0);
	}
}
.news .more-btn {
	margin-top: 10vw;
}
/* PC
---------------------------------*/
@media (min-width: 769px) {
	.news {
		padding-top: 160px;
		width: 80%;
		max-width: 675px;
	}
	.news-list {
		margin: 40px auto 0;
	}
	.news-list li {
		margin-top: 8px;
		padding-bottom: 0;
		border: none;
	}
	.news-list li p {
		display: inline-block;
		position: relative;
		margin-top: 0;
		padding: .4em .2em;
		overflow: hidden;
	}
	.news-list li p::before {
		display: block;
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background: rgb(184,212,222);
		background: linear-gradient(133deg, rgba(184,212,222,1) 0%, rgba(241,193,162,1) 100%);
		transform: translate(-101%, 0);
		animation: mouseOut forwards;
		animation-duration: 000ms;
	}
	.news-list li:hover p::before {
		animation: mouseOver forwards;
		animation-duration: 000ms;
	}
	.news-list li.load p::before {
		animation-duration: 400ms;
	}
	@keyframes mouseOut {
		0% {
			transform-origin: left center;
			transform: translate(0, 0);
		}
		100% {
			transform-origin: left center;
			transform: translate(101%, 0);
		}
	}
	@keyframes mouseOver {
		0% {
			transform-origin: right center;
			transform: translate(-101%, 0);
		}
		100% {
			transform-origin: right center;
			transform: translate(0, 0);
		}
	}
	.news-list li a {
		display: flex;
		padding: 13px 0;
	}
	.news-list li a span {
		margin-right: 40px;
		padding: .4em .2em;
	}
	.news .more-btn {
		margin-top: 50px;
	}
}



/* =====================================
NEW ARRIVALS
===================================== */
.arrivals {
	margin: 20vw auto 0;
	padding-bottom: 10vw;
	width: 100%;
	overflow: hidden;
}
.arrivals-list {
	display: flex;
	justify-content: space-between;
	margin: 7vw auto 0;
}
.arrivals-name {
	margin-top: 3vw;
	padding: 0;
	font-size: 3.3vw;
	line-height: 1.2;
}
.arrivals-price {
	margin-top: 1vw;
	padding: 0;
	font-size: 3.3vw;
	color: #969696;
}
.new-swiper-pagination {
	margin-top: 4vw;
	text-align: center;
}
.new-swiper-pagination span {
	margin-right: 4vw !important;
	background: none;
	border: 1px solid #878787;
}
.new-swiper-pagination .swiper-pagination-bullet-active {
	background: #878787;
}
.arrivals .more-btn {
	margin-top: 7vw;
}
.arrivail-normal {
	margin: 0 auto;
	width: 80%;
}
.arrivals-new-icon::before {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 4vw;
	right: 4vw;
	content: "NEW";
	width: 13vw;
	height: 13vw;
	border: 1px solid #FFF;
	border-radius: 50%;
	font-family: lato, sans-serif;
	font-size: 3.5vw;
	color: #FFF;
	z-index: 1;
}
.arrivals-new-icon a img {
	position: relative;
	z-index: -1;
}
.arrivals-new-color::before {
	content: "NEW COLOR";
	font-size: 2.5vw;
	text-align: center;
	line-height: 1;
}
.arrivals-limited-item::before {
	content: "LIMITED ITEM";
	padding-top: .3em;
	font-size: 2.5vw;
	text-align: center;
	line-height: 1;
}


/* PC
---------------------------------*/
@media (min-width: 769px) {
	.arrivals {
		margin: 190px auto 0;
		padding-bottom: 0;
		max-width: 1088px;
		overflow: unset;
	}
	.swiper-new-arrivals {
		overflow: hidden;
	}
	.arrivals-list {
		margin: 40px auto 0;
	}
	.arrivals-list li {
		width: 340px;
	}
	.arrivals-name {
		margin-top: 15px;
		padding: 0 1em;
		font-size: 13px;
	}
	.arrivals-price {
		margin-top: 10px;
		padding: 0 1em;
		font-size: 13px;
	}
	.arrivals .more-btn {
		margin-top: 50px;
	}
	.arrivals .hover-img a:hover img {
		transform: scale(1.12);
		transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.arrivals-swiper-block {
		position: relative;
		width: 100%;
	}
	.arrivals .swiper-button-next:after,
	.arrivals .swiper-rtl .swiper-button-prev:after {
		content: "";
		width: 55.5%;
		height: 85%;
		background: url("../img/top/pc/new_slider_arrow.svg") no-repeat;
		background-size: cover;
	}
	.arrivals .swiper-button-next,
	.arrivals .swiper-rtl .swiper-button-prev {
		margin: -7px 0 0 0;
		right: -85px;
		width: 67px;
		height: 128px;
		transform: translateY(-50%) scaleX(-1);
		cursor: none;
	}
	.arrivals .swiper-button-prev:after,
	.arrivals .swiper-rtl .swiper-button-next:after {
		content: "";
		width: 55.5%;
		height: 85%;
		background: url("../img/top/pc/new_slider_arrow.svg") no-repeat;
		background-size: cover;
		cursor: none;
	}
	.arrivals .swiper-button-prev {
		margin: -7px 0 0 0;
		left: -85px;
		width: 67px;
		height: 128px;
		transform: translateY(-50%);
	}
	.new-swiper-pagination {
		display: none;
	}
	.arrivail-normal .arrivals-list {
		justify-content: center;
	}
	.arrivals-new-icon::before {
		top: 30px;
		right: 30px;
		width: 80px;
		height: 80px;
		font-size: 22px;
		font-weight: 300;
	}
	.arrivals-new-color::before {
		font-size: 16px;
		line-height: 1;
	}
	.arrivals-limited-item::before {
		font-size: 16px;
		line-height: 1;
	}
}



/* =====================================
CATEGORY
===================================== */
.category {
	margin: 10vw auto 0;
	padding: 20vw 0 34vw;
	width: 100%;
	background: url(../img/top/sp/category_bg.webp) no-repeat;
	background-size: cover;
	overflow: hidden;
}
.category .h2-title {
	font-size: 8vw;
	font-weight: 300;
	color: #646464;
}
.category-slide-block {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 5vw;
}
.category-slide-number {
	position: absolute;
	top: -30px;
	right: 0;
	margin-bottom: 10px;
	font-weight: 300;
	text-align: right;
	color: #FFF;
}
.swiper-new {
	position: relative;
	margin: 0 auto 0;
	width: 100%;
}
.swiper-new .swiper-wrapper {
	align-items: center;
}
.swiper-new .swiper-slide {
	width: 570px;
	overflow: hidden;
	transform: scale(0.8);
	transition: 1000ms;
}
.swiper-new .swiper-slide-active,
.swiper-new .swiper-slide-duplicate-active {
	transform: scale(1);
}
.swiper-new .swiper-slide-prev,
.swiper-new .swiper-slide-next,
.swiper-new .swiper-slide-duplicate-prev,
.swiper-new .swiper-slide-duplicate-next {
	transform: scale(0.8);
}
.category-slide-title {
	position: relative;
	margin: -100px auto 0 !important;
	z-index: 5;
}
.category-slide-title li {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-size: 140px;
	text-align: center;
	color: #FFF;
}
.swiper-new .swiper-slide a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.00);
	transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.swiper-new .swiper-slide a:hover img {
	transform: scale(1.05);
}
.swiper-new .swiper-slide a {
	display: flex;
	width: 100%;
}
/* name */
.swiper-name {
	position: absolute;
	left: 0;
	right: 0;
	margin: -2.5vw auto 0;
}
.swiper-name .swiper-wrapper {
	pointer-events: none;
}
.swiper-name .swiper-slide {
	pointer-events: none;
	opacity: 0 !important;
}
.swiper-name .swiper-slide.swiper-slide-thumb-active {
	pointer-events: none;
	opacity: 1 !important;
}
.swiper-name p {
	font-size: 16.7vw;
	font-weight: 100;
	text-align: center;
	letter-spacing: .025em;
	color: #FFF;
	pointer-events: none;
}
/* navigator */
.swiper-button-next,
.swiper-button-prev {
	display: none;
}
/* pagination */
.category .swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: -15vw;
}
.category .swiper-pagination-bullet {
	display: block;
	position: relative;
	margin: 0 2vw 0 0 !important;
	width: 15vw;
	height: 100%;
	background: none;
	border-radius: 0;
	text-align: center;
	opacity: 1;
}
.swiper-pagination-dot {
	margin: 0 auto;
	width: 2vw;
	height: 2vw;
	background: none;
	border: 1px solid #878787;
	border-radius: 50px;
}
.swiper-pagination-text {
	margin-top: 2vw;
	font-family: lato, sans-serif;
	font-size: 2.3vw;
	font-weight: 300;
}
.category .swiper-pagination-bullet:last-of-type {
	margin: 0 0 0 0 !important;
}
.category .swiper-pagination-bullet-active .swiper-pagination-dot {
	background: #878787;
}
/* PC
---------------------------------*/
@media (min-width: 769px) {
	.category {
		margin: 190px auto 0;
		padding: 180px 0 260px;
		width: 100%;
		max-width: 1350px;
		background: url(../img/top/pc/category_bg.webp) no-repeat;
		background-size: cover;
		overflow: hidden;
	}
	.category .h2-title {
		font-size: 38px;
	}
	.category-slide-block {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 50px;
	}
	.category-slide-number {
		position: absolute;
		top: -30px;
		right: 0;
		margin-bottom: 10px;
		font-weight: 300;
		text-align: right;
		color: #FFF;
	}
	.swiper-new {
		position: relative;
		margin: 0 auto 0;
		width: 100%;
	}
	.swiper-new .swiper-wrapper {
		align-items: center;
	}
	.swiper-new .swiper-slide {
		width: 570px;
		overflow: hidden;
		transform: scale(0.8);
		transition: 1000ms;
	}
	.swiper-new .swiper-slide-active,
	.swiper-new .swiper-slide-duplicate-active {
		transform: scale(1);
	}
	.swiper-new .swiper-slide-prev,
	.swiper-new .swiper-slide-next,
	.swiper-new .swiper-slide-duplicate-prev,
	.swiper-new .swiper-slide-duplicate-next {
		transform: scale(0.8);
	}
	.category-slide-title {
		position: relative;
		margin: -100px auto 0 !important;
		z-index: 5;
	}
	.category-slide-title li {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		font-size: 140px;
		text-align: center;
		color: #FFF;
	}
	.swiper-new .swiper-slide a img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform: scale(1.00);
		transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.swiper-new .swiper-slide a:hover img {
		transform: scale(1.05);
	}
	.swiper-new .swiper-slide a {
		display: flex;
		width: 100%;
	}
	/* name */
	.swiper-name {
		position: absolute;
		margin: -15px auto 0;
	}
	.swiper-name p {
		font-size: 160px;
	}
	/* navigator */
	.swiper-button-next,
	.swiper-button-prev {
		display: flex;
	}
	.swiper-button-next:after,
	.swiper-rtl .swiper-button-prev:after {
		content: "";
		width: 100%;
		height: 100%;
		background: url("../img/top/pc/cat_slider_arrow.svg") no-repeat;
		background-size: cover;
	}
	.swiper-button-next,
	.swiper-rtl .swiper-button-prev {
		margin: 0;
		right: 35px;
		width: 37px;
		height: 108px;
		transform: translateY(-50%) scaleX(-1);
		cursor: none;
	}
	.swiper-button-prev:after,
	.swiper-rtl .swiper-button-next:after {
		content: "";
		width: 100%;
		height: 100%;
		background: url("../img/top/pc/cat_slider_arrow.svg") no-repeat;
		background-size: cover;
		cursor: none;
	}
	.swiper-button-prev {
		margin: 0;
		left: 35px;
		width: 37px;
		height: 108px;
		transform: translateY(-50%);
	}
	.swiper-button-next:hover,
	.swiper-button-prev:hover {
		opacity: .6;
		transition: 300ms;
	}
	/* pagination */
	.category .swiper-pagination {
		bottom: -85px;
	}
	.category .swiper-pagination-bullet {
		margin: 0 10px 0 0 !important;
		width: 90px;
		cursor: none;
	}
	.swiper-pagination-dot {
		width: 7px;
		height: 7px;
	}
	.swiper-pagination-text {
		margin-top: 13px;
		font-size: 14px;
	}
	.category .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover .swiper-pagination-dot {
		background: rgba(170,170,170,.6);
	}
}
@media (min-width: 769px) and (max-width: 1350px)  {
	/* name */
	.swiper-name p {
		font-size: min(12vw, 160px);
	}
}



/* =====================================
ABOUT
===================================== */
.about {
	margin: 0 auto 0;
	width: 100%;
}
.about ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.about-inner {
	display: flex !important;
	align-items: center;
	justify-content: center;
}
.about-text-block {
	position: absolute;
	text-align: center;
	z-index: 2;
}
.about-text-ss {
	font-size: 4vw;
	font-weight: 300;
	color: #FFF;
}
.about ul h2 {
	margin-top: 3vw;
	font-size: 6.3vw;
	font-weight: 300;
	text-align: center;
	line-height: 1;
	letter-spacing: .02em;
	color: #FFF;
}
.about-text-jpn {
	margin-top: 1.5vw;
	font-size: 3.1vw;
	font-weight: 300;
	letter-spacing: .05em;
	color: #FFF;
}
/* PC
---------------------------------*/
@media (min-width: 769px) {
	.about {
		margin: 0 auto 0;
		width: 100%;
		max-width: 1350px;
	}
	.about ul {
		margin: 0 auto 0;
	}
	.about ul li {
		position: relative;
		width: 100%;
		max-width: 1350px;
	}
	.about ul li a::before {
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		width: 100%;
		height: 100%;
		background: #000;
		opacity: 0;
		pointer-events: none;
		z-index: 1;
	}
	.about ul li a::before {
		transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.about ul li a:hover::before {
		opacity: .6;
		transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.about-text-block {
		left: 225px;
		width: 370px;
	}
	.about-text-ss {
		font-size: 20px;
		color: #717171;
	}
	.about ul h2 {
		margin-top: 20px;
		font-size: 38px;
		letter-spacing: .04em;
	}
	.about-text-jpn {
		margin-top: 13px;
		font-size: 12px;
	}
}
@media (min-width: 769px) and (max-width: 1350px) {
	.about-text-block {
		left: 100px;
	}
}



/* =====================================
INSTAGRAM
===================================== */
.instagram {
	margin: 20vw auto 25vw;
	width: 100%;
	text-align: center;
}
.instagram-list {
	margin-top: 6vw;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.instagram-image {
	height: 33.33vw;
	overflow: hidden;
}
.instagram-image img {
	height: 33.33vw;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.instagram .more-btn {
	margin-top: 14vw;
}
/* PC
---------------------------------*/
@media (min-width: 769px) {
	.instagram {
		margin: 0 auto;
		padding: 190px 0 50px;
		width: 100%;
		max-width: 1000px;
		text-align: center;
	}
	.instagram-list {
		display: flex;
		flex-wrap: wrap;
		margin-top: 40px;
	}
	.instagram-image {
		width: 333px;
		height: 333px;
	}
	.instagram-image img {
		height: 333px;
	}
	.instagram .more-btn {
		margin-top: 60px;
	}
}
@media (min-width: 769px) and (max-width: 1020px) {
	.instagram ul li {
		width: 33.3%;
	}
}



/* =====================================
SWIPER COMMON
===================================== */
.swiper-button-next:after,
.swiper-button-prev:after {
	color: #504F4F;
}



/* =====================================
VIEW MORE BTN
===================================== */
.more-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	width: 60vw;
	height: 14vw;
	background: rgb(234,190,155);
	background: linear-gradient(133deg, rgba(234,190,155,1) 0%, rgba(169,193,197,1) 100%);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 400;
	transition: 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.more-btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 60vw;
	height: 14vw;
	border: 1px solid #CCC;
	border-radius: 50px;
	background: #FFF;
	transition: 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.more-btn:hover {
	color: #FFF;
}
.more-btn:hover::after {
	opacity: 0;
}
.more-btn p {
	position: relative;
	font-family: lato, sans-serif;
	letter-spacing: .05em;
	z-index: 2;
}
/* PC
---------------------------------*/
@media (min-width: 769px) {
	.more-btn {
		width: 213px;
		height: 58px;
	}
	.more-btn::after {
		width: 213px;
		height: 58px;
	}
	.more-btn:hover {
		color: #FFF;
	}
	.more-btn:hover::after {
		opacity: 0;
	}
	.more-btn p {
		position: relative;
		font-family: lato, sans-serif;
		z-index: 3;
	}
}



/* =====================================
AOS調整
===================================== */
[data-aos=fade-up] {
	transform: translate3d(0,12vw,0);
}
[data-aos=fade-up-lineup] {
	transform: translate3d(0,8vw,0);
}
/* PC
---------------------------------*/
@media (min-width: 769px) {
	[data-aos=fade-up-mv] {
		transform: translate3d(0,30px,0);
	}
	.mv-text p,
	.mv-text-brand {
		transition-duration: 2s !important;
	}
	[data-aos=fade-up] {
		transform: translate3d(0,15px,0);
	}
}



/* =====================================
CAMPAIGN BANNER
===================================== */
.campaign-banner {
	margin: 0 auto 0;
	padding-top: 5vw;
	width: 100%;
}
/* PC
---------------------------------*/
@media (min-width: 769px) {
	.campaign-banner {
		margin: 80px auto 0;
		padding-top: 0;
		width: 80%;
		max-width: 810px;
	}
	.campaign-banner a {
		transition: 200ms;
	}
	.campaign-banner a:hover {
		opacity: .8;
		transition: 200ms;
	}
}</pre></body></html>