@charset "UTF-8";

:root {
	--font-gothic: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,
		"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--font--nimbus: "nimbus-sans", sans-serif;
	--base-color: #333333;
	--gradation: linear-gradient(90deg, #ff7039 0%, #ff3041 100%);
	--color-primary: #ff3041;
}

/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
	word-wrap: break-word;
}
input,
textarea {
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
/* reset */

* {
	font-family: var(--font-gothic);
}

html {
	font-size: 10px;
}

body {
	font-family: var(--font-gothic);
	color: var(--base-color);
	&.main-body {
		padding-top: 90px;
		@media only screen and (max-width: 1199px) {
			padding-top: 70px;
		}
		@media only screen and (min-width: 768px) {
			position: relative;
			padding-bottom: 62px;
		}
	}
	&:not(.main-body) {
		margin: 0 !important;
	}
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	// font-size: 16px;
	font-family: var(--font-gothic);
	line-height: 1.6;
}

a {
	img {
		opacity: 1;
		transition: opacity 0.4s;
	}
	&:hover {
		img {
			opacity: 0.8;
		}
	}
	&.opacity {
		opacity: 1;
		transition: opacity 0.4s;
		&:hover {
			opacity: 0.8;
		}
	}
}

.base {
	width: 100%;
	max-width: 1210px;
	padding: 0 15px;
	margin: 0 auto;
}

.c-search {
	display: block !important;
	margin-bottom: 20px;
	width: 100%;
	input,
	button {
		border: none;
		appearance: none;
		outline: none;
	}
	form {
		position: relative;
		width: 100%;
		display: flex;
		box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.15);
		border-radius: 5px;
		overflow: hidden;
		&:before {
			content: "";
			background: url(ico_search.svg) no-repeat left top / 100%;
			width: 19px;
			height: 20px;
			position: absolute;
			left: 13px;
			top: 50%;
			transform: translateY(-50%);
		}
		input {
			font-size: 16px;
			width: calc(100% - 92px);
			height: 47px;
			padding-left: 47px;
			background: #fff;
			border-radius: 0;
		}
		button {
			font-size: 12px;
			color: #fff;
			font-weight: 700;
			width: 92px;
			background: #1a1a1a;
		}
		::placeholder {
			font-size: 12px;
			color: #b3b3b3;
			font-weight: 700;
		}
	}
}

.c-ttl {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	margin: 95px 0 70px;
	@media only screen and (max-width: 767px) {
		font-size: 28px;
		margin: 55px 0 30px;
	}
	strong {
		font-size: 14px;
		font-family: var(--font--nimbus);
		font-weight: 700 !important;
		letter-spacing: 0.06em;
		display: block;
		margin-bottom: 10px;
		@media only screen and (max-width: 767px) {
			font-size: 12px;
			margin-bottom: 5px;
		}
		span {
			background: var(--gradation);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
		}
	}
}

.c-btn {
	max-width: 373px;
	width: 100%;
	height: 50px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradation);
	border-radius: 5px;
	border: none;
	border-radius: 0;
	appearance: none;
	cursor: pointer;
	position: relative;
	text-align: center;
	&:after {
		content: "";
		border: solid #fff;
		border-width: 0 1px 1px 0;
		padding: 3px;
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%) rotate(-45deg);
	}
	span {
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		position: relative;
		padding-right: 15px;
		line-height: 1.2;
		// &:after {
		// 	content: "";
		// 	border: solid #fff;
		// 	border-width: 0 1px 1px 0;
		// 	padding: 3px;
		// 	position: absolute;
		// 	right: 0;
		// 	top: 3px;
		// 	transform: rotate(-45deg);
		// }
	}
	strong {
		font-size: 13px;
		color: #000;
		line-height: 1;
		letter-spacing: 0.1em;
		padding: 3px 13px 0;
		font-feature-settings: "palt";
		display: flex;
		align-items: center;
		justify-content: center;
		height: 30px;
		max-width: 161px;
		margin: 0 auto;
		border: 2px solid #fff;
		background: #f9e258;
		border-radius: 9999px;
		position: absolute;
		left: 0;
		top: -22px;
		right: 0;
	}
}

