@charset "UTF-8";

body {
	--shop-bg: #101010;
	--shop-text: #f0e8de;
	--shop-muted: #aaa39a;
	--shop-gold: #caa366;
	--shop-dark: #131313;
	background: url("../imgs/common/bg.png") repeat;
}

.shop-page,
.shop-page * {
	box-sizing: border-box;
}

.shop-mv {
	position: relative;
	height: 428px;
	color: var(--shop-text);
	overflow: hidden;
}

.shop-mv__title {
	position: absolute;
	top: 173px;
	left: max(48px, calc((100% - 1824px) / 2));
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 1.2;
}

.shop-mv__lead,
.shop-mv__heading {
	margin: 0;
	font: inherit;
	white-space: nowrap;
}

.shop-mv__lead {
	font-size: 26px;
	letter-spacing: -1.3px;
}

.shop-mv__heading {
	font-size: 80px;
	letter-spacing: -4px;
}

.shop-mv__heading-row {
	display: flex;
	align-items: flex-end;
	gap: 24px;
}

.shop-mv__socials {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 16px;
	padding-bottom: 8px;
}

.shop-mv__social-link {
	display: block;
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.shop-mv__social-link--x {
	width: 40px;
	height: 40px;
}

.shop-mv__social-link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.shop-mv__social-link:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

.shop-mv__social-link:focus-visible {
	outline: 2px solid var(--shop-gold);
	outline-offset: 4px;
}

.shop-mv__breadcrumb {
	position: absolute;
	top: 380px;
	left: max(48px, calc((100% - 1824px) / 2));
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
}

.shop-mv__breadcrumb a {
	color: inherit;
}

.shop-mv__breadcrumb-separator {
	width: 8px;
	height: 1px;
	background: currentColor;
}

.shop-mv__decoration {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background: var(--shop-dark) url("../imgs/common/separator.png") center bottom / 1920px 20px repeat-x;
}

.shop-page {
	/* padding-top: 100px; */
	color: var(--shop-text);
}

.shop-visual {
	width: 100%;
	height: min(546px, 46.1149vw);
	margin-top: 10px;
	background: url("../imgs/shop/shop_bg.jpg") center / cover no-repeat;
}

.shop-visual__inner {
	display: flex;
	align-items: flex-end;
	width: min(100%, 1184px);
	height: 100%;
	margin: 0 auto;
}

.shop-visual__logo,
.shop-visual__map,
.shop-visual__tenpo {
	display: block;
	height: auto;
	max-width: none;
}

.shop-visual__logo {
	width: 16.8919%;
	transform: translateY(80px);
}

.shop-visual__map {
	width: 43.4966%;
	margin-left: 1.6892%;
}

.shop-visual__tenpo {
	width: 32.0946%;
	margin-left: auto;
}

.shop-archive {
	padding: 96px 40px 160px;
}

.shop-archive__inner {
	width: min(100%, 1216px);
	margin: 0 auto;
}

.shop-archive__heading {
	margin: 0;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.shop-archive__heading span {
	color: var(--shop-gold);
}

.shop-archive__heading-break {
	display: none;
}

.shop-tabs {
	width: min(100%, 1000px);
	margin: 40px auto 64px;
}

.shop-tabs__list {
	display: grid;
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 15px;
	list-style: none;
}

.shop-tabs__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 17px 12px;
	border: 1px solid #767676;
	color: var(--shop-text);
	background: transparent;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.shop-tabs__link:hover,
.shop-tabs__link:focus-visible,
.shop-tabs__link.is-active {
	border-color: var(--shop-text);
	color: #131313;
	background: var(--shop-text);
}

.shop-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 72px 20px;
}

.shop-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	font-family: "Noto Sans JP", sans-serif;
}

.shop-card[hidden] {
	display: none;
}

.shop-card__image-link,
.shop-card__title a {
	color: inherit;
	text-decoration: none;
}

.shop-card__image {
	width: 100%;
	aspect-ratio: 392 / 280;
	margin: 0;
	overflow: hidden;
	background: #292929;
}

.shop-card__thumbnail {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.shop-card__image-link:hover .shop-card__thumbnail,
.shop-card__image-link:focus-visible .shop-card__thumbnail {
	transform: scale(1.03);
}

.shop-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 18px;
	padding-top: 18px;
}

.shop-card__title {
	margin: 0;
	font-family: "Noto Serif JP", serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.45;
}

