@charset "utf-8";

/* CSS Document */
body {
	padding: 0;
	margin: 0;
}

* {
	box-sizing: border-box;
}

.pc_view {
	display: block;
}

.sp_view {
	display: none;
}

.fc_red {
	color: #f00;
}

.fc_red_b {
	color: #f00;
	font-weight: bold;
}

/**詳細ページ用**/
.main {
	width: 100%;
	padding: 150px 0px 80px 0px;
	position: relative;
	background-color: #f2f2f2;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
	max-width: 1440px;
	min-width: 320px;
}

img {
	max-width: initial;
	height: initial;
}

.item_box_base {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1500px;
	padding: 30px 10px;
	position: relative;
	background: #fff;
}

.item_box_L {
	width: 46%;
	position: relative;
}

.item_box_C {
	width: 36%;
	padding: 0 20px;
	position: relative;
}

.item_box_R {
	width: 18%;
	position: relative;
}

.item_box_L .slider img {
	width: 100% !important;
	border-radius: 3px;
}

.item_box_L .thumbnail img {
	width: 100% !important;
	border-radius: 3px;
}

/*product画像スライド*/
.slider {
	margin: 0;
	padding: 0;
}

.slider .slick-track {
	display: flex;
}

.slider .slick-slide {
	height: auto;
	display: flex;
	align-items: center;
	margin: 0;
	height: 100%;
	aspect-ratio: 1 / 1;
}

.slider .slick-slide img {
	display: block;
	height: 100%;
	object-fit: contain;
}

.thumbnail .slick-track {
	transform: unset !important;
}

.thumbnail-img {
	opacity: 0.3;
	transition: opacity .3s linear;
}

.thumbnail .slick-current {
	opacity: 1;
}

.thumbnail .slick-track {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100% !important;
}

.thumbnail .slick-slide {
	background: #fff;
	margin: 0;
	position: relative;
	width: calc(100% / 6) !important;
}

.thumbnail .slick-slide .s_t_inner {
	position: relative;
	padding: 5px;
}

.thumbnail .slick-current .s_t_inner:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: solid 3px #2589d0;
	box-sizing: border-box;
	border-radius: 3px;
}

.thumbnail .slick-track {
	transform: unset !important;
}

/*product画像ズーム*/
.m-lens-container {
	display: inline-block;
	position: relative;
	height: 100%;
	width: 100%;
}

.m-lens {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	background: #15D5F5;
	opacity: 0.3;
	height: 172px;
	width: 172px;
}

.zoom-area {
	display: none;
	position: absolute;
	top: 0;
	left: 103%;
	width: 540px;
	height: 540px;
	overflow: hidden;
	z-index: 999;
	background: rgba(0, 0, 0, 0.5);
}

.zoom-area.active {
	display: block;
}

.zoom-area .zoom_img {
	width: 1040px;
	margin-top: 0px;
	margin-left: 0px;
}

.m-lens {
	display: none;
}

.m-lens-container:hover .m-lens {
	display: block;
}

/*product*/
.product-title {
	font-size: 24px;
	line-height: 32px;
	font-weight: normal;
	margin-top: 0;
}

.product-sepalate {
	width: 100%;
	height: 1px;
	background: #ccc;
	margin: 20px 0;
}

.product-price {
	margin: 5px 0;
}

.product-price_01 {
	font-size: 13px;
}

.product-price_02 {
	font-size: 28px;
}

.product-price_03 {
	font-size: 14px;
	font-weight: bold;
	background: #eee;
	padding: 3px 5px;
	margin: 0 0 0 3px;
	border-radius: 3px;
}

/*product選択ボタン*/
.product-radio {
	margin: 0px 0 20px 0;
}

.radio-group {
	display: flex;
	flex-wrap: wrap;
}

.radio-area {
	width: calc(25% - 10px);
	margin: 5px 5px 5px 5px;
	display: flex;
	flex-wrap: wrap;
}

.radio-area input[type=radio] {
	appearance: none;
	display: none;
}

