/*========================
ローディング
========================*/
#loaded {
	display: none;
	overflow: hidden;
	position: relative
}

#loader-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1000;
	overflow: hidden;
	animation: contentScale 2.6s forwards;
}

#loader {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 70%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10000;
}

#loader img {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	transform: translate(-50%, -50%);
	position: 0;
	width: 90%;
	max-width: 2.00rem;
	animation: fadeIn 2.2s ease forwards;
	opacity: 0;
}

@media screen and (max-width: 499px) {
	#loader img {
		max-width: 1.40rem;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}


/* シャッター */
.shutter {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	z-index: 9999;
	-webkit-animation: byeShutter 2.6s forwards;
	animation: byeShutter 2.6s forwards;
}

.shutter::before,
.shutter::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

.shutter::before {
	background-color: #dc0017;
	width: 0;
	height: 0;
	-webkit-animation: shutterOpen1 2.6s forwards;
	animation: shutterOpen1 2.6s forwards;
}

.shutter::after {
	width: 120%;
	height: 0;
	margin-left: -10%;
	background-color: #f3f3f3;
	-webkit-animation: shutterOpen2 2.6s forwards;
	animation: shutterOpen2 2.6s forwards;
}

@-webkit-keyframes byeShutter {
	70% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		display: none;
		z-index: -1;
	}
}

@keyframes byeShutter {
	70% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		display: none;
		z-index: -1;
	}
}

@-webkit-keyframes shutterOpen1 {
	0% {
		width: 0;
		height: 0;
	}

	50% {
		width: 100%;
		height: 0;
	}

	90% {
		width: 100%;
		height: 100%;
	}

	100% {
		width: 100%;
		height: 100%;
	}
}

@keyframes shutterOpen1 {
	0% {
		width: 0;
		height: 0;
	}

	50% {
		width: 100%;
		height: 0;
	}

	90% {
		width: 100%;
		height: 100%;
	}

	100% {
		width: 100%;
		height: 100%;
	}
}

@-webkit-keyframes shutterOpen2 {
	60% {
		width: 120%;
		height: 0;
		transform: rotate(5deg);
	}

	90% {
		width: 120%;
		height: 100%;
		transform: rotate(-5deg);
	}

	100% {
		width: 120%;
		height: 100%;
		transform: rotate(-5deg);
	}
}

@keyframes shutterOpen2 {
	60% {
		width: 120%;
		height: 0;
		transform: rotate(5deg);
	}

	90% {
		width: 120%;
		height: 100%;
		transform: rotate(-5deg);
	}

	100% {
		width: 120%;
		height: 100%;
		transform: rotate(-5deg);
	}
}


/*====================
GR Garage基本
====================*/
#gr_garage {
	padding-top: 0;
}

#gr_garage_wrap {
	background-color: #000;
	color: #FFF;
	padding-bottom: 0.60rem;
	position: relative;
}

/* トップのみ */
#gr_garage_wrap.top {
	padding-bottom: 0;
}

/* 斜め背景（左）*/
#gr_garage_wrap::before {
	content: "";
	width: 5.70rem;
	height: 100%;
	background-image: url(../img/gr_garage/gr_garage_bg_line.png);
	background-position: 0 0;
	background-repeat: repeat-y;
	background-size: 100% auto;
	position: absolute;
	left: -2.70rem;
	top: 2.50rem;
	z-index: 0;
	opacity: 0.8;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap::before {
		width: 2.85rem;
		height: 15.85rem;
		left: -1.35rem;
		top: 0.80rem;
	}
}

/* 斜め背景（右）*/
#gr_garage_wrap::after {
	content: "";
	width: 5.70rem;
	height: 100%;
	background-image: url(../img/gr_garage/gr_garage_bg_line.png);
	background-position: 0 0;
	background-repeat: repeat-y;
	background-size: 100% auto;
	position: absolute;
	right: -2.50rem;
	top: 11.00rem;
	z-index: 0;
	opacity: 0.8;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap::after {
		width: 2.85rem;
		height: 15.85rem;
		right: -1.85rem;
		top: 8.00rem;
	}
}

/* ロゴ */
#gr_garage_wrap .gr_garage_header {
	padding: 0.20rem ;
	text-align: center;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .gr_garage_header {
		padding: 0.20rem 0;
	}
}

#gr_garage_wrap .gr_garage_header .logo {
	width: 100%;
	max-width: 2.70rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .gr_garage_header .logo {
		max-width: 1.50rem;
	}
}

#gr_garage_wrap .gr_garage_header .logo img {
	display: block;
}

/* パンくず */
#gr_garage_wrap #page_navi {
	padding-bottom: 0.80rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #page_navi {
		padding: 0.19rem 0 0.30rem;
	}
}

#gr_garage_wrap #page_navi .list .link a,
#gr_garage_wrap #page_navi .list .link.current {
	color: #FFF;
}

#gr_garage_wrap #page_navi .list .link a::after {
	opacity: 1;
	background-image: url(../img/gr_garage/gr_garage_pagenavi_arrow.svg);
}

/* タイトル */
#gr_garage_wrap .cont_header {
	padding-bottom: 0.40rem;
}

#gr_garage_wrap .cont_header .sub_title {
	font-size: 0.18rem;
	font-weight: 600;
	line-height: 1.65;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .cont_header .sub_title {
		font-size: 0.13rem;
		letter-spacing: 0.05em;
	}
}

#gr_garage_wrap .cont_header .title {
	font-size: 0.30rem;
	font-weight: 600;
	line-height: 1.65;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .cont_header .title {
		font-size: 0.21rem;
	}
}

