@charset "UTF-8";
/* ======================================== */

/* ========= products-detail page ========= */

/* ======================================== */


/*
=========================================
top-link
=========================================
*/

.top-link{
	margin-block: 1.8rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 767px){
	.top-link{
		flex-direction: column;
		row-gap: 1.6rem;
		align-items: flex-start;
	}
}


/* ----- breadcrumb-list ----- */

.breadcrumb-list{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	line-height: 1.8;
}
.breadcrumb-list li{
	color: #8c8c8c;
}
.breadcrumb-list li.breadcrumb-list--active{
	color: #505050;
}
.breadcrumb-list li a:hover{
	text-decoration: underline;
	text-underline-offset: 0.3em;
	text-decoration-color: #8c8c8c;
}

.breadcrumb-list .arrow {
	position: relative;
	display: inline-block;
	width: 4.5px;
	height: 8.1px;
	margin: 0 1.0rem;
}

.breadcrumb-list .arrow::before,
.breadcrumb-list .arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 5px;
	height: 1px;
	border-radius: 9999px;
	background-color: #8c8c8c;
	transform-origin: calc(100% - 0.5px) 50%;
}

.breadcrumb-list .arrow::before {
	transform: rotate(45deg);
}

.breadcrumb-list .arrow::after {
	transform: rotate(-45deg);
}


/* ----- store-link ----- */

.store-link{
	display: flex;
	column-gap: 3.0rem;
}
@media (max-width: 767px){
	.store-link{
		column-gap: 1.8rem;
	}
}
.store-link li a:hover{
	opacity: 0.6;
	transition: .3s;
}
.store-link li img{
	width: auto;
	max-height: 2.0rem;
}
@media (max-width: 767px){
	.store-link li img{
		width: auto;
		max-height: 1.8rem;
	}
}


/*
=========================================
item-detail
=========================================
*/

section.item-detail{
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(45.5rem, 48%);
	gap: 4rem;
	padding: 0;
	margin-bottom: 4.0rem;
	font-weight: 400;
}

.item-detail__left-contents,
.item-detail__right-contents{
	min-width: 0;
}

@media (max-width: 767px){
	section.item-detail{
		grid-template-columns: 1fr;
		gap: 4.0rem;
	}
}

/* ----- Slider (Swiper) ----- */

/*main slide*/
.main-swiper{
	width: 100%;
	aspect-ratio: 500 / 667;
}
.main-swiper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*navigation*/
.main-swiper .swiper-button-prev,
.main-swiper .swiper-button-next{
	width: 3.0rem;
	height: 3.0rem;
	border: 1px solid #4b4b4b;
	border-radius: 50%;
}
@media (max-width: 767px){
	.main-swiper .swiper-button-prev,
	.main-swiper .swiper-button-next{
		width: 2.5rem;
		height: 2.5rem;
	}
}
.main-swiper .swiper-button-prev::after,
.main-swiper .swiper-button-next::after{
	font-size: 1.2rem;
	color: #4b4b4b;
	font-weight: bold;
}
@media (max-width: 767px){
	.main-swiper .swiper-button-prev::after,
	.main-swiper .swiper-button-next::after{
		font-size: 1.0rem;
	}
}
.main-swiper .swiper-button-prev:hover,
.main-swiper .swiper-button-next:hover{
	background-color: #4b4b4b;
}
.main-swiper .swiper-button-prev:hover::after,
.main-swiper .swiper-button-next:hover::after{
	color: #fff;
}

/*caption*/
.gallery-caption{
	margin-top: 0.8rem;
	font-size: 1.3rem;
}