.floating {
	width: 62px;
	position: fixed;
	right: 0;
	top: 110px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	z-index: 99;
	border-radius: 5px 0 0 5px;
	background: #fff;
	padding: 30px 0;
	text-align: center;
	@media only screen and (max-width: 767px) {
		width: 55px;
		top: auto;
		bottom: 50px;
		padding: 25px 0;
	}
	a {
		margin-bottom: 18px;
		display: block;
		@media only screen and (max-width: 767px) {
			margin-bottom: 15px;
		}
		&:last-child {
			margin-bottom: 0;
		}
		img {
			display: block;
			margin: 0 auto 3px;
			&.bookmark {
				width: 19px;
				@media only screen and (max-width: 767px) {
					width: 15px;
				}
			}
			&.history {
				width: 26px;
				@media only screen and (max-width: 767px) {
					width: 21px;
				}
			}
		}
		span {
			font-size: 10px;
			color: #000;
			font-weight: 700;
			transform: scale(0.9);
			letter-spacing: -0.05em;
			line-height: 1;
			display: block;
			@media only screen and (max-width: 767px) {
				font-size: 8px;
				transform: scale(1);
			}
		}
	}
}

.header {
	background: #fff;
	height: 90px;
	width: 100%;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	font-family: var(--font-gothic);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	transition: all 0.4s;
	display: flex;
	a {
		color: var(--base-color);
	}
	.header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 32px;
		width: 100%;
		@media only screen and (max-width: 1449px) and (min-width: 1200px) {
			padding: 0 15px;
		}
	}
	.header__logo {
		width: 100%;
		max-width: 150px;
		@media only screen and (max-width: 1449px) and (min-width: 1200px) {
			max-width: 130px;
		}
		img {
			display: block;
		}
	}
	.header__gnav {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: calc(100% - 82px);
	}
	.header__navi {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin-right: 27px;
		li {
			margin-right: 38px;
			position: relative;
			@media only screen and (max-width: 1449px) and (min-width: 1200px) {
				margin-right: 30px;
			}
			&::after {
				content: "";
				width: 1px;
				height: 25px;
				background: var(--base-color);
				position: absolute;
				right: -20px;
				top: 50%;
				transform: translateY(-50%);
				@media only screen and (max-width: 1449px) and (min-width: 1200px) {
					height: 17px;
					right: -15px;
				}
			}
			@media only screen and (min-width: 1200px) {
				&.no {
					margin-right: 0;
					&:after {
						display: none;
					}
				}
			}
			a {
				font-size: 14px;
				font-weight: 700;
				@media only screen and (max-width: 1449px) and (min-width: 1200px) {
					font-size: 12px;
				}
			}
		}
	}
	.header__btn {
		display: flex;
		gap: 0 8px;
		a {
			display: flex;
			align-items: center;
			height: 33px;
			border: 1px solid var(--base-color);
			border-radius: 4px;
			padding: 2px 16px 0;
			@media only screen and (max-width: 1449px) and (min-width: 1200px) {
				padding: 2px 10px 0;
			}
			span {
				font-size: 14px;
				font-weight: 700;
				position: relative;
				@media only screen and (max-width: 1449px) and (min-width: 1200px) {
					font-size: 12px;
				}
			}
			&.signup {
				span {
					padding-left: 20px;
					&:before {
						content: "";
						background: url(ico_signup.svg) no-repeat left top / 100%;
						width: 16px;
						height: 14px;
						position: absolute;
						left: 0;
						top: -1px;
					}
				}
			}
			&.signin {
				span {
					padding-left: 18px;
					&:before {
						content: "";
						background: url(ico_signin.svg) no-repeat left top / 100%;
						width: 13px;
						height: 13px;
						position: absolute;
						left: 0;
						top: -1px;
					}
				}
			}
			&.signout {
				span {
					padding-left: 18px;
					&:before {
						content: "";
						background: url(ico_signout.svg) no-repeat left top / 100%;
						width: 13px;
						height: 13px;
						position: absolute;
						left: 0;
						top: -1px;
					}
				}
			}
			&.mypage {
				span {
					padding-left: 18px;
					&:before {
						content: "";
						background: url(ico_mypage.svg) no-repeat left top / 100%;
						width: 15px;
						height: 15px;
						position: absolute;
						left: 0;
						top: -2px;
					}
				}
			}
			&.book {
				color: #fff;
				background: var(--base-color);
				span {
					padding-left: 15px;
					&:before {
						content: "";
						background: url(ico_bookmark_white.svg) no-repeat left top / 100%;
						width: 11px;
						height: 15px;
						position: absolute;
						left: 0;
						top: -1px;
					}
				}
			}
			&.premium {
				color: #fff;
				background: var(--base-color);
				border: none !important;
				span {
					padding-left: 23px;
					&:before {
						content: "";
						background: url(ico_premium_gold.svg) no-repeat left top / 100%;
						width: 18px;
						height: 15px;
						position: absolute;
						left: 0;
						top: -2px;
					}
				}
			}
		}
	}
	@media only screen and (max-width: 1199px) {
		padding: 0;
		height: 70px;
		.header__inner {
			display: block;
			padding: 0 0 0 14px;
		}
		.header__logo {
			max-width: 88px;
		}
		.header__gnav {
			width: 100%;
			height: 100%;
			position: fixed;
			top: 0;
			left: 0;
			overflow-y: scroll;
			display: block;
			opacity: 0;
			visibility: hidden;
			z-index: -9999;
			transition: all 0.4s;
			margin: 0;
			padding: 70px 12px;
			background: #fff;
			&.active {
				opacity: 1;
				visibility: visible;
				z-index: 999999;
			}
		}
		.header__gnav__logo {
			position: absolute;
			top: 24px;
			left: 14px;
			width: 100%;
			max-width: 88px;
			img {
				display: block;
			}
		}
		.header__cat {
			border-top: 1px solid #e6e6e6;
			.header__cat__item {
				border-bottom: 1px solid #e6e6e6;
				.ttl {
					font-size: 13px;
					position: relative;
					padding: 15px 0 15px 10px;
					&:after {
						content: "";
						border: solid var(--base-color);
						border-width: 0 1px 1px 0;
						padding: 3px;
						position: absolute;
						right: 11px;
						top: 18px;
						transform: rotate(45deg);
						transition: all 0.4s;
					}
					&.active {
						&:after {
							top: 21px;
							transform: rotate(-135deg);
						}
					}
					strong {
						font-size: 18px;
						font-family: var(--font--nimbus);
						font-weight: 700;
						letter-spacing: 0.06em;
						display: inline-block;
						margin-right: 8px;
						line-height: 1;
					}
				}
				.in {
					display: none;
				}
				.cat {
					padding: 0 10px 20px;
					display: flex;
					flex-wrap: wrap;
					gap: 5px;
					a {
						font-size: 12px;
						display: flex;
						align-items: center;
						justify-content: center;
						background: #e6e6e6;
						border-radius: 4px;
						width: calc(50% - 2.5px);
						height: 30px;
					}
				}
			}
		}
		.header__navi {
			display: block;
			margin: 28px 0 0;
			li {
				margin: 0 0 25px;
				&:last-child {
					margin-bottom: 0;
				}
				&::after {
					display: none;
				}
				a.book {
					span {
						padding-left: 22px;
						&:before {
							content: "";
							background: url(ico_bookmark_black.svg) no-repeat left top / 100%;
							width: 14px;
							height: 18px;
							position: absolute;
							left: 0;
							top: -2px;
						}
					}
				}
				a.premium {
					span {
						padding-left: 28px;
						&:before {
							content: "";
							background: url(ico_premium_gold.svg) no-repeat left top / 100%;
							width: 21px;
							height: 18px;
							position: absolute;
							left: 0;
							top: -4px;
						}
					}
				}
			}
		}
		.header__btn {
			gap: 0 6px;
			position: absolute;
			right: 60px;
			top: 20px;
			z-index: 9999;
			a {
				height: 30px;
				padding: 2px 7px 0;
				span {
					font-size: 11px;
				}
				&.signup {
					span {
						padding-left: 18px;
						&:before {
							width: 15px;
							height: 12px;
							top: -1px;
						}
					}
				}
				&.signin {
					span {
						padding-left: 16px;
						&:before {
							width: 12px;
							height: 13px;
							top: -1px;
						}
					}
				}
				&.signout {
					span {
						padding-left: 16px;
						&:before {
							width: 12px;
							height: 13px;
							top: -1px;
						}
					}
				}
				&.mypage {
					span {
						padding-left: 16px;
						&:before {
							width: 14px;
							height: 14px;
							top: -2px;
						}
					}
				}
			}
		}
		.nav__toggle {
			width: 60px;
			height: 70px;
			position: fixed;
			top: 0;
			right: 0;
			z-index: 9999999;
			cursor: pointer;
			span {
				display: block;
				background: #000;
				height: 1px;
				width: 20px;
				margin-left: -10px;
				transition: all 0.4s;
				position: absolute;
				left: 50%;
				&:nth-child(1) {
					top: 38%;
				}
				&:nth-child(2) {
					top: 50%;
					transform: translateY(-50%);
				}
				&:nth-child(3) {
					bottom: 38%;
				}
			}
			&.opened {
				span {
					&:nth-child(1) {
						top: 49%;
						transform: rotate(45deg);
					}
					&:nth-child(2) {
						background: none;
					}
					&:nth-child(3) {
						bottom: 49%;
						transform: rotate(-45deg);
					}
				}
			}
		}
	}
}