/* 製品タイプのテキスト */
#gr_garage_wrap .product_type_text {
	position: absolute;
	left: 0.20rem;
	top: -0.15rem;
	z-index: 2;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_type_text {
		position: absolute;
		left: 0.30rem;
		top: -0.12rem;
		z-index: 2;
	}
}

#gr_garage_wrap .product_type_text span {
	display: inline-block;
	font-size: 0.16rem;
	line-height: 0;
	padding: 0.13rem 0.10rem 0.15rem;
	background-color: #dc0017;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_type_text span {
		font-size: 0.12rem;
		padding: 0.10rem 0.05rem 0.12rem;
	}
}

#gr_garage_wrap .product_type_text span::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 0.28rem 0.10rem;
	border-color: transparent transparent #dc0017 transparent;
	position: absolute;
	left: -0.10rem;
	top: 0;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_type_text span::before {
		border-width: 0 0 0.22rem 0.10rem;
	}
}

#gr_garage_wrap .product_type_text span::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.28rem 0.10rem 0 0;
	border-color: #dc0017 transparent transparent transparent;
	position: absolute;
	right: -0.10rem;
	top: 0;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_type_text span::after {
		border-width: 0.22rem 0.10rem 0 0;
	}
}

/* カテゴリー */
#gr_garage_wrap .product_category_list_wrap {
	width: 100%;
	max-width: 2.50rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_category_list_wrap {
		max-width: 100%;
		padding-bottom: 0.30rem;
	}
}

#gr_garage_wrap .product_category_list_wrap .title {
	font-size: 0.20rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 0.15rem;
	border-bottom: 1px solid #DDDDDD;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_category_list_wrap .title {
		font-size: 0.16rem;
	}
}

#gr_garage_wrap .product_category_list_wrap .title::after {
	content: "";
	width: 0.65rem;
	height: 1px;
	background-color: #DC0017;
	position: absolute;
	left: 0;
	bottom: -1px;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_category_list_wrap .title::after {
		width: 0.45rem;
	}
}

#gr_garage_wrap .product_category_list_wrap .list {
	padding-top: 0.10rem;
/*	padding-right: 0.50rem;*/
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_category_list_wrap .list {
		padding-right: 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
}

#gr_garage_wrap .product_category_list_wrap .list .link {
/*	text-align: right;*/
	padding: 0.10rem 0;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_category_list_wrap .list .link {
		text-align: left;
		padding: 0.05rem 0;
		width: 50%;
	}
}

#gr_garage_wrap .product_category_list_wrap .list .link.w50 a span {
	display: inline-block;
	padding-left: 0.33rem;
	text-indent: -0.33rem;
}

#gr_garage_wrap .product_category_list_wrap .list .link a {
	font-size: 0.16rem;
	line-height: 1.45;
	font-weight: 600;
	color: #FFF;
	text-decoration: none;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_category_list_wrap .list .link a {
		font-size: 0.14rem;
	}
}

#gr_garage_wrap .product_category_list_wrap .list .link a:hover {
	opacity: 0.7;
}

#gr_garage_wrap .product_category_list_wrap .list .link a span::before{
	content: "";
	display: inline-block;
	width: 0.24rem;
	height: 0.24rem;
	background-image: url(../img/gr_garage/gr_garage_arrow.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 0.08rem;
	position: relative;
	top: 0.06rem;
	right: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_category_list_wrap .list .link a span::before {
		width: 0.20rem;
		height: 0.20rem;
		margin-left: 0.06rem;
		top: 0.05rem;
	}
}

#gr_garage_wrap .product_category_list_wrap .list .link a:hover span::after {
	right: -0.06rem;
}

/*====================
トップページ
====================*/
#gr_garage_wrap #introduction {
	padding: 1.30rem 0;
	text-align: center;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #introduction {
		padding: 0.50rem 0;
	}
}

#gr_garage_wrap #introduction .sec_title {
	font-size: 0.30rem;
	font-weight: 600;
	line-height: 1.66;
	padding-bottom: 0.40rem;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #introduction .sec_title {
		font-size: 0.20rem;
		padding-bottom: 0.30rem;
	}
}

#gr_garage_wrap #introduction .text {
	font-size: 0.16rem;
	line-height: 1.85;
	padding-bottom: 0.40rem;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #introduction .text {
		font-size: 0.14rem;
		text-align: left;
		padding-bottom: 0.30rem;
	}
}

#gr_garage_wrap #introduction .link_wrap a {
	color: #FFF;
	font-size: 0.16rem;
	letter-spacing: 0.075em;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #introduction .link_wrap a {
		font-size: 0.14rem;
		line-height: 1.55;
	}
}

#gr_garage_wrap #introduction .link_wrap a::after {
	content: "";
	display: inline-block;
	width: 0.20rem;
	height: 0.15rem;
	background-image: url(../img/gr_garage/gr_garage_next_icon.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	top: -0.05rem;
	margin-left: 0.06rem;
	transform: rotate(90deg);
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #introduction .link_wrap a::after {
		display: block;
		width: 0.20rem;
		height: 0.15rem;
		margin: auto;
		top: 0;
	}
}

/* 横スライドがあるコンテンツ */
#gr_garage_wrap .slide_cont_wrap {
	padding-bottom: 1.50rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap {
		padding-bottom: 1.00rem;
	}
}

#gr_garage_wrap .slide_cont_wrap .textbox {
	width: 100%;
	max-width: 4.80rem;
	height: 3.75rem;
	box-sizing: border-box;
	padding-top: 0.70rem;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .textbox {
		height: auto;
		padding-top: 0;
	}
}

#gr_garage_wrap .slide_cont_wrap:nth-child(even) .textbox {
	margin-left: auto;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap:nth-child(even) .textbox {
		margin: auto;
	}
}