/*thumbnail*/
.thumb-swiper{
	margin-top: 1.4rem;
	padding-bottom: 2.0rem;
}
.thumb-swiper .swiper-slide{
	width: 22%;
	min-width: 7.2rem;
	padding: .3rem;
	opacity: .55;
	cursor: pointer;
	box-sizing: border-box;
	transition:
		opacity .2s ease,
		transform .2s ease;
}
.thumb-swiper .swiper-slide:hover{
	opacity: .8;
}
.thumb-swiper .swiper-slide:active{
	transform: scale(.96);
}
.thumb-swiper .swiper-slide-thumb-active{
	opacity: 1;
	outline: 2px solid #666;
	outline-offset: -2px;
}
.thumb-swiper img{
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 100 / 133.4;
	object-fit: cover;
	pointer-events: none;
}

@media (max-width: 767px){
	.thumb-swiper .swiper-slide{
		width: 28%;
		min-width: 7.6rem;
		padding: .4rem;
	}
}

/*scrollbar*/
.thumb-swiper .swiper-scrollbar{
	height: 0.8rem;
	cursor: pointer;
	left: 0;
	bottom: 0;
	width: 100%;
}



/* ---------- Right Contents ---------- */


/* -- Item info -- */
.item-detail__info{
	display: flex;
	flex-direction: column;
	row-gap: 0.8rem;
	margin-bottom: 2.0rem;
}
.item-detail__info .tag{
	display: flex;
	column-gap: 1.0rem;
	align-items: center;
	margin-bottom: 0.6rem;
	min-height: 2.8rem;
}
.item-detail__info .tag-gmd{
	padding: .1em .6em;
	background-color: var(--color-accent);
	font-size: var(--font-base);
	color: #fff;
	font-weight: 600;
}
.item-detail__info .tag-new{
	padding: .4em .9em;
	background-color: #ffe18c;
	border-radius: 1.2rem;
	font-weight: 600;
	font-size: 1.0rem;
}
.item-detail__info .tag-flex{
	display: flex;
	column-gap: 0.6rem;
	align-items: center;
}
.item-detail__info .tag-best-seller{
	padding: .4em .9em;
	background-color: #dfe7c8;
	border-radius: 1.2rem;
	font-weight: 600;
	font-size: 1.0rem;
}
.item-detail__info h2.item-name{
	font-family: initial;
	font-size: clamp(1.5rem, 1.32rem + 0.48vw, 1.8rem);
	font-weight: 600;
	line-height: 1.5;
	margin-bottom:1rem;
	text-transform: none;
}
.item-detail__info .item-type{
	font-size: 1.3rem;
}
.item-detail__info .item-price{
	font-size: clamp(1.2rem, 1.08rem + 0.32vw, 1.4rem);
}
.item-detail__info .item-price .price{
	font-family: "Lato", sans-serif;
	font-size: clamp(2.2rem, 2.02rem + 0.48vw, 2.5rem);
	font-weight: 700;
}
.item-detail__info .item-price .currency,.item-detail__info .item-price .tax{
	margin-left: 0.25rem;
}
.item-detail__info .free-shipping{
	align-self: flex-start;
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	background-color: var(--color-bg);
	padding: 0.3em 1em;
	border-radius: 20px;
}



/* -- Cart form -- */
.cart-form-storage{
    display:none;
}

.item-detail__purchase{
    margin-bottom:3.4rem;
}

.item-option{
    margin-bottom:3rem;
}

.item-option__label{
    margin-bottom:1.2rem;
    font-size:1.4rem;
    font-weight:700;
}

.item-color{
    display:flex;
    gap:1.2rem;
    flex-wrap:wrap;
}

.item-color__link{
	display: block;
	padding: 0;
	border: 2px solid transparent;
	background: #f7f5f5;
	cursor: pointer;
	line-height: 0;
}

.item-color__link.is-current{
	border:2px solid rgb(100, 70, 0);
}

.item-color__link img{
	display: block;
	width: 70px;
	aspect-ratio: 481 / 641;
	object-fit: contain;
	background-color: #f7f5f5;
}

.item-color__link:hover {
    border-color: #666;
}

.item-size{
    display:flex;
    flex-wrap:wrap;
    gap:.8rem;
}