.post-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 80px;
	@media only screen and (max-width: 1199px) {
		padding: 0 0 30px;
	}
	.sidebar {
		width: 20%;
		@media only screen and (max-width: 1199px) {
			width: 100%;
			order: 2;
		}
		.sidebar__txt {
			font-size: 14px;
			line-height: calc(22 / 14);
			margin-bottom: 37px;
			@media only screen and (max-width: 1199px) {
				margin-bottom: 16px;
			}
		}
		.sidebar__cat {
			margin-bottom: 38px;
			.sidebar__cat__item {
				margin-bottom: 37px;
				&:last-child {
					margin-bottom: 0;
				}
				.ttl {
					font-size: 13px;
					position: relative;
					margin-bottom: 18px;
					padding-left: 16px;
					&:before {
						content: "";
						width: 3px;
						height: 100%;
						background: var(--gradation);
						position: absolute;
						left: 0;
						top: 0;
					}
					strong {
						font-size: 20px;
						font-family: var(--font--nimbus);
						font-weight: 700;
						letter-spacing: 0.06em;
						display: block;
						line-height: 1;
						margin-bottom: 2px;
					}
				}
				.cat {
					border: 1px solid #cccccc;
					border-bottom: none;
					li {
						border-bottom: 1px solid #cccccc;
						a {
							font-size: 14px;
							color: var(--base-color);
							display: flex;
							align-items: center;
							justify-content: center;
							width: 100%;
							height: 44px;
						}
					}
				}
			}
		}
		.c-search {
			form {
				&:before {
					@media only screen and (min-width: 1200px) {
						width: 16px;
						height: 17px;
					}
				}
				input {
					width: calc(100% - 60px);
					height: 44px;
					padding-left: 40px;
				}
				button {
					width: 60px;
					@media only screen and (min-width: 1200px) {
						font-size: 10px;
					}
				}
				::placeholder {
					font-size: 10px;
				}
			}
		}
	}
	.contents {
		width: 75%;
		@media only screen and (max-width: 1199px) {
			width: 100%;
			order: 1;
			margin-bottom: 45px;
		}
		.contents__list {
			display: flex;
			flex-wrap: wrap;
			gap: 20px;
			@media only screen and (max-width: 1199px) {
				gap: 10px;
				justify-content: space-between;
			}
			.item {
				width: calc(33.333% - (40px / 3));
				position: relative;
				@media only screen and (max-width: 1199px) {
					width: calc(50% - (10px / 2));
				}
				@media only screen and (min-width: 1200px) {
					&:hover {
						.overlay {
							opacity: 1;
							visibility: visible;
						}
					}
				}
				.img {
					box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.15);
				}
				.overlay {
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					background: rgba(0, 0, 0, 0.5);
					display: flex;
					align-items: center;
					justify-content: center;
					padding: 0 15px;
					transition: all 0.4s;
					@media only screen and (min-width: 1200px) {
						opacity: 0;
						visibility: hidden;
					}
					@media only screen and (max-width: 1199px) {
						position: relative;
						background: none;
						display: block;
						padding: 0;
						margin-top: 7px;
					}
					.btn {
						flex-wrap: wrap;
						display: flex;
						justify-content: space-between;
						gap: 6px 0;
						width: 100%;
						a:not(.more) {
							font-size: 12px;
							color: #fff;
							font-family: var(--font--nimbus);
							font-weight: 700;
							display: flex;
							align-items: center;
							justify-content: center;
							width: 23%;
							height: 36px;
							background: #1a1a1a;
							border: 1px solid #fff;
							border-radius: 6px;
							box-shadow: 7px 7px 23px rgba(0, 0, 0, 0.2);
							@media only screen and (max-width: 1199px) {
								font-size: 10px;
								width: 24%;
								height: 30px;
							}
						}
						.more {
							font-size: 12px;
							color: var(--base-color);
							font-weight: 700;
							display: flex;
							align-items: center;
							justify-content: center;
							width: 100%;
							height: 36px;
							background: #fff;
							border: 1px solid var(--base-color);
							border-radius: 6px;
							box-shadow: 7px 7px 23px rgba(0, 0, 0, 0.2);
						}
					}
				}
				@media only screen and (max-width: 1199px) {
					.more {
						display: block;
						position: absolute;
						left: 0;
						top: 0;
						width: 100%;
						height: 100%;
					}
				}
			}
		}
	}
}