#gr_garage_wrap .slide_cont_wrap .sec_title {
	font-size: 0.30rem;
	font-weight: 600;
	letter-spacing: 0.075em;
	padding-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .sec_title {
		font-size: 0.20rem;
		padding-bottom: 0.20rem;
	}
}

#gr_garage_wrap .slide_cont_wrap .text {
	font-size: 0.16rem;
	line-height: 1.85;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .text {
		font-size: 0.14rem;
		letter-spacing: 0.05em;
		padding-bottom: 0.30rem;
	}
}

#gr_garage_wrap .slide_cont_wrap .text span {
	font-size: 0.13rem;
	display: block;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .text span {
		font-size: 0.12rem;
	}
}

/* スライダー */
#gr_garage_wrap .slide_cont_wrap .slider_wrap {
	position: absolute;
	width: calc(50% + 0.70rem);
	right: 0;
	top: 0;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .slider_wrap {
		position: relative;
		width: 100%;
		right: auto;
		top: auto;
		z-index: 1;
	}
}

#gr_garage_wrap .slide_cont_wrap:nth-child(even) .slider_wrap {
	right: auto;
	left: 0;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap:nth-child(even) .slider_wrap {
		left: auto;
	}
}

#gr_garage_wrap .slide_cont_wrap .slider_wrap::after {
	content: "";
	width: 0.85rem;
	height: 100%;
	background-image: url(../img/gr_garage/top_slide_stripe.png);
	background-position: right top;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .slider_wrap::after {
		content: none;
	}
}

#gr_garage_wrap .slide_cont_wrap:nth-child(even) .slider_wrap::after {
	background-image: url(../img/gr_garage/top_slide_stripe02.png);
	background-position: right bottom;
	left: auto;
	right: 0;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap:nth-child(even) .slider_wrap::after {
		content: none;
	}
}

#gr_garage_wrap .slide_cont_wrap .slider_wrap .slick-list {
	padding-left: 0.40rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .slider_wrap .slick-list {
		padding-left: 0;
	}
}

#gr_garage_wrap .slide_cont_wrap:nth-child(even) .slider_wrap .slick-list {
	padding-left: 3.30rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap:nth-child(even) .slider_wrap .slick-list {
		padding-left: 0;
	}
}

#gr_garage_wrap .slide_cont_wrap .slider_wrap .slide .mask {
	transform: skewX(-14deg);
	overflow: hidden;
	border-left: 0.10rem solid #000;
	border-right: 0.10rem solid #000;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .slider_wrap .slide .mask {
		border-left: 0.05rem solid #000;
		border-right: 0.05rem solid #000;
	}
}

#gr_garage_wrap .slide_cont_wrap .slider_wrap .slide .mask img {
	transform: skewX(14deg) scale(1.18);
}

/* スライダー下のドット */
#gr_garage_wrap .slide_cont_wrap .slider_wrap .slick-dots {
	bottom: auto;
	top: 2.60rem;
	left: -5.30rem;
	text-align: left;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .slider_wrap .slick-dots {
		bottom: -0.35rem;
		top: auto;
		left: auto;
		text-align: center;
	}
}

#gr_garage_wrap .slide_cont_wrap:nth-child(even) .slider_wrap .slick-dots {
	left: auto;
	right: -2.55rem;
	text-align: right;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap:nth-child(even) .slider_wrap .slick-dots {
		bottom: -0.30rem;
		right: auto;
		text-align: center;
	}
}

#gr_garage_wrap .slide_cont_wrap .slider_wrap .slick-dots li {
	margin: 0 0.20rem 0 0;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .slider_wrap .slick-dots li {
		margin: 0 0.05rem 0 0;
	}
}

#gr_garage_wrap .slide_cont_wrap .slider_wrap .slick-dots li button::before {
	color: transparent;
	opacity: 1;
	border: 1px solid #dc0017;
	width: 0.15rem;
	height: 0.15rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .slide_cont_wrap .slider_wrap .slick-dots li button::before {
		width: 0.08rem;
		height: 0.08rem;
	}
}

#gr_garage_wrap .slide_cont_wrap .slider_wrap .slick-dots li.slick-active button::before {
	opacity: 1;
	background-color: #dc0017;
}

/* お知らせ */
#gr_garage_wrap #news {
	padding-bottom: 1.50rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news {
		padding-bottom: 0.70rem;
	}
}

#gr_garage_wrap #news .sec_title {
	font-size: 0.30rem;
	font-weight: 600;
	letter-spacing: 0.075em;
	padding-bottom: 0.60rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news .sec_title {
		font-size: 0.20rem;
		padding-bottom: 0.40rem;
	}
}

#gr_garage_wrap #news .news_list_wrap {
	padding-bottom: 1.00rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news .news_list_wrap {
		padding-bottom: 0.40rem;
	}
}

#gr_garage_wrap #news .news_list_wrap .list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.15rem;
}

#gr_garage_wrap #news .news_list_wrap .list .detail {
	width: 25%;
	box-sizing: border-box;
	padding: 0 0.15rem 0.40rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news .news_list_wrap .list .detail {
		width: 100%;
	}
}

#gr_garage_wrap #news .news_list_wrap .list .detail a {
	color: #FFF;
	text-decoration: none;
}

#gr_garage_wrap #news .news_list_wrap .list .detail a:hover {
	color: #dc0017;
}


#gr_garage_wrap #news .list .detail.is-hidden {
	visibility: hidden;
	opacity: 0;
	height: 0;
	margin: 0 10px;
	padding:0;
}