.item-size__button{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #d8d8d8;
    background:#fff;
    font-size:1.6rem;
    font-weight:500;
    color:#555;
    flex:none;
    cursor:pointer;
    transition:.2s;
}

.item-size__button.is-current{
    background:#aab4a0;
    border-color:#aab4a0;
    box-shadow:
        0 0 0 3px #fff,
        0 0 0 4px #cfd2c4;
    color:#fff;
    font-weight:700;
    position:relative;
    z-index:2;
}

.purchase-button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.8rem;
    width:min(420px,100%);
    height:52px;
    margin:0 auto;
    padding:1rem;
    border-radius:999px;
    background:#cdd2c8;
    font-size:1.4rem;
    font-weight:600;
	color:#000;
    cursor:pointer;
    border:1px solid #999;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.purchase-button span{
	color:#000;
	-webkit-text-fill-color:#000;
}
.purchase-button img{
    width:2.8rem;
    height:auto;
    transition: filter 0.3s;
}
.purchase-button:hover {
    color: #fff !important;
    background-color: #333 !important;
    border-color: #333 !important;
}
.purchase-button:hover span{
	color:#fff !important;
	-webkit-text-fill-color:#fff !important;
}
.purchase-button:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(115deg) brightness(107%) contrast(101%) !important;
}

@media (max-width: 767px){
    .purchase-button img{
        width: 2.4rem;
    }
}

.purchase-disclaimer{
	margin-top: 1.0rem;
	color: #888;
	font-size: 1.2rem;
	line-height: 1.5;
}

/* -- fabric -- */
.item-detail__fabric{
	font-size: 1.3rem;
	color: #646464;
	margin-bottom: 7.0rem;
}
@media (max-width: 767px){
	.item-detail__fabric{
		margin-bottom: 4.0rem;
	}
}


/* -- item-detail__tab -- */

.item-detail__tab .tab-list{
	display: flex;
	border-bottom: 1px solid #646464;
}
.item-detail__tab .tab-item{
	flex: 1;
}
.item-detail__tab .tab-item .tab-trigger{
	width: 100%;
	padding: 1.3rem 0;
	text-align: center;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	color: #333;
	font-family: inherit;
	text-decoration: none;
	-webkit-appearance: none;
	appearance: none;
	font-size: clamp(1.5rem, 1.38rem + 0.32vw, 1.7rem);
	cursor: pointer;
}
.item-detail__tab .tab-item.is-active .tab-trigger{
	border-bottom: 2px solid #000;
	color: #333;
	font-weight: 600;
}

.item-detail__tab .tab-contents{
	display: none;
	padding: 2.0rem 0;
}
.item-detail__tab .tab-contents.is-active{
	display: block;
}

/*Description*/
/*
.tab_description{	
}
*/
.tab_description p{
	text-align: justify;
	margin-bottom: 3.0rem;
}
.tab_description p.fb{
	color: #3a4e75;
}

/*Size chart*/
.tab__size-caution{
	margin-bottom: 2.5rem;
	margin-left: 2.0rem;
	font-weight: 500;
}
.tab__size-caution li{
	list-style: disc;
}
.tab__size-caution li::marker{
	font-size: 1.0rem;
}
.tab__size-chart{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3.4rem;
}
.tab__size-chart:not(:last-of-type){
	margin-bottom: 6.0rem;
}
.tab__size-chart .long-sleeve-shirt{
	width: 17.7rem;
}
.tab__size-chart .long-pants{
	width: 10.8rem;
}
@media (max-width: 767px){
	.tab__size-chart .long-sleeve-shirt,.tab__size-chart .long-pants{
		margin-inline: auto;
	}
}

/*
=========================================
products__about
=========================================
*/

/* div : .products__about
    → Uses styles from about.css */