.shop-card__info {
	margin: 0;
	width: 100%;
}

.shop-card__info p {
	width: 100%;
	margin: 0;
	color: var(--shop-text);
	font-size: 13px;
	line-height: 1.7;
}

.shop-card__info p + p {
	margin-top: 10px;
}

.shop-card__map {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: auto 0 0;
	padding: 12px 16px;
	border: 1px solid #767676;
	color: var(--shop-text);
	font-family: "Noto Serif JP", serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.shop-card__map:hover,
.shop-card__map:focus-visible {
	color: #131313;
	background: var(--shop-text);
}

.shop-archive__empty {
	margin: 80px 0 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	text-align: center;
}

@media (min-width: 768px) and (max-width: 1100px) {
	.shop-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.shop-page {
		/* padding-top: 60px; */
	}
	
	.shop-mv {
		height: 203px;
	}

	.shop-mv__title {
		top: 100px;
		left: 15px;
	}

	.shop-mv__lead {
		font-size: 12px;
		letter-spacing: -0.6px;
	}

	.shop-mv__heading {
		font-size: 28px;
		letter-spacing: -1.4px;
	}

	.shop-mv__heading-row {
		gap: 12px;
	}

	.shop-mv__socials {
		gap: 8px;
		padding-bottom: 0;
	}

	.shop-mv__social-link {
		width: 24px;
		height: 24px;
	}

	.shop-mv__social-link--x {
		width: 21px;
		height: 21px;
	}

	.shop-mv__breadcrumb {
		top: 164px;
		left: 15px;
		gap: 4px;
		font-size: 12px;
	}

	.shop-mv__decoration {
		height: 14px;
		background-size: 1344px 14px;
	}

	.shop-visual {
		position: relative;
		
		background-image: url("../imgs/shop/shop_bg_sp.jpg");
		background-position: top center;
		overflow: visible;
	}

	.shop-visual__inner {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}

	.shop-visual__logo,
	.shop-visual__map,
	.shop-visual__tenpo {
		position: absolute;
		bottom: max(-60px, -15.9574vw);
		margin: 0;
	}

	.shop-visual__logo {
		left: 5vw;
		z-index: 2;
		width: 21.2766%;
		transform: none;
	}

	.shop-visual__map {
		left: 50%;
		z-index: 1;
		width: 53.1915%;
		transform: translateX(-50%);
		margin-bottom:15px;
	}

	.shop-visual__tenpo {
		right: 5vw;
		z-index: 2;
		width: 30.3191%;
	}

	.shop-archive {
		padding: min(80px, 21.2766vw) 15px 100px;
	}

	.shop-archive__heading {
		font-size: 24px;
	}

	.shop-archive__heading-break {
		display: inline;
	}

	.shop-tabs {
		margin: 30px auto 48px;
	}

	.shop-tabs__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.shop-tabs__item--all {
		grid-column: 1 / -1;
	}

	.shop-tabs__link {
		padding: 14px 10px;
		font-size: 14px;
	}

	.shop-list {
		grid-template-columns: minmax(0, 1fr);
		gap: 52px;
	}

	.shop-card__body {
		gap: 14px;
		padding-top: 14px;
	}

	.shop-card__title {
		font-size: 21px;
	}

	.shop-card__info {
		margin: 0;
	}

	.shop-card__map {
		margin-top: auto;
	}
}

/* 店舗詳細 */
.shop-mv--single .shop-mv__breadcrumb {
	max-width: calc(100% - 96px);
}

.shop-mv__breadcrumb-current {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.shop-single {
	padding: 20px 0 160px;
	overflow: hidden;
	color: var(--shop-text);
}

.shop-single__inner {
	width: 100%;
	margin: 0 auto;
}

.shop-gallery + .shop-single__inner {
	margin-top: 120px;
}

.shop-single__header {
	text-align: center;
}

.shop-single__title {
	margin: 0;
	font-family: "Noto Serif JP", serif;
	font-size: 0;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.05em;
	overflow-wrap: anywhere;
}

.shop-single__title-brand {
	display: inline-block;
	font-size: 26px;
	line-height: 1.45;
}

.shop-single__title-name {
	display: inline-block;
	font-size: 50px;
	line-height: 1.45;
}

.shop-single__information {
	margin-top: 80px;
}

.shop-single__map,
.shop-single__instagram {
	width: 100%;
	margin-top: 120px;
}

.shop-single__section-heading {
	margin: 0 0 64px;
	font-family: "Noto Serif JP", serif;
	font-size: 50px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.05em;
	text-align: center;
}

.shop-single__details {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: min(1000px, calc(100% - clamp(30px, 8vw, 120px)));
	margin: 0 auto;
}

.shop-single__details:empty {
	display: none;
}

.shop-single__detail-row {
	display: grid;
	grid-template-columns: clamp(160px, 20%, 200px) minmax(0, 1fr);
	column-gap: 1px;
	min-height: 70px;
	margin: 0;
}

.shop-single__detail-row dt,
.shop-single__detail-row dd {
	display: flex;
	align-items: center;
	margin: 0;
	box-sizing: border-box;
	font-size: 16px;
}

.shop-single__detail-row dt {
	justify-content: center;
	padding: 10px 40px;
	color: #000;
	background: var(--shop-gold);
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
	white-space: nowrap;
}

.shop-single__detail-row dd {
	padding: 24px;
	border: 1px solid #666;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.shop-single__tel {
	color: var(--shop-text) !important;
	text-decoration: none;
	pointer-events: none;
}

.shop-single__map-frame {
	width: 100%;
	height: 600px;
	overflow: hidden;
	background: #292929;
}

.shop-single__map-frame iframe,
.shop-single__map-frame > div,
.shop-single__map-frame > div iframe {
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0;
	border: 0;
}

.shop-single__map-text {
	width: min(1000px, calc(100% - 30px));
	margin: 0 auto;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	text-align: center;
}

.shop-single__instagram-feed {
	width: min(1200px, calc(100% - 80px));
	min-width: 0;
	margin: 0 auto;
}

.shop-single__instagram-feed > :first-child {
	margin-top: 0;
}

.shop-single__instagram-feed > :last-child {
	margin-bottom: 0;
}

.shop-gallery {
	width: 100%;
	margin: 0;
}

.shop-gallery__viewport {
	width: 100%;
	overflow: hidden;
}

.shop-gallery.is-slider .shop-gallery__viewport {
	cursor: grab;
	touch-action: pan-y;
}

.shop-gallery.is-slider.is-dragging .shop-gallery__viewport {
	cursor: grabbing;
}

.shop-gallery__track {
	margin: 0;
	padding: 0;
}

.shop-gallery__slide {
	min-width: 0;
	margin: 0;
	aspect-ratio: 1200 / 600;
	overflow: hidden;
	background: transparent;
}

.shop-gallery__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: transparent;
}

.shop-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	object-fit: contain;
}