#gr_garage_wrap #news .news_list_wrap .list .detail a .ph_wrap {
	width: 100%;
	min-height: 1.56rem;
	height: 11.14vw;
	overflow: hidden;
	position: relative;
	z-index: 1;
	margin-bottom: 0.15rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news .news_list_wrap .list .detail a .ph_wrap {
		min-height: auto;
		height: 55.00vw;
		margin-bottom: 0.10rem;
	}
}

#gr_garage_wrap #news .news_list_wrap .list .detail a .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 0;
	transition: all 0.3s;
}

#gr_garage_wrap #news .news_list_wrap .list .detail a:hover .ph_wrap img {
	transform: scale(1.04);
}

#gr_garage_wrap #news .news_list_wrap .list .detail a .title {
	font-size: 0.16rem;
	font-weight: 500;
	padding-bottom: 0.10rem;
	letter-spacing: 0.05em;
	line-height: 1.45;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news .news_list_wrap .list .detail a .title {
		font-size: 0.15rem;
		font-weight: 600;
		padding-bottom: 0.06rem;
	}
}

#gr_garage_wrap #news .news_list_wrap .list .detail a .date {
	font-size: 0.12rem;
}

/* VIEW MORE ボタン */
#gr_garage_wrap #news .more_btn_wrap {
	width: 100%;
	max-width: 3.80rem;
	margin: auto;
}

#gr_garage_wrap #news .more_btn_wrap button {
	display: block;
	position: relative;
	line-height: 0;
	color: #dc0017;
	border: 2px solid #dc0017;
	text-align: center;
	font-size: 0.18rem;
	font-weight: 600;
	padding: 0.34rem 0 0.36rem;
	box-sizing: border-box;
	text-decoration: none;
	letter-spacing: 0.075em;
	width: 100%;
	background: initial;
}
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news .more_btn_wrap button {
		font-size: 0.14rem;
		padding: 0.24rem 0 0.26rem;
	}
}

#gr_garage_wrap #news .more_btn_wrap button::after {
	content: "";
	width: 0.20rem;
	height: 0.15rem;
	background-image: url(../img/gr_garage/gr_garage_next_icon.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.15rem;
	top: 43%;
	transform: translateY(-50%) rotate(90deg);
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news .more_btn_wrap button::after {
		width: 0.20rem;
		height: 0.10rem;
		top: 38%;
	}
}

#gr_garage_wrap #news .more_btn_wrap button:hover {
	background-color: #dc0017;
	color: #000;
}

#gr_garage_wrap #news .more_btn_wrap button:hover::after {
	background-image: url(../common/img/icon_right_black.svg);
}

/*
#gr_garage_wrap #news .more_btn {
	width: 100%;
	max-width: 3.80rem;
	margin: auto;
}

#gr_garage_wrap #news .more_btn a {
	display: block;
	position: relative;
	line-height: 0;
	color: #dc0017;
	border: 2px solid #dc0017;
	text-align: center;
	font-size: 0.18rem;
	font-weight: 600;
	padding: 0.34rem 0 0.36rem;
	box-sizing: border-box;
	text-decoration: none;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news .more_btn a {
		font-size: 0.14rem;
		padding: 0.24rem 0 0.26rem;
	}
}

#gr_garage_wrap #news .more_btn a::after {
	content: "";
	width: 0.20rem;
	height: 0.15rem;
	background-image: url(../img/gr_garage/gr_garage_next_icon.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.15rem;
	top: 43%;
	transform: translateY(-50%) rotate(90deg);
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #news .more_btn a::after {
		width: 0.20rem;
		height: 0.10rem;
		top: 38%;
	}
}

#gr_garage_wrap #news .more_btn a:hover {
	background-color: #dc0017;
	color: #000;
}

#gr_garage_wrap #news .more_btn a:hover::after {
	background-image: url(../common/img/icon_right_black.svg);
}
*/

/* SNSタイムライン */
#gr_garage_wrap #sns_timeline {
	padding-bottom: 1.50rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #sns_timeline {
		padding-bottom: 0.70rem;
	}
}

#gr_garage_wrap #sns_timeline .title {
	text-align: center;
	font-size: 0.22rem;
	font-weight: 500;
	margin-bottom: 0.20rem;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
#gr_garage_wrap #sns_timeline .title {
	font-size: 0.18rem;
	margin-bottom: 0.10rem;
}
}

#gr_garage_wrap #sns_timeline .title span::before {
	content: "";
	display: inline-block;
	width: 0.22rem;
	height: 0.22rem;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 0.10rem;
	position: relative;
	top:0.03rem;
}

@media screen and (max-width: 599px) {
#gr_garage_wrap #sns_timeline .title span::before {
	width: 0.18rem;
	height: 0.18rem;
	margin-right: 0.06rem;
	top:0.02rem;
}
}

#gr_garage_wrap #sns_timeline .title.fb span::before {
	background-image: url(../common//img/icon_fb_color.svg);
}

#gr_garage_wrap #sns_timeline .title.tw span::before {
	background-image: url(../common//img/icon_x_wh.svg);
}


#gr_garage_wrap #sns_timeline iframe {
	width: 100%;
	height: 600px;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #sns_timeline iframe {
		height: 4.00rem !important;
	}
}

#gr_garage_wrap #sns_timeline .in {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#gr_garage_wrap #sns_timeline .sns_box {
	width: 100%;
	max-width: 5.00rem;
	height: 6.00rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #sns_timeline .sns_box {
		height: 4.00rem;
		margin-bottom: 0.30rem;
		overflow: hidden;
	}
}

/* GR Garage Accessory Parts */
#gr_garage_wrap #accessory {
	padding-bottom: 1.50rem;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory {
		padding-bottom: 0.70rem;
	}
}