.radio-plan {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
}

.radio-area label {
	cursor: pointer;
	border: 2px solid #ccc;
	border-radius: 5px;
	transition: .5s;
}

.radio-title {
	width: 100%;
	color: #333;
	background-color: #f6f6f6;
	font-weight: normal;
	font-size: 14px;
	font-weight: bold;
	padding: 10px 7px 7px 7px;
	margin: 0;
	border-bottom: solid 1px #ccc;
	line-height: 1;
	border-radius: 5px 5px 0 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.radio-info {
	width: 100%;
	color: #333;
	font-size: 12px;
	line-height: 1.3;
	padding: 7px 7px 7px 7px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.radio-price {
	width: 100%;
	font-size: 13px;
	font-weight: bold;
	padding: 7px 7px 7px 7px;
	text-align: right;
	margin-top: auto;
}

.radio-price span {
	font-size: 10px;
}

.radio-area input[type=radio]:checked+label {
	border: 2px solid #f00;
	border-radius: 5px;
}

.radio-area input[type=radio]:checked+label .radio-title {
	background-color: #FFD2D2;
}

.radio-group-tit {
	font-size: 14px;
	padding: 3px 0 3px 7px;
}

/*productアコーディオン*/
/* .product-accordion {} */

.product-ac-toggle {
	display: none;
}

.product-ac-option {
	position: relative;
	margin-bottom: 1em;
}

.product-ac-title,
.product-ac-content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}

.product-ac-title {
	display: flex;
	color: #333;
	font-weight: bold;
}

.product-ac-content {
	max-height: 0;
	overflow: hidden;
}

.product-ac-content p {
	margin: 0;
	padding: 0.5em 1em 1em;
	font-size: 0.9em;
	line-height: 1.5;
}

.product-ac-toggle:checked+.product-ac-title+.product-ac-content {
	max-height: 100%;
	transition: all 0.8s;
	padding-top: 10px;
}

.product-ac-toggle:checked+.product-ac-title::before {
	transform: rotate(90deg) !important;
}

.product-ac-title h2 {
	font-size: 15px;
	line-height: 20px;
	margin: 0;
}

#product-desc-title h2 {
	font-size: 16px;
	line-height: 20px;
	margin: 0 0 15px 0;
}

.pd-txt {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
	padding: 0 0 0 20px;
	position: relative;
}

.pd-txt:before {
	content: "・";
	width: 1rem;
	position: absolute;
	left: 0px;
}

.arrow-round {
	position: relative;
	display: inline-block;
	padding: 10px;
	top: 5px;
	margin-left: auto;
}

.arrow-round::before {
	content: '';
	width: 8px;
	height: 8px;
	border-top: solid 2px #ccc;
	border-right: solid 2px #ccc;
	position: absolute;
	left: 5px;
	top: 5px;
	transition: all 0.3s;
}

.arrow-round.arrow-bottom::before {
	transform: rotate(135deg);
	top: -2px;
}

.product-ac-toggle:checked+.product-ac-title .arrow-round.arrow-bottom::before {
	transform: rotate(-45deg);
	top: 2px;
}

/*productタブ*/
.product-tab_item {
	width: calc(100%/2);
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	text-align: center;
	color: #565656;
	display: block;
	float: left;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
}

.product-tab_item:hover {
	opacity: 0.75;
}

input[name="tab_item"] {
	display: none;
}

.product-tab_content {
	display: none;
	padding: 20px 20px;
	clear: both;
	overflow: hidden;
	border: solid 1px #ccc;
	min-height: 600px;
	position: relative;
}

#tab_01:checked~#tab_01_content,
#tab_02:checked~#tab_02_content {
	display: block;
}

#tab_01:checked~.tab_01_label,
#tab_02:checked~.tab_02_label {
	border-bottom: 3px solid #2589d0;
	color: #2589d0;
}

#tab_01_content,
#tab_02_content {
	padding: 20px 20px 60px 20px;
}