.products__about__img{
    margin-bottom: 6.0rem;
}
.products__about__img > img{
    overflow-x: hidden;
    max-width: 100vw;
    width: 100vw;
    position: relative;
    left: calc(50% - 50vw);
}
.products__about .about-effect__list{
    margin-bottom: 10.0rem;
}
.products-about__detail h4{
    color: #3a4e75;
    font-size: 2.3rem;
    margin-bottom: 3.0rem;
    display: flex;
    align-items: center;
    position: relative;
}
.products-about__detail h4::before{
    content: "Detail";
    display: inline-block;
    background-image: url("../img/about/blue_waves.gif");
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 6.0rem;
    font-size: 1.6rem;
    color: #4b4b4b;
    font-family: "abril-titling-condensed", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 5.5rem;
}
.about-heading{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.products-about__detail>p{
    font-size: var(--font-lower-base);
    margin-bottom: 3.6rem;
}

@media (max-width: 767px){
    .products__about__img{
        margin-bottom: 3.0rem;
    }
    .products__about .about-effect__list{
        margin-bottom: 5.0rem;
    }
	.products__about .about-effect__03 .about-effect__txt{
		margin-top: 3.0rem;
	}
	.products-about__detail h4{
        font-size: 2.0rem;
    }
    .products-about__detail h4::before{
        padding: 0rem 1rem;
        background-size: cover;
        background-position: center;
        font-size: 1.4rem;
        line-height: 9.5rem;
    }
    .about-heading{
        width: 100%;
    }
}



/*
=========================================
products__related-items
=========================================
*/
.products__related-items{
	margin-bottom: 8.0rem;
}
.products__related-items h3{
	display: flex;
	column-gap: 4.0rem;
	align-items: center;
	font-size: var(--font-heading);
	margin-bottom: 2.5rem;
}
.products__related-items h3 span:last-of-type{
	font-size: var(--font-base);
	font-weight: 600;
}
.products__color-variation{
	margin-bottom: 7.0rem;
}

@media (max-width: 767px){
	.products__related-items{
		margin-bottom: 5.0rem;
	}
	.products__related-items h3{
		column-gap: 2.0rem;
	}
}


/*
=========================================
products__external-links
=========================================
*/
.products__external-links{
	margin-bottom: 5.0rem;
}

/*
=========================================
snap
=========================================
*/
/* default SP hidden */
.snap-sp{
	display:none;
}
.snap{
	margin-top:6rem;
}
.snap__title{
	font-size:2rem;
	margin-bottom:1.5rem;
}
.snap__list{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:1.0rem;
}
.snap__list button{
	border:none;
	background:none;
	padding:0;
	cursor:pointer;
}
.snap__list img{
	display:block;
	width:100%;
	height:auto;
}
.snap__meta{
	margin-top:.3rem;
	font-size:1.18rem;
	line-height:1.8;
	color:#696969;
	font-weight: 400;
	white-space:pre-line;
}
.snap__list li.is-hidden{
	display:none;
}
.snap__more{
	display:block;
	width:min(24rem,100%);
	margin:2.4rem auto 0;
	padding:1.2rem;
	border:1px solid #aaa;
	background:#fff;
	font-size:1.4rem;
	cursor:pointer;
}
.snap__more:hover{
	background:#f5f5f5;
}
.snap__more[hidden]{
	display:none;
}
.snap__more,
.description-toggle{
	color:#333;
	font-family:inherit;
	-webkit-appearance:none;
	appearance:none;
}

@media screen and (max-width:767px){
	.snap-pc{
		display:none;
	}
	.snap-sp{
		display:block;
		margin-top:4rem;
	}
	.snap__list{
		grid-template-columns:repeat(2,1fr);
	}
}


/*
=========================================
snap-modal
=========================================
*/

.snap-modal{
	position: fixed;
	inset: 0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity .3s ease,
		visibility .3s ease;
}
.snap-modal.is-open{
	opacity: 1;
	visibility: visible;
}
.snap-modal__overlay{
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.7);
}
.snap-modal__inner{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:min(70rem,calc(100vw - 12rem));
	max-height:90dvh;
	padding:5.5rem 2rem 2rem;
	background:#fff;
	overflow:visible;
}
.snap-modal__image{
	display:flex;
	justify-content:center;
	align-items:center;
}
.snap-modal__image img{
	display:block;
	width:auto;
	max-width:100%;
	max-height:76dvh;
	object-fit:contain;
}
.snap-modal__close{
	position:absolute;
	top:1.2rem;
	right:1.5rem;
	border:none;
	background:none;
	font-size:3rem;
	line-height:1;
	cursor:pointer;
	z-index:10;
}
.snap-modal__height{
	margin-top:1rem;
	font-size:1.3rem;
	color:#696969;
}
.snap-modal__prev,
.snap-modal__next{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:48px;
	height:48px;
	border:1px solid #8a8a8a;
	border-radius:50%;
	background:#fff;
	cursor:pointer;
	z-index:20;
}
.snap-modal__prev{
	left:-6rem;
}
.snap-modal__next{
	right:-6rem;
}
.snap-modal__prev:hover,
.snap-modal__next:hover{
	background:#f5f5f5;
}
.snap-modal__prev::before,
.snap-modal__next::before{
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	width:10px;
	height:10px;
	border-top:1px solid #444;
	border-right:1px solid #444;
}
.snap-modal__prev::before{
	transform:
		translate(-35%,-50%)
		rotate(-135deg);
}
.snap-modal__next::before{
	transform:
		translate(-65%,-50%)
		rotate(45deg);
}