#gr_garage_wrap #accessory .accessory_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 0.80rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .accessory_header {
		margin-bottom: 0;
	}
}

#gr_garage_wrap #accessory .accessory_header .textbox {
	width: 45%;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .accessory_header .textbox {
		width: 100%;
	}
}

#gr_garage_wrap #accessory .accessory_header .textbox .sec_title {
	font-size: 0.30rem;
	font-weight: 600;
	letter-spacing: 0.075em;
	padding-bottom: 0.40rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .accessory_header .textbox .sec_title {
		font-size: 0.20rem;
		padding-bottom: 0.20rem;
		letter-spacing: 0;
	}
}

#gr_garage_wrap #accessory .accessory_header .textbox .text {
	font-size: 0.16rem;
	line-height: 1.85;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .accessory_header .textbox .text {
		font-size: 0.14rem;
		padding-bottom: 0.40rem;
	}
}

#gr_garage_wrap #accessory .accessory_header .entry_wrap {
	width: 48%;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .accessory_header .entry_wrap {
		width: 100%;
	}
}

#gr_garage_wrap #accessory .accessory_header .entry_wrap .list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.15rem;
}

#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail {
	width: 50.0%;
	padding: 0 0.15rem;
	box-sizing: border-box;
	position: relative;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail {
		width: 100%;
		padding: 0 0.15rem 0.60rem;
	}
}

/* 製品のタイプ */
@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .accessory_header .entry_wrap .product_list .product_type_text {
		left: 0.20rem;
	}
}

#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail a {
	display: block;
	position: relative;
	color: #FFF;
	text-decoration: none;
}

/* 製品写真 */
#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail a .ph_wrap {
	width: 100%;
	height: 1.85rem;
	overflow: hidden;
	position: relative;
	z-index: 1;
	margin-bottom: 0.10rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail a .ph_wrap {
		height: 55vw;
	}
}

#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail a .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 0;
	transition: all 0.3s;
}

#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail a:hover .ph_wrap img {
	opacity: 0.7;
	transform: scale(1.04);
}

/* 製品名 */
#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail a .title {
	font-size: 0.14rem;
	font-weight: 500;
	line-height: 1.40;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail a .title {
		font-weight: 600;
	}
}

/* 金額 */
#gr_garage_wrap #accessory .accessory_header .entry_wrap .list .detail a .price {
	text-align: right;
	font-size: 0.14rem;
	font-weight: 500;
	padding-top: 0.08rem;
}

#gr_garage_wrap #accessory .product_category_list_wrap {
	max-width: 100%;
}

#gr_garage_wrap #accessory .product_category_list_wrap .list {
	display: flex;
	flex-wrap: wrap;
}

#gr_garage_wrap #accessory .product_category_list_wrap .list .link {
	width: 33.333%;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .product_category_list_wrap .list .link {
		width: 50%;
	}
}

/*
#gr_garage_wrap #accessory .product_category_list_wrap .list .link.w50 {
	width: 40%;
}

#gr_garage_wrap #accessory .product_category_list_wrap .list .link.w50 br {
	display: none;
}
*/

#gr_garage_wrap #accessory .product_category_list_wrap .title::after {
	width: 2.75rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #accessory .product_category_list_wrap .title::after {
		width: 1.50rem;
	}
}


/* ピックアップ */
@media screen and (max-width: 599px) {
	#pickup {
		padding-bottom: 0.40rem;
	}
}

#pickup .pickup_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: center;
	padding-bottom: 1.50rem;
}

@media screen and (max-width: 599px) {
	#pickup .pickup_box {
		padding-bottom: 0.50rem;
	}
}

#pickup .pickup_box:nth-child(even) {
	flex-direction: row;
}

#pickup .pickup_box .ph_wrap {
	width: 100%;
	height: 30.42vw;
	max-width: 6.40rem;
	max-height: 4.26rem;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#pickup .pickup_box .ph_wrap {
		height: 55.00vw;
		margin-bottom: 0.10rem;
	}
}

#pickup .pickup_box .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 0;
}

#pickup .pickup_box .textbox {
	width: 100%;
	max-width: 4.80rem;
}

#pickup .pickup_box .textbox .title {
	font-size: 0.30rem;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.66;
	padding-bottom: 0.30rem;
}

@media screen and (max-width: 599px) {
	#pickup .pickup_box .textbox .title {
		font-size: 0.20rem;
		padding-bottom: 0.10rem;
	}
}

#pickup .pickup_box .textbox .text {
	font-size: 0.16rem;
	letter-spacing: 0.075em;
	line-height: 1.85;
	padding-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#pickup .pickup_box .textbox .text {
		font-size: 0.14rem;
		letter-spacing: 0.05em;
		padding-bottom: 0.20rem;
	}
}

#pickup .pickup_box .textbox .more_btn a {
	color: #FFF;
	font-size: 0.16rem;
	text-decoration: none;
}

@media screen and (max-width: 599px) {
	#pickup .pickup_box .textbox .more_btn a {
		font-size: 0.14rem;
	}
}

#pickup .pickup_box .textbox .more_btn a:hover {
	opacity: 0.7;
}

#pickup .pickup_box .textbox .more_btn a::after {
	content: "";
	display: inline-block;
	width: 0.30rem;
	height: 0.30rem;
	background-image: url(../img/gr_garage/gr_garage_arrow.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 0.10rem;
	position: relative;
	top: 0.07rem;
	right: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	#pickup .pickup_box .textbox .more_btn a::after {
		width: 0.24rem;
		height: 0.24rem;
		top: 0.06rem;
	}
}