.ico__king {
	width: 28px;
	position: absolute;
	left: 10px;
	top: 10px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

.breadcrumb {
	padding: 13px 30px;
	border-top: 1px solid #cccccc;
	.breadcrumb__txt {
		font-size: 12px;
		margin-right: 32px;
		position: relative;
		display: inline-block;
		&:after {
			content: "";
			border: solid #b3b3b3;
			border-width: 0 1px 1px 0;
			padding: 3px;
			position: absolute;
			right: -20px;
			top: 2px;
			transform: rotate(-45deg);
		}
		&:last-child {
			margin-right: 0;
			&::after {
				display: none;
			}
		}
		a {
			color: #b3b3b3;
		}
	}
}

.shopify-section-group-footer-group {
	@media only screen and (min-width: 768px) {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
	}
}

.pagenavi {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 8px;
	margin: 40px auto 0;
	.current {
		font-size: 18px;
		color: #fff;
		font-family: var(--font--nimbus);
		width: 36px;
		height: 36px;
		background: var(--color-primary);
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
	}
	a {
		font-size: 18px;
		color: var(--color-primary);
		font-family: var(--font--nimbus);
		width: 36px;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
	}
	span {
		position: relative;
	}
	.prev:after {
		transform: translate(-50%, -50%) rotate(-225deg);
	}
	.next:after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.next:after,
	.prev:after {
		content: "";
		border: solid var(--color-primary);
		border-width: 0 2px 2px 0;
		padding: 4px;
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: -1;
	}
}

.footer {
	font-family: var(--font-gothic);
	background: #1a1a1a;
	a {
		color: #fff;
	}
	.footer__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 13px 30px;
		@media only screen and (max-width: 767px) {
			display: block;
			padding: 40px 30px 28px;
		}
	}
	.footer__block {
		display: flex;
		align-items: center;
		width: calc(100% - 200px);
		@media only screen and (max-width: 767px) {
			display: block;
			width: 100%;
		}
	}
	.footer__logo {
		width: 100%;
		max-width: 57px;
		margin-right: 32px;
		@media only screen and (max-width: 767px) {
			max-width: 88px;
			margin: 0 0 32px;
		}
		img {
			display: block;
		}
	}
	.footer__outer {
		display: flex;
	}
	.footer__navi {
		display: flex;
		flex-wrap: wrap;
		gap: 7px 20px;
		@media only screen and (max-width: 767px) {
			width: 50%;
			display: block;
		}
		li {
			line-height: 1.3;
			@media only screen and (max-width: 767px) {
				margin-bottom: 25px;
				&:last-child {
					margin-bottom: 0;
				}
			}
			a {
				font-size: 11px;
				@media only screen and (max-width: 767px) {
					font-size: 13px;
				}
			}
		}
	}
	.footer__copy {
		font-size: 10px;
		color: #fff;
		@media only screen and (max-width: 767px) {
			margin-top: 35px;
		}
	}
}