@media screen and (max-width:767px){
	.snap-modal__inner{
		position:fixed;
		inset:0;
		transform:none;
		width:100%;
		height:100dvh;
		max-height:none;
		padding:6rem 1.5rem 2rem;
		display:flex;
		flex-direction:column;
		justify-content:center;
		background:#fff;
		overflow:auto;
	}
	.snap-modal__image{
		margin-bottom:0;
	}
	.snap-modal__image img{
		max-height:calc(100dvh - 12rem);
	}
	.snap-modal__overlay{
		display:none;
	}
	.snap-modal__close{
		position:fixed;
		top:1.5rem;
		right:1.5rem;
	}
	.snap-modal__prev,
	.snap-modal__next{
		display:block;
		top:50%;
		width:4rem;
		height:4rem;
		background:rgba(255,255,255,.85);
	}
	.snap-modal__prev{
		left:1rem;
	}
	.snap-modal__next{
		right:1rem;
	}
}

.item-detail__info-mobile{
	margin-top:2.9rem;
	display:none;
}
.purchase-button--fixed{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:.8rem;
	white-space:nowrap;

	color:#000;
	-webkit-text-fill-color:#000;
}
.purchase-button--fixed span{
	white-space:nowrap;
	color:#000;
	-webkit-text-fill-color:#000;
}
.description-toggle{
	display:none;
}
.description-wrapper{
	max-height:none;
	overflow:visible;
}
.description-wrapper::after{
	display:none;
}
.purchase-fixed{
	display:none;
}


/* SP detail page*/
@media (max-width:767px){
	.purchase-fixed{
		display:block;
		position:fixed;
		left:1rem;
		right:1rem;
		bottom:1rem;
		z-index:1000;
		opacity:0;
		visibility:hidden;
		pointer-events:none;
		transform:translateY(20px);
		transition:.3s;
	}
	.purchase-fixed.is-show{
		opacity:1;
		visibility:visible;
		pointer-events:auto;
		transform:translateY(0);
	}
	.purchase-button--fixed{
		display:flex;
		align-items:center;
		justify-content:center;
		gap:.8rem;
		width:100%;
		height:52px;
		border:none;
		border-radius:999px;
		background:#cfd2c4;
		box-shadow:0 2px 12px rgba(0,0,0,.15);
	}
	.purchase-fixed .purchase-button{
		display:flex !important;
		opacity:1 !important;
		visibility:visible !important;
	}

	.item-detail__info-mobile{
		display:block;
		margin-bottom:2rem;
	}
	.item-detail__right-contents .item-detail__info{
		display:none;
	}
	.description-wrapper{
		max-height:220px;
		overflow:hidden;
		position:relative;
	}
	.description-wrapper::after{
		content:"";
		position:absolute;
		left:0;
		right:0;
		bottom:0;
		height:120px;
		background:linear-gradient(
			to bottom,
			rgba(255,255,255,0),
			rgba(255,255,255,1)
		);
	}
	.description-wrapper.is-open{
		max-height:none;
	}
	.description-wrapper.is-open::after{
		display:none;
	}
	.description-toggle{
		display:block;
		width:100%;
		margin:1.5rem 0;
		padding:1.2rem;
		border:1px solid #ddd;
		background:#fff;
		font-size:1.4rem;
		text-align:center;
	}
}