#pickup .pickup_box .textbox .more_btn a:hover::after {
	right: -0.06rem;
}

/* 店舗情報 */
#company {
	background-color: #FFF;
	padding: 1.00rem 0 1.50rem;
	color: #000;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#company {
		padding: 0.50rem 0 0.70rem;
	}
}

#company .sec_title {
	font-size: 0.24rem;
	font-weight: 600;
	text-align: center;
	padding-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#company .sec_title {
		font-size: 0.20rem;
		line-height: 1.55;
		padding-bottom: 0.30rem;
	}
}

#company .company_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 0.60rem;
}

#company .company_wrap .ph_wrap {
	width: 53.75%;
}

@media screen and (max-width: 599px) {
	#company .company_wrap .ph_wrap {
		width: 100%;
	}
}

#company .company_wrap .textbox {
	width: 41.66%;
}

@media screen and (max-width: 599px) {
	#company .company_wrap .textbox {
		width: 100%;
	}
}

#company .company_wrap table {
	width: 100%;
	border-collapse: collapse;
}

#company .company_wrap table tr {
	width: 100%;
	border-bottom: 1px solid #dddddd;
}

#company .company_wrap table tr:last-child {
	width: 100%;
	border-bottom: none;
}

#company .company_wrap table th {
	width: 20%;
	text-align: left;
	font-size: 0.16rem;
	font-weight: 600;
	padding: 0.20rem 0;
	vertical-align: top;
	line-height: 2;
}

@media screen and (max-width: 599px) {
	#company .company_wrap table th {
		font-size: 0.13rem;
		letter-spacing: 0;
	}
}

#company .company_wrap table td {
	width: 80%;
	font-size: 0.16rem;
	padding: 0.20rem 0;
	line-height: 2;
}

#company .company_wrap table td a {
	color: #000;
	text-decoration: none;
}

@media screen and (max-width: 599px) {
	#company .company_wrap table td {
		font-size: 0.12rem;
		padding: 0.20rem 0.1rem;
		letter-spacing: 0;
	}

	#company .company_wrap table td a {
		text-decoration: underline;
	}
}

/*=============================
カレンダー
=============================*/
#company .calendar {
	margin-top: 0.40rem;
	--side-padding: 21px;
	--border-radius: 34px;
	--accent-br: 15px;
	/*	width: 513px;*/
	overflow: hidden;
	border: 1px solid #dadada;
}

@media screen and (max-width: 599px) {
	#company .calendar {
		width: 100%;
	}
}


#company .calendar__opts {
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	padding: 15px;
}

#company .calendar__opts,
#company .calendar__buttons {
	background-color: #fff;
	display: flex;
	justify-content: space-between;
}


#company .calendar__month.selected,
#company .calendar__nextmonth.selected {
	background: #00428e !important;
	color: #fff;
}

#company .calendar .calendar__month,
#company .calendar .calendar__nextmonth {
	background-color: #f3f4f6;
	padding: 8px 20px;
	line-height: 1.3;
	transition: 0.5s cubic-bezier(0, 0.55, 0.45, 1);
	cursor: pointer;
	width: 48%;
}

#company .calendar__month,
#company .calendar__nextmonth {
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: calc(100% - var(--side-padding)) center;
}

#company .calendar__month,
#company .calendar__nextmonth {
	font-weight: 700;
	font-size: 1.4em;
	font-family: 'Poppins', sans-serif;
	border-radius: 20px;
	outline: none;
	border: 0;
	padding: 15px 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


#company .calendar .calendar__month,
#company .calendar .calendar__nextmonth {
	background-color: #f3f4f6;
	padding: 8px 20px;
	line-height: 1.3;
	transition: 0.5s cubic-bezier(0, 0.55, 0.45, 1);
	cursor: pointer;
	width: 40%;
	text-align: center;
}

#company .calendar__month,
#company .calendar__nextmonth {
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: calc(100% - var(--side-padding)) center;
}

#company .calendar__body {
	background-image: linear-gradient(to bottom, #f3f4f6, #fff);
}

#company .calendar__days {
	background-color: #fff;
	padding: 8px 5px;
	display: flex;
}

#company .calendar__days > div {
	text-align: center;
	width: 100%;
	font-weight: 700;
	font-size: 0.12rem;
	color: #c5c8ca;
}

#company .calendar__dates {
	padding: 0 5px;
	display: flex;
	flex-wrap: wrap;
}

#company .calendar__date:nth-child(7n+1) {
	color: #f00;
}

#company .calendar__date:nth-child(7n) {
	color: #00f;
}

#company .calendar__date--grey,
#company .calendar__date--grey:nth-child(7n+1),
#company .calendar__date--grey:nth-child(7n) {
	color: #c5c8ca;
	cursor: not-allowed;
}

#company .calendar__date {
	--height: calc(400px / 6 - var(--side-padding));
	text-align: center;
	height: var(--height);
	line-height: var(--height);
	width: calc(100% / 7);
	font-weight: 600;
	font-size: 0.12rem;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	position: relative;
}

#company .calendar__date::before {
	content: "";
	position: absolute;
	background-color: rgba(255, 255, 255, 0);
	width: 0.28rem;
	height: 0.28rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: var(--accent-br);
	transition: background-color 0.3s ease;
}

#company .calendar__date span {
	position: relative;
	z-index: 1;
}

#company .calendar__date--selected {
	color: #000;
}

#company .calendar__date--selected::before {
	background-color: #3c79be;
	border-radius: 50%;
}

#company .calendar__date--holiday::before {
	background-color: #a2bfe0;
	border-radius: 50%;
}

/*カレンダーメモ*/
#company .calendar_note {
	margin-top: 0.05rem;
}