.tab_txt_plan_01 {
	font-size: 13px;
	margin: 10px 0 15px 0;
	font-weight: bold;
}

.tab_txt_plan_02 {
	font-size: 13px;
	margin-bottom: 15px;
	line-height: 1.3;
}

.tab_txt_detail {
	font-size: 13px;
	margin-bottom: 15px;
}

.tab_txt_add {
	font-size: 13px;
	margin-bottom: 15px;
}

.tab_txt_quantity {
	font-size: 14px;
	margin: 25px 0;
}

.ttq_tit {
	font-weight: bold;
}

.cart_add_btn_a {
	text-decoration: none;
}

.cart_add_btn {
	font-size: 14px;
	font-weight: bold;
	background: #f00;
	color: #fff;
	text-align: center;
	padding: 10px 10px;
	line-height: 1;
	border-radius: 20px;
}

.tab_txt_gift {
	position: absolute;
	width: 100%;
	bottom: 20px;
}


@media screen and (max-width: 1020px) {
	.pc_view {
		display: none;
	}

	.sp_view {
		display: block;
	}

	.item_box_base {
		padding: 30px 10px;
	}

	.item_box_L {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.item_box_C {
		width: 100%;
		margin: 0 0 20px 0;
		padding: 0;
	}

	.item_box_R {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.sp_view .product-price {
		text-align: right;
	}

	.zoom-area {
		display: none !important;
	}

	.m-lens {
		display: none !important;
	}

	.product-title {
		font-size: 18px;
		line-height: 26px;
	}

	.product-price_02 {
		font-size: 23px;
	}
}

@media screen and (max-width: 560px) {
	.radio-area {
		width: calc(50% - 10px);
	}

	.item_box_base {
		padding: 70px 10px 30px 10px;
	}
}

/**タブ内　数量**/
.product-tabs-radio-01 {
	border: none;
	padding: 0;
	margin: 5px 0;
}

.product-tabs-radio-01 label {
	display: flex;
	align-items: center;
	gap: 0 .5em;
	position: relative;
	margin-bottom: 0.3em;
	padding: 0.7em 0.7em;
	border-radius: 3px;
	background-color: #2589d026;
	cursor: pointer;
}

.product-tabs-radio-01 label:has(:checked) {
	background-color: #2589d0;
	color: #fff;
	font-weight: bold;
}

.product-tabs-radio-01 label::before,
.product-tabs-radio-01 label:has(:checked)::after {
	border-radius: 50%;
	content: '';
}

.product-tabs-radio-01 label::before {
	width: 14px;
	height: 14px;
	background-color: #fff;
	margin-right: 5px;
}

.product-tabs-radio-01 label:has(:checked)::after {
	position: absolute;
	top: 50%;
	left: calc(7px + .7em);
	transform: translate(-50%, -50%);
	width: 7px;
	height: 7px;
	background-color: #2589d0;
}

.product-tabs-radio-01 input {
	display: none;
}

.ptr_txt_01 {
	margin: 0 5px 0 auto;
}

/**top**/
.l__content {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	max-width: 1440px;
	min-width: 320px;
	background: rgba(255, 255, 255, 0.8);
}

.main {
	width: 100%;
	padding-top: 74px;
	position: relative;
	background-color: #f2f2f2;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

@font-face {
	font-family: Norms Pro Bold;
	src: local("Staples Norms Pro Bold"), url(https://agereru.com/services/printing/static-pages/fonts/NormsPro/NormsPro-Bold.woff) format("woff"), url(https://agereru.com/services/printing/static-pages/fonts/NormsPro/NormsPro-Bold.ttf) format("truetype");
}

@font-face {
	font-family: Norms Pro Bold;
	src: local("Staples Norms Pro Bold"), url(https://agereru.com/services/printing/static-pages/fonts/NormsPro/NormsPro-Bold.woff) format("woff"), url(https://agereru.com/services/printing/static-pages/fonts/NormsPro/NormsPro-Bold.ttf) format("truetype");
}

#main-content {
	padding-top: 36px;
}

@media screen and (max-width: 768px) {
	.header__main .main__search {
		width: 25% !important;
		order: 2;
	}

	.nav-main__links {
		order: 3;
	}
}

.age_page_v_header-content {
	position: relative;
}

.age_page_v_header-picture {
	width: 100%;
	height: 470px;
	display: block;
}

.age_page_v_header-picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.age_page_v_header-text {
	position: absolute;
	left: 0;
	top: calc(50% + 50px);
	transform: translateY(-50%);
	padding: 0 60px;
	width: 50%;
}

.age_page_v_headline-hero {
	font-weight: 100;
	line-height: 1.1;
	font-family: "NormsProBold", "Norms Pro", arial, sans-serif;
	font-size: 60px;
	letter-spacing: -1.5px;
	color: #c00;
	text-align: left;
	text-transform: none;
	margin-bottom: 10px;
}

.age_page_v_headline-promotion {
	font-family: "NormsProRegular", "Norms Pro", arial, sans-serif;
	color: #444;
	font-size: 18px;
	text-align: left;
	text-transform: capitalize;
	line-height: 1.3;
}

.age_page_v_more_btn {
	margin: 10px 0;
	display: block;
}

.age_page_v_header-content picture:before {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(65deg, #f2f2f2 9%, rgba(242, 242, 242, 0.5) 33%, rgba(255, 255, 255, 0.001) 53%);
}

@media screen and (max-width: 1020px) {
	.age_page_v_headline-hero {
		font-size: 48px;
	}
}

@media screen and (max-width: 768px) {
	#main-content {
		padding-top: 100px;
	}

	.age_page_v_header-picture {
		height: 380px;
	}

	.age_page_v_header-text {
		width: 80%;
		padding: 0 20px;
	}

	.age_page_v_headline-hero {
		font-size: 35px;
		text-shadow: 1px 1px 5px #fff;
	}

	.age_page_v_headline-promotion {
		font-size: 14px;
		color: #000;
		text-shadow: 1px 1px 3px #fff;
	}
}

/**パンくず**/
.breadcrumbs {
	display: block;
	padding: 10px 20px;
	padding-top: 16px;
	padding-bottom: 0;
}

.breadcrumbs ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
}

.breadcrumbs ul li {
	display: inline;
	list-style-type: none;
}

.breadcrumbs ul li::before {
	content: url(https://splus-assets.pnimedia.com/dynamic/Content/images/RetailerSpecific/SPLUS/breadcrumb-arrow/);
	width: 9px;
	height: auto;
	margin: 0 11px;
	zoom: 0;
}

.breadcrumbs ul li:first-of-type {
	margin: 0;
}

.breadcrumbs ul li:first-child a {
	padding: 0;
}

.breadcrumbs ul li:first-child::before {
	content: "";
}

.breadcrumbs ul li a {
	font-family: "NormsProRegular", "Norms Pro", arial, sans-serif;
	font-size: 14px;
	color: #444444;
	text-decoration: none;
	font-weight: 600;
}

@media screen and (max-width: 576px) {
	.breadcrumbs {
		display: block;
		padding: 10px 15px;
		font-size: 12px;
	}

	.breadcrumbs ul li:first-child::before {
		display: none;
	}

	.breadcrumbs ul li a {
		font-size: 12px;
	}
}

#breadcrumbs-category {
	background: #fff;
}

/**h2**/
.agereru_page_h2-content {
	background: #fff;
	padding: 30px 45px;
}

.agereru_page_h2-title h2 {
	font-family: "NormsProBold", "Norms Pro", arial, sans-serif;
	color: #000;
	font-size: 30px;
	line-height: 35px;
	text-align: left;
	text-transform: capitalize;
}

.agereru_page_h2-title h2:after {
	content: "";
	display: block;
	margin: 10px 0 20px;
	height: 3px;
	width: 16px;
	background: #c00;
}

.agereru_page_h2-contenttxt {
	font-family: Norms Pro Regular, arial, sans-serif;
	font-size: 1.125rem;
	color: #444;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.agereru_page_h2-content {
		padding: 30px 15px;
	}

	.agereru_page_h2-title h2 {
		font-size: 26px;
		line-height: 30px;
	}

	.agereru_page_h2-contenttxt {
		font-size: 14px;
	}
}

@media (max-width: 580px) {
	.agereru_page_h2-title h2 {
		font-size: 22px;
	}
}

/**MarketingFeaturesTile**/
.sepalate_01 {
	display: block;
	content: "";
	border-top: 2px solid #e7e7e7;
	width: 100%;
}

/* .MarketingFeaturesTile_container {} */

.MarketingFeaturesTile_section {
	display: flex;
	flex-wrap: wrap;
	padding: 50px 45px 40px 45px;
	background: #fff;
}

.MarketingFeaturesTile_content {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

/* .MarketingFeaturesTile_contentTitle {} */

.MarketingFeaturesTile_contentCaption {
	font-size: 18px;
	color: #444;
	line-height: 1.5;
}

.MarketingFeaturesTile_contentTitle h3 {
	font-family: Norms Pro Bold, arial, sans-serif;
	font-size: 1.5rem;
	color: #000;
	line-height: normal;
	margin-bottom: 15px;
	font-weight: normal;
	font-size: 2.5rem;
	line-height: 1;
}

.MarketingFeaturesTile_imgContainer {
	width: 50%;
	display: flex;
	align-items: center;
}

.MarketingFeaturesTile_imgContainer img {
	width: 100%;
	border-radius: 10px;
}

.content_img_L .MarketingFeaturesTile_content {
	order: 2;
	padding-left: 50px;
}

.content_img_L .MarketingFeaturesTile_imgContainer {
	order: 1;
}

.content_img_R .MarketingFeaturesTile_content {
	order: 1;
	padding-right: 50px;
}

.content_img_R .MarketingFeaturesTile_imgContainer {
	order: 2;
}

/**btn red**/
.MarketingFeaturesTile_contentButtons {
	margin-bottom: 20px;
	width: 100%;
}

.MarketingFeaturesTile_button {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: #c00;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font-family: Norms Pro Bold, arial, sans-serif;
	font-size: 1rem;
	height: 42px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	margin: 15px 10px 0px 0px;
	padding: 0 20px;
}

.MarketingFeaturesTile_button:hover {
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	box-shadow: inset 0 -4px 0 0 #a30000;
	transform: translateY(-1px);
}

.MarketingFeaturesTile_button:active {
	color: #c00;
	background-color: #a30000;
}

.MarketingFeaturesTile_button:active {
	text-decoration: underline;
}

@media screen and (max-width: 1024px) {
	.MarketingFeaturesTile_contentTitle h3 {
		font-size: 34px;
		line-height: 1.3;
	}
}

@media screen and (max-width: 768px) {
	.MarketingFeaturesTile_section {
		padding: 40px 15px 30px 15px;
	}

	.MarketingFeaturesTile_content {
		width: 100%;
	}

	.MarketingFeaturesTile_imgContainer {
		width: 100%;
	}

	.MarketingFeaturesTile_contentTitle h3 {
		font-size: 24px;
		line-height: 1.3;
	}

	.MarketingFeaturesTile_contentCaption {
		font-size: 14px;
	}

	.content_img_L .MarketingFeaturesTile_content {
		order: 1;
		padding: 0;
	}

	.content_img_L .MarketingFeaturesTile_imgContainer {
		order: 2;
	}

	.content_img_R .MarketingFeaturesTile_content {
		order: 1;
		padding: 0;
	}

	.content_img_R .MarketingFeaturesTile_imgContainer {
		order: 2;
	}

	.MarketingFeaturesTile_contentButtons {
		width: 100%;
	}

	.MarketingFeaturesTile_button {
		width: 100%;
	}
}

/****/
.product_card_items_base {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 10px 15px 0px 15px;
	box-sizing: border-box;
}

.product_card_items_base li {
	display: flex;
	flex-wrap: wrap;
	width: 25%;
	box-sizing: border-box;
	padding: 8px;
	margin-bottom: 18px;
}

.product_card_items_base::before {
	content: "";
	display: block;
	width: 25%;
	order: 1;
}

.product_card_items_base::after {
	content: "";
	display: block;
	width: 25%;
}

.image-wrapper {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease-out, transform 0.3s ease-out, opacity 0.2s ease-out;
	transform: translateZ(0);
}

.img_box {
	width: 100%;
	aspect-ratio: 119 / 109;
	border-radius: 6px 6px 0 0;
	overflow: hidden;
}

.product_card_items_base li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

li.card.small-desc figure {
	height: auto;
	width: 100%;
}

li.card figure {
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}

.product_card_items_base p {
	margin: 0;
}

.product_card_items_base .card .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product_card_items_base .card .grid-100 {
	width: 100%;
}

li.card figure figcaption {
	width: 100%;
	height: auto !important;
	position: relative;
	padding: 15px;
	box-sizing: border-box;
}

li.card figure figcaption h2 {
	color: #c00;
	font-weight: bold;
	font-size: 15px;
	line-height: 25px;
	padding-bottom: 8px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

li.card figure figcaption .product-pricing {
	font-family: "NormsProMedium", "Norms Pro", arial, sans-serif;
	color: #444;
	font-size: 15px;
	line-height: initial;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: initial;
}

li.card.small-desc figcaption p.product-tile-copy {
	font-size: 13px;
	line-height: 1.5;
}

li.card figure a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

li.card figure:hover {
	opacity: 1 !important;
	box-shadow: rgba(45, 45, 45, 0.05) 0 2px 2px, rgba(49, 49, 49, 0.05) 0 4px 4px, rgba(42, 42, 42, 0.05) 0 8px 8px, rgba(32, 32, 32, 0.05) 0 16px 16px, rgba(49, 49, 49, 0.05) 0 32px 32px, rgba(35, 35, 35, 0.05) 0 64px 64px;
	transform: translate(0, -4px);
	transition-delay: 0.1s;
}

@media (max-width: 1023px) {
	.product_card_items_base li {
		width: 33.333333%;
		padding: 5px;
		margin-bottom: 5px;
	}

	.product_card_items_base::after {
		content: "";
		display: block;
		width: 33.333333%;
	}

	.product_card_items_base .product-pricing {
		margin-bottom: 0px;
	}
}

@media (max-width: 768px) {
	.product_card_items_base {
		padding: 10px 10px 0px 10px;
	}

	.product_card_items_base li {
		width: 50%;
	}

	li.card figure figcaption .product-pricing {
		margin-bottom: 0px;
		font-size: 12px;
	}

	.product_card_items_base .card .row {
		display: block;
	}

	.product-tile-copy {
		display: none;
	}

	li.card figure figcaption h2 {
		font-size: 13px;
		padding-bottom: 0;
		line-height: 18px;
	}
}

/**SNSサイドフロート**/
.fixed-tab {
	position: absolute;
	right: 0px;
	top: 50%;
	border: none;
	z-index: 99999990 !important;
	position: fixed !important;
	line-height: 1px !important;
	margin-top: 70px;
	display: flex;
	flex-direction: column;
}

.fixed-tab-btn {
	padding: 0px;
	margin: 0;
	border: none;
	cursor: pointer !important;
	transition: all 0.3s;
	background: transparent !important;
}

.fixed-tab-btn img {
	border: 0;
}

.fixed-tab-btn:first-child:hover {
	transform: translateY(-3px);
}

.fixed-tab button {
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	font-family: "NormsProBold", "Norms Pro", arial, sans-serif;
	color: #fff;
	font-size: 16px;
	transform: translateY(0);
	transition: all 0.15s ease;
}

@media (min-width: 1025px) {
	.fixed-tab button:hover {
		transform: translateY(-3px);
	}
}

/****/