/* Size chart link */
.item-size__link-wrapper {
	margin-top: 1.6rem;
}
.item-size__link {
	display: inline-block;
	font-size: 1.4rem;
	color: #555;
	text-decoration: underline;
	text-underline-offset: 0.3em;
	text-decoration-color: #888;
	transition: color 0.2s ease;
}
.item-size__link:hover {
	color: #000;
	text-decoration-color: #000;
}

/* fabric */
.item-detail__fabric-under-cart {
	margin-top: 2.4rem;
	font-size: 1.4rem;
	color: #555;
}

/* CARE */
.item-detail__care {
	margin-top: 2.0rem;
	margin-bottom: 2.0rem;
	font-size: 1.4rem;
	line-height: 1.7;
}
.item-detail__care .care-title {
	color: #3c5078;
	font-weight: 700;
	margin-bottom: 0.8rem;
	letter-spacing: 0.05em;
}
.item-detail__care .care-list {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	color: #3c5078;
	padding: 0;
	list-style: none;
}
.item-detail__care .care-list li {
	text-align: justify;
}


/* =========================================
   Adjusted position and width of the effect title.
   ========================================= */
@media (min-width: 768px) {
    .products__about .about-effect__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6.0rem 4.0rem;
    }
    .products__about .about-effect__list li {
        display: contents;
    }
    .products__about .about-effect__01 .about-effect__txt {
        grid-column: 1;
        grid-row: 1;
    }
    .products__about .about-effect__02 .about-effect__txt {
        grid-column: 2;
        grid-row: 1;
    }
    .products__about .about-effect__03 .about-effect__txt {
        grid-column: 1;
        grid-row: 2;
        padding-top: 4.0rem;
    }
    .products__about .about-effect__03 .about-effect__img {
        grid-column: 2;
        grid-row: 2;
        padding-top: 4.0rem;
    }
    .products__about .about-effect__txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .products__about .about-effect__txt h4 {
        margin-top: 0 !important;
        margin-bottom: 2.0rem !important;
        display: inline-block !important;
        border: 1px solid #ff4b4b !important;
        border-radius: 2.0rem !important;
        padding: 0.6rem 2.4rem !important;
        color: #ff4b4b !important;
        font-size: 2.0rem !important;
        font-weight: normal !important;
        line-height: 1 !important;
    }
    .products__about .about-effect__summary,
	.products__about .about-effect__detail {
        margin-bottom: 1.5rem !important;
        min-height: 4.8rem;
        width: 100%;
    }
}

@media (max-width: 767px){
	.products__about .about-effect__txt h4{
		margin-bottom: 2.0rem;
	}
	.products__about .about-effect__summary{
		margin-bottom: 1.6rem;
	}
	.products__about .about-effect__detail{
		margin-bottom: 0;
	}
	.products__about .about-effect__list{
		row-gap: 2.0rem;
	}
	.products__about .about-effect__03 .about-effect__txt{
		margin-top: 2.0rem;
	}
}

/* =========================================
   商品詳細ページ 背景色
   ========================================= */
body#item-detail,
body#item-detail .wrapper,
body#item-detail main{
	background-color: rgb(252, 251, 248);
}