#company .calendar_note .list {
	display: flex;
	flex-wrap: wrap;
}

#company .calendar_note .list .item {
	font-size: 0.13rem;
	padding-right: 0.10rem;
}

@media screen and (max-width: 599px) {
	#company .calendar_note .list .item {
		margin-bottom: 0.10rem;
	}
}


#company .calendar_note .list .item.tenpo::before {
	content: '';
	width: 0.18rem;
	height: 0.18rem;
	display: inline-block;
	background: #276ab7;
	border-radius: 50%;
	margin-right: 0.04rem;
	position: relative;
	top: 0.05rem;
}

#company .calendar_note .list .item.kojo::before {
	content: '';
	width: 0.18rem;
	height: 0.18rem;
	display: inline-block;
	background: #a2bfe0;
	border-radius: 50%;
	margin-right: 0.04rem;
	position: relative;
	top: 0.05rem;
}


/* GoogleMap */
#company .gmap .title {
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	font-size: 0.30rem;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#company .gmap .title {
		font-size: 0.20rem;
	}
}

#company .gmap .title span {
	font-size: 0.16rem;
	display: inline-block;
	padding-left: 0.10rem;
	color: #9D9D9D;
	position: relative;
	top: -0.01rem;
}

@media screen and (max-width: 599px) {
	#company .gmap .title span {
		font-size: 0.14rem;
		top: auto;
	}
}

#company .gmap iframe {
	width: 100%;
	height: 5.20rem;
}

@media screen and (max-width: 599px) {
	#company .gmap iframe {
		height: 2.50rem;
	}
}


/*====================
一覧ページ
====================*/
#gr_garage_wrap .product_list_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#gr_garage_wrap .product_list {
	width: 100%;
	max-width: 9.00rem;
	position: relative;
	z-index: 1;
}

#gr_garage_wrap .product_list .list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.15rem;
}

#gr_garage_wrap .product_list .list .detail {
	width: 33.3%;
	padding: 0 0.15rem 0.70rem;
	box-sizing: border-box;
	position: relative;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_list .list .detail {
		width: 100%;
		padding: 0 0.15rem 0.60rem;
	}
}

/* 製品のタイプ */
@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_list .product_type_text {
		left: 0.20rem;
	}
}

#gr_garage_wrap .product_list .list .detail a {
	display: block;
	position: relative;
	color: #FFF;
	text-decoration: none;
}

/* 製品写真 */
#gr_garage_wrap .product_list .list .detail a .ph_wrap {
	width: 100%;
	height: 1.85rem;
	overflow: hidden;
	position: relative;
	z-index: 1;
	margin-bottom: 0.10rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_list .list .detail a .ph_wrap {
		height: 55vw;
	}
}

#gr_garage_wrap .product_list .list .detail a .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 0;
	transition: all 0.3s;
}

#gr_garage_wrap .product_list .list .detail a:hover .ph_wrap img {
	opacity: 0.7;
	transform: scale(1.04);
}

/* 製品名 */
#gr_garage_wrap .product_list .list .detail a .title {
	font-size: 0.14rem;
	font-weight: 500;
	line-height: 1.40;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .product_list .list .detail a .title {
		font-weight: 600;
	}
}

/* 金額 */
#gr_garage_wrap .product_list .list .detail a .price {
	text-align: right;
	font-size: 0.14rem;
	font-weight: 500;
	padding-top: 0.08rem;
}

/*====================
詳細ページ
====================*/
#gr_garage_wrap #detail {
	position: relative;
	z-index: 1;
}

/* 写真とカテゴリー */
#gr_garage_wrap #detail .detail_info_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* 写真と金額 */
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap {
	width: 100%;
	max-width: 8.80rem;
	position: relative;
}

/* 写真 */
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main {
	width: 100%;
	max-width: 5.90rem;
	padding-bottom: 0.10rem;
	position: relative;
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slide {
	width: 100%;
	height: 3.93rem;
	overflow: hidden;
}

@media screen and (max-width: 599px) {
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slide {
	width: 100%;
	height: 2.00rem;
	overflow: hidden;
}
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main {
		width: 100vw;
		margin: 0 -0.20rem;
	}

	#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slide img {
		padding: 0 0.05rem;
		box-sizing: border-box;
	}

	#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slick-slide {
		opacity: 1;
		transition: all 0.3s;
	}

	#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slick-current {
		opacity: 1;
	}
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main img {
	width: 100%;
	display: block;
}