.shop-gallery--single .shop-gallery__viewport {
	width: min(1200px, calc(100% - 80px));
	margin: 0 auto;
	overflow: visible;
}

.shop-gallery--double .shop-gallery__viewport {
	width: 100%;
	margin: 0;
	overflow: visible;
}

.shop-gallery--double.is-slider .shop-gallery__viewport {
	width: min(1200px, calc(100% - 80px));
	margin: 0 auto;
	overflow: hidden;
}

.shop-gallery--single .shop-gallery__track {
	display: block;
}

.shop-gallery--single .shop-gallery__slide {
	width: 100%;
}

.shop-gallery--double .shop-gallery__track {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-gallery--double .shop-gallery__slide {
	width: 100%;
}

.shop-gallery--multiple .shop-gallery__track,
.shop-gallery.is-slider .shop-gallery__track {
	display: flex;
	align-items: stretch;
	width: max-content;
	gap: 0;
	will-change: transform;
}

.shop-gallery--multiple .shop-gallery__slide,
.shop-gallery.is-slider .shop-gallery__slide {
	flex: 0 0 min(1200px, calc(100vw - 160px));
}

.shop-gallery--double.is-slider .shop-gallery__slide {
	flex-basis: min(1200px, calc(100vw - 80px));
}

.shop-gallery--multiple .shop-gallery__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: rgba(0, 0, 0, .45);
	opacity: 1;
	pointer-events: none;
	transition: opacity .35s ease;
}

.shop-gallery--multiple .shop-gallery__slide.is-active .shop-gallery__media::after {
	opacity: 0;
}

.shop-gallery__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.shop-gallery__dot {
	display: block;
	width: 10px;
	height: 10px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d9d9d9;
	cursor: pointer;
}