/* デフォルトcss打ち消し用 */
.button,
.shopify-challenge__button,
.customer button {
	background: var(--gradation);
	font-weight: bold;
	transition: all 0.4s;
	&:hover {
		opacity: 0.8;
	}
}
.button:after,
.shopify-challenge__button:after,
.customer button:after,
.shopify-payment-button__button--unbranded:after {
	box-shadow: none !important;
}

/* ウィッシュリスト一覧 */
#swym-wishlist-render-container {
	padding: 90px 0 95px;
	@media only screen and (max-width: 767px) {
		padding: 55px 0 60px;
	}
}
.swym-wishlist-container-title-bar,
.swym-wishlist-detail-header,
.swym-wishlist-detail-separator {
	display: none !important;
}
.swym-ui-component .swym-empty-wishlist-container {
	padding: 0 15px !important;
}
.swym-empty-wishlist-title.swym-heading {
	margin-top: 0 !important;
	line-height: 1 !important;
}
.swym-wishlist-grid .swym-variant-title,
.swym-wishlist-grid .swym-product-price,
.swym-wishlist-grid .swym-add-to-cart-btn {
	display: none !important;
}
.swym-ui-component .swym-wishlist-grid .swym-wishlist-image-wrapper {
	height: auto !important;
}
.swym-ui-component .swym-wishlist-grid .swym-wishlist-item .swym-title {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
/* ウィッシュリスト詳細 */
.swym-wishlist-product-detail-text-container .swym-product-price,
.swym-wishlist-product-detail-text-container .swym-action-button-container {
	display: none !important;
}
.swym-ui-component .swym-wishlist-product-detail-content .swym-more-details {
	margin: 0 !important;
}
.swym-more-details-btn {
	color: #fff !important;
	max-width: 373px;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradation);
	border-radius: 5px;
	border: none;
	border-radius: 0;
	appearance: none;
	cursor: pointer;
	position: relative;
	text-align: center;
	&:after {
		content: "";
		border: solid #fff;
		border-width: 0 1px 1px 0;
		padding: 3px;
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%) rotate(-45deg);
	}
	span {
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		position: relative;
		padding-right: 15px;
		line-height: 1.2;
	}
}

.template-search .status {
	font-size: 14px;
	line-height: calc(22 / 14);
}

@media only screen and (min-width: 1200px) {
	.sp-nav {
		display: none !important;
	}
}
@media only screen and (max-width: 1199px) {
	.pc-nav {
		display: none !important;
	}
}

@media only screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
@media only screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}