/* サムネイル全体 */
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .thumb_wrap {
	position: relative;
	left: -0.05rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .thumb_wrap {
		display: none;
	}
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .thumb_wrap .slick-slide {
	opacity: 0.7;
	padding: 0 0.05rem;
	max-width: 1.40rem !important;
	max-height: 0.94rem;
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .thumb_wrap .slick-slide .slide {
	max-width: 1.40rem !important;
	height: 0.94rem;
	overflow: hidden;
	box-sizing: border-box;
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .thumb_wrap .slick-slide .thumb {
	height: 0.94rem;
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .thumb_wrap .slick-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* アクティブなサムネイル */
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .thumb_wrap .slick-current {
	opacity: 1;
}

/* 選択されているサムネイル */
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .thumb_wrap .slick-current .slide,
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .thumb_wrap .slick-current .thumb {
	border: 1px solid #dc0017;
	box-sizing: border-box;
}

/* 送り矢印（右）*/
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .slick-next {
	text-indent: -9999px;
	width: 0.14rem;
	height: 0.24rem;
	background-image: url(../img/gr_garage/gr_garage_next_icon.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	right: -0.20rem;
}

/* 送り矢印（左）*/
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .slick-prev {
	text-indent: -9999px;
	width: 0.14rem;
	height: 0.24rem;
	background-image: url(../img/gr_garage/gr_garage_back_icon.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	left: -0.20rem;
}

#gr_garage_wrap #detail .detail_info_wrap .slick-arrow.slick-disabled {
	display: none !important;
}

/* メイン写真側の送り矢印調整 */
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slick-next {
	right: -0.25rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slick-next {
		right: 0.15rem;
	}
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slick-prev {
	left: -0.25rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slick-prev {
		left: 0.15rem;
		z-index: 10;
	}
}

/* ドットありの場合 */
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slick-dots li {
	width: 0.10rem;
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slick-dots li button::before {
	color: #dc0017;
	opacity: 0.5;
	font-size: 0.08rem;
}

/* アクティブなドット */
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .ph_main .slick-dots li.slick-active button::before {
	color: #dc0017;
	opacity: 1;
}

/* 金額 */
#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .detail_price {
	position: absolute;
	top: 0;
	right: 0;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .detail_price {
		position: relative;
		top: auto;
		right: auto;
		padding: 0.10rem 0 0.40rem;
	}
}

#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .detail_price .text {
	font-size: 0.30rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #detail .detail_info_wrap .detail_visual_wrap .detail_price .text {
		font-size: 0.24rem;
	}
}

/* フリーテキスト */
#gr_garage_wrap #detail .detail_textbox {
	font-size: 0.14rem;
	line-height: 1.5;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #detail .detail_textbox {
		letter-spacing: 0.05em;
		padding-bottom: 0.40rem;
	}
}

#gr_garage_wrap #detail .detail_textbox p {
	margin-bottom: 0.14rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #detail .detail_textbox {
		letter-spacing: 0.05em;
		padding-bottom: 0.40rem;
	}
}

/* 戻るボタン */
#gr_garage_wrap #detail .back_btn {
	text-align: center;
	padding: 0.40rem 0;
}

#gr_garage_wrap #detail .back_btn a {
	font-size: 0.16rem;
	color: #FFF;
	text-decoration: none;
}

#gr_garage_wrap #detail .back_btn a:hover {
	opacity: 0.7;
}

#gr_garage_wrap #detail .back_btn a span::before {
	content: "";
	display: inline-block;
	width: 0.14rem;
	height: 0.24rem;
	background-image: url(../img/gr_garage/gr_garage_back_icon.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 0.14rem;
	position: relative;
	left: 0;
	top: 0.06rem;
	transition: all 0.3s;
}

#gr_garage_wrap #detail .back_btn a:hover span::before {
	left: -0.06rem;
}

/* 商品の発注方法のご案内 */
#gr_garage_wrap #detail .delivery_wrap {
	background-color: #484848;
	padding: 0.50rem;
	text-align: center;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap #detail .delivery_wrap {
		padding: 0.30rem 0.20rem;
	}
}

#gr_garage_wrap .delivery_wrap .title {
	font-size: 0.25rem;
	font-weight: 600;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .delivery_wrap .title {
		font-size: 0.18rem;
	}
}

#gr_garage_wrap .delivery_wrap .fax_num {
	font-size: 0.36rem;
	font-weight: 600;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.075em;
	padding: 0.30rem 0;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .delivery_wrap .fax_num {
		font-size: 0.24rem;
	}

	#gr_garage_wrap .delivery_wrap .fax_num a {
		color: #FFF;
		pointer-events: none;
		text-decoration: none;
	}
}

#gr_garage_wrap .delivery_wrap .text {
	font-size: 0.16rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .delivery_wrap .text {
		font-size: 0.14rem;
		line-height: 1.45;
	}
}

#gr_garage_wrap .delivery_wrap .btn_wrap {
	padding-top: 0.30rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .delivery_wrap .btn_wrap {
		padding-top: 0.10rem;
	}
}

#gr_garage_wrap .delivery_wrap .btn_wrap .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .delivery_wrap .btn_wrap .list {
		display: block;
		text-align: left;
	}
}

#gr_garage_wrap .delivery_wrap .btn_wrap .list .btn {
	padding: 0 0.30rem;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .delivery_wrap .btn_wrap .list .btn {
		padding: 0.10rem;
	}
}

#gr_garage_wrap .delivery_wrap .btn_wrap .list .btn a {
	color: #FFF;
	font-size: 0.18rem;
	font-weight: 600;
	text-decoration: none;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .delivery_wrap .btn_wrap .list .btn a {
		font-size: 0.15rem;
	}
}

#gr_garage_wrap .delivery_wrap .btn_wrap .list .btn a:hover {
	opacity: 0.7;
}

#gr_garage_wrap .delivery_wrap .btn_wrap .list .btn a span::after {
	content: "";
	display: inline-block;
	width: 0.30rem;
	height: 0.30rem;
	background-image: url(../img/gr_garage/gr_garage_arrow.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 0.08rem;
	position: relative;
	top: 0.07rem;
	right: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	#gr_garage_wrap .delivery_wrap .btn_wrap .list .btn a span::after {
		content: none;
	}

	#gr_garage_wrap .delivery_wrap .btn_wrap .list .btn a span::before {
		content: "";
		display: inline-block;
		width: 0.20rem;
		height: 0.20rem;
		background-image: url(../img/gr_garage/gr_garage_arrow.svg);
		background-position: right center;
		background-repeat: no-repeat;
		background-size: contain;
		margin-right: 0.08rem;
		position: relative;
		top: 0.04rem;
		right: 0;
		transition: all 0.3s;
	}
}

#gr_garage_wrap .delivery_wrap .btn_wrap .list .btn a:hover span::after {
	right: -0.06rem;
}