.shop-gallery__dot.is-active {
	background: #caa366;
}

.shop-gallery--double:not(.is-slider) .shop-gallery__pagination {
	display: none;
}

.shop-single__back {
	display: grid;
	width: 290px;
	height: 60px;
	margin: 100px auto 0;
	place-items: center;
	border: 1px solid #fff;
	color: #131313;
	background: var(--shop-text);
	box-shadow: inset 0 0 0 3px var(--shop-dark);
	font-family: "Noto Serif JP", serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.shop-single__back:hover,
.shop-single__back:focus-visible {
	color: #131313;
	background: var(--shop-text);
}

@media (max-width: 767px) {
	.shop-mv--single .shop-mv__breadcrumb {
		max-width: calc(100% - 30px);
	}

	.shop-mv--single .shop-mv__breadcrumb-current {
		flex: 1;
	}

	.shop-single {
		padding: 20px 0 100px;
	}

	.shop-single__inner {
		width: 100%;
	}

	.shop-gallery + .shop-single__inner {
		margin-top: 80px;
	}

	.shop-single__title-brand {
		font-size: 16px;
	}

	.shop-single__title-name {
		font-size: 30px;
	}

	.shop-single__information {
		margin-top: 40px;
	}

	.shop-single__map,
	.shop-single__instagram {
		margin-top: 64px;
	}

	.shop-single__section-heading {
		margin-bottom: 40px;
		font-size: 30px;
		letter-spacing: -1.5px;
	}

	.shop-single__details {
		width: 92%;
		margin-left: auto;
		margin-right: auto;
	}

	.shop-single__detail-row {
		display: flex;
		flex-direction: column;
		gap: 1px;
		min-height: 0;
	}

	.shop-single__detail-row dt,
	.shop-single__detail-row dd {
		width: 100%;
		font-size: 14px;
	}

	.shop-single__detail-row dt {
		justify-content: flex-start;
		height: 36px;
		padding: 8px 16px;
	}

	.shop-single__detail-row dd {
		width: calc(100% - 2px);
		min-height: 54px;
		padding: 16px 8px;
		border: 0;
		line-height: 1.6;
	}

	.shop-single__detail-row--address dd {
		min-height: 76px;
		align-items: flex-start;
	}

	.shop-single__tel {
		pointer-events: auto;
	}

	.shop-single__map-frame {
		height: 400px;
	}

	.shop-single__map-text {
		font-size: 14px;
		text-align: left;
	}

	.shop-single__instagram-feed {
		width: calc(100% - 30px);
	}

	.shop-gallery__viewport,
	.shop-gallery--single .shop-gallery__viewport,
	.shop-gallery--double .shop-gallery__viewport {
		width: 100%;
		max-width: none;
		margin-right: 0;
		margin-left: 0;
		overflow: hidden;
	}

	.shop-gallery--single .shop-gallery__track {
		width: 100%;
	}

	.shop-gallery--single .shop-gallery__slide {
		width: 100%;
		height: auto;
		aspect-ratio: auto;
	}

	.shop-gallery.is-slider .shop-gallery__viewport {
		width: 100%;
		max-width: none;
		overflow: hidden;
	}

	.shop-gallery.is-slider .shop-gallery__track {
		display: flex;
		grid-template-columns: none;
		gap: 0;
	}

	.shop-gallery--multiple .shop-gallery__slide,
	.shop-gallery.is-slider .shop-gallery__slide {
		width: 100vw;
		height: auto;
		aspect-ratio: 16 / 9;
		flex: 0 0 100vw;
	}

	.shop-gallery__media,
	.shop-gallery__image {
		width: 100%;
		height: 100%;
	}

	.shop-gallery__image {
		object-fit: cover;
		object-position: center;
	}

	.shop-gallery--single .shop-gallery__media,
	.shop-gallery--single .shop-gallery__image {
		width: 100%;
		height: auto;
	}

	.shop-gallery--single .shop-gallery__image {
		object-fit: contain;
	}

	.shop-gallery--multiple .shop-gallery__media::after {
		display: none;
	}

	.shop-gallery__pagination {
		gap: 10px;
		margin-top: 20px;
	}

	.shop-single__back {
		width: min(240px, calc(100% - 30px));
		height: 50px;
		margin-top: 72px;
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.shop-gallery__track,
	.shop-gallery__media::after {
		transition: none !important;
	}
}
