/* モーダルスタイル（全国ヘッダー用） */
.modal {
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 50;
}

.modal__wrapper {
	background-color: #ffecf1;
	border: 1px solid #221a15;
	border-radius: 1rem;
	left: 50%;
	padding: 4rem;
	position: fixed;
	top: 22.4%;
	transform: translateX(-50%);
	width: 62.5rem;
	z-index: 999;
}

.modal__text {
	-webkit-text-decoration-skip-ink: none;
	font-size: max(1.5rem, 22px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.3;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.modal__list {
	margin-top: 2.5rem;
	padding: 0 6.21875rem;
}

.modal__buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 2.5rem;
}

.modal__arrow-link {
	align-items: center;
	display: flex;
}

.modal__arrow {
	height: 1.25rem;
	position: relative;
	width: 1.25rem;
}

.modal__arrow::after {
	background-image: url("../images/common/icon-arrow.svg");
	content: "";
	height: 0.625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0.3125rem;
}

.modal__arrow-link--next .modal__arrow::after {
	right: 50%;
	top: 30%;
	transform: rotate(180deg);
}

.modal__link {
	cursor: pointer;
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	position: relative;
	text-align: center;
	text-decoration-line: underline;
	text-decoration-skip-ink: none;
	text-decoration-style: solid;
	text-underline-position: from-font;
}

.modal__close {
	align-items: center;
	background-color: transparent;
	border-radius: 3.75rem;
	cursor: pointer;
	display: none;
	height: 3.75rem;
	justify-content: center;
	position: fixed;
	right: 0.6875rem;
	top: 0.5625rem;
	width: 3.75rem;
	z-index: 9999;
}

.modal__close span {
	background-color: #eb537b;
	display: inline-block;
	height: 0.125rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: 0.3s transform, 0.3s background-color;
	width: 1.375rem;
}

.modal__close span:nth-child(1) {
	top: 1.1875rem;
	transform: rotate(-45deg);
}

.modal__close span:nth-child(2) {
	top: 1.1875rem;
	transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
	.modal__wrapper {
		border-radius: 0;
		height: 100%;
		padding: 5rem 1rem 0 1rem;
		top: 0;
		transform: translateX(-50%);
		width: 100%;
	}

	.modal__text {
		font-size: 1rem;
	}

	.modal__list {
		margin-top: 1.5rem;
		padding: 0;
	}

	.modal__buttons {
		flex-direction: column-reverse;
		gap: 1rem;
		margin-top: 1.5rem;
	}

	.modal__link {
		font-size: 12px;
	}

	.modal__close {
		display: flex;
	}
}

.shop-history__bg {
	background-color: #fffbf2;
	background-image: url(../images/common/bg-ranking.svg);
	padding-bottom: 7.5rem;
	padding-top: 1rem;
}

.shop-history__banner {
	margin-top: 0.875rem;
}

.shop-history__tabs {
	margin-top: 3.1875rem;
}

.shop-history__title {
	margin-top: 3.75rem;
}

.shop-history__item {
	display: none;
}

.shop-history__item.is-active {
	display: block;
}

.shop-history__list {
	display: grid;
	gap: 3.5rem;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 2.5rem;
}

.shop-history__sub-title {
	margin-top: 2.5rem;
}

.shop-history__pagination {
	margin-top: 2.5rem;
}

.tabs {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.tabs__item {
	-webkit-text-decoration-skip-ink: none;
	background-color: white;
	border: 0.0625rem solid #221a15;
	border-radius: 4rem;
	color: #221a15;
	font-size: max(1.125rem, 16px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 0.6875rem 0;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	width: 231px;
}

.is-active.tabs__item {
	background-color: #221a15;
	color: white;
}

.pagination {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pagination__omission {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.pagination__omission span {
	background-color: black;
	border-radius: 11.25rem;
	display: block;
	height: 0.5rem;
	width: 0.5rem;
}

.pagination__number {
	align-items: center;
	display: flex;
	gap: 1rem;
	margin-top: 7.5rem;
}

.pagination__arrow {
	align-items: center;
	display: flex;
	height: 1.5rem;
	justify-content: center;
	width: 1.5rem;
}

.pagination__arrow.disabled path {
	stroke: #c9c9c9;
}

.pagination__arrow--prev {
	transform: rotate(180deg);
}

.pagination__list {
	display: flex;
	gap: 1rem;
}

.pagination__count {
	-webkit-text-decoration-skip-ink: none;
	align-items: center;
	border: 0.0625rem solid #221a15;
	border-radius: 0.125rem;
	cursor: pointer;
	display: flex;
	font-family: Quicksand;
	font-size: max(1rem, 15px);
	font-weight: 400;
	height: 2rem;
	justify-content: center;
	letter-spacing: 0.04em;
	line-height: 1;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	width: 2rem;
}

.pagination__count.active {
	background-color: #ffecf1;
}

.pagination__count:hover {
	background-color: #ffecf1;
}

.pagination__count--a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination__3-point {
	align-items: center;
	display: flex;
	justify-content: center;
}

.pagination__3-point img {
	width: 1rem;
}

.shop-posts .pagination__number {
	margin-top: 6.5625rem;
}

.press-list__wrapper .pagination__number {
	margin-top: 6.5625rem;
}

.search-shop .pagination__omission,
.search-cast .pagination__omission {
	display: none;
}

.search-shop .pagination__number,
.search-cast .pagination__number {
	margin-top: 5.125rem;
}

.cast-blog .pagination__number {
	margin-top: 6.75rem;
}

.sns-list .pagination__number {
	margin-top: 10rem;
}

.select-img {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: start;
}

.select-img__main {
	max-width: 420px;
	width: 100%;
}

.select-img__main img {
	-o-object-fit: cover;
	aspect-ratio: 420/280;
	border-radius: 0.5rem;
	object-fit: cover;
	width: 100%;
}

.shop-history .select-img__main {
	max-width: 420px;
	width: 100%;
}

.shop-history .select-img__main img {
	aspect-ratio: 420/280;
}

.select-img__img-sub {
	width: 100%;
}

.select-img__title {
	align-items: center;
	border-bottom: 0.0625rem solid #221a15;
	display: flex;
	gap: 0.25rem;
}

.select-img__icon {
	height: 2.5rem;
	width: 2.5rem;
}

.select-img__text {
	-webkit-text-decoration-skip-ink: none;
	font-size: max(1.25rem, 18px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.select-img__list {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	margin-top: 0.5rem;
	overflow-y: auto;
	padding-bottom: 0.625rem;
	width: 100%;
}

.select-img__item {
	cursor: pointer;
	max-width: 95px;
	min-width: 95px;
	padding: 0;
}

.select-img__item img {
	-o-object-fit: cover;
	aspect-ratio: 95/128;
	border-radius: 0.25rem;
	object-fit: cover;
	width: 100%;
}

.shop-history .select-img__item {
	max-width: 95px;
}

.shop-history .select-img__item img {
	aspect-ratio: 95/128;
}

.shop-history .select-img,
.search-shop .select-img {
	gap: 0;
}

.shop-card {
	list-style: none;
	width: 100%;
}

.shop-card__wrapper {
	border: 0.0625rem solid #221a15;
	border-radius: 0.5rem;
}

.ranking-list__3-shop .shop-card:nth-child(1) .shop-card__wrapper {
	border: 0.0625rem solid #957916;
}

.shop-card__header {
	align-items: center;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	display: flex;
	gap: 1rem;
	padding: 1rem;
}

.search-shop .shop-card__header,
.shop-history .shop-card__header {
	background-color: #ffecf1;
}

.shop-card--best3:nth-child(1) .shop-card__header {
	background-color: #f3eadb;
	gap: 0.6875rem;
	position: relative;
}

.shop-card--best3:nth-child(1) .shop-card__header::before {
	background-image: url("../images/ranking/icon-no-1.svg");
	background-size: cover;
	content: "";
	display: block;
	height: 9.75rem;
	position: absolute;
	right: -0.6875rem;
	top: -0.75rem;
	width: 9.75rem;
}

.shop-card--best3:nth-child(2) .shop-card__header {
	background-color: #f4f4f4;
}

.shop-card--best3:nth-child(3) .shop-card__header {
	background-color: #f9e4d6;
}

.shop-card--best20 .shop-card__header {
	background-color: #ffecf1;
	padding: 0.75rem;
}

.shop-card__icon {
	height: 6rem;
	width: 6rem;
}

.shop-card--best20 .shop-card__icon {
	height: 4rem;
	width: 4rem;
}

.shop-card--best3:nth-child(1) .shop-card__icon {
	height: 6.875rem;
	width: 6rem;
}

.shop-card__feature {
	-webkit-text-decoration-skip-ink: none;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.shop-card--best20 .shop-card__feature {
	font-size: 12px;
}

.shop-card__shop {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-size: max(1.5rem, 22px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.shop-card--best20 .shop-card__shop {
	font-size: max(1.125rem, 16px);
}

.shop-card__content {
	background-color: white;
	border-bottom-left-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
	padding: 1rem;
}

.shop-card__heading {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.shop-card__heading-icon {
	height: 2rem;
	width: 2rem;
}

.shop-card__heading-text {
	-webkit-text-decoration-skip-ink: none;
	font-size: max(1.25rem, 18px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.shop-card__main {
	display: flex;
	gap: 1rem;
}

.shop-card--best20 .shop-card__content {
	gap: 0.75rem;
	padding: 0.75rem 0.6875rem;
}

.search-shop .shop-card__content {
	padding: 1.5rem 1rem;
	padding-bottom: 15px;
}

.shop-card__left {
	width: 36.021%;
}

.shop-card__img {
	-o-object-fit: cover;
	aspect-ratio: 420/315;
	border-radius: 0.5rem;
	height: 100%;
	max-width: 420px;
	object-fit: cover;
	width: 36.021%;
	width: 100%;
}

.shop-card--best20 .shop-card__img {
	aspect-ratio: 240/180;
	max-width: 240px;
	width: 42.705%;
}

.shop-card__right {
	flex: 1;
}

.shop-card__tags {
	margin-top: 1.5rem;
}

.shop-card--best20 .shop-card__tags {
	margin-top: 0.375rem;
}

.shop-history .shop-card__tags {
	margin-top: 1rem;
}

.shop-card .link-button {
	height: 4.125rem;
	margin: 0 auto;
	margin-top: 1rem;
	width: 16.25rem;
}

.shop-card__recommend {
	margin-top: 1rem;
}

.shop-history .shop-card__content {
	padding-top: 1.5rem;
}

.shop-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.shop-info__link {
	-webkit-text-decoration-skip-ink: none;
	color: #f090a9;
	font-size: max(1.125rem, 16px);
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-line: underline;
	text-decoration-skip-ink: none;
	text-decoration-style: solid;
	text-underline-position: from-font;
}

.information .shop-info {
	gap: 0.75rem;
}

.shop-card--best20 .shop-info {
	gap: 0.25rem;
}

.shop-info__item {
	align-items: flex-start;
	display: flex;
	gap: 1.5rem;
}

.shop-card--best20 .shop-info__item {
	gap: 0.25rem;
}

.shop-info__label {
	align-items: center;
	display: flex;
	gap: 0.25rem;
	min-width: 94px;
	width: 22.384%;
}

.information .shop-info__label {
	gap: 0.5rem;
	width: 18.21%;
}

.shop-card--best20 .shop-info__label {
	width: -moz-fit-content;
	width: fit-content;
}

.shop-info__icon {
	height: 1.5rem;
	width: 1.5rem;
}

.information .shop-info__icon {
	height: 1.75rem;
	width: 1.75rem;
}

.shop-card--best20 .shop-info__icon {
	height: 1.375rem;
	width: 1.375rem;
}

.shop-info__label-text {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.information .shop-info__label-text {
	font-size: max(1.125rem, 16px);
}

.shop-board .shop-info__label-text {
	font-size: max(1rem, 15px);
	white-space: nowrap;
}

.shop-info__text {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	overflow: hidden;
	text-align: left;
	font-style: normal;
}

.information .shop-info__text {
	font-size: max(1.125rem, 16px);
}

.shop-board .shop-info__text {
	font-size: max(1rem, 15px);
}

.shop-info__sns {
	display: flex;
	gap: 0.5rem;
}

.shop-info__sns-item {
	align-items: center;
	background-color: #f090a9;
	border-radius: 3rem;
	display: flex;
	height: 2.25rem;
	justify-content: center;
	width: 2.25rem;
}

.shop-info__sns-item.disabled {
	background-color: #c9c9c9;
}

.shop-info__sns-item img {
	height: 0.9375rem;
	width: 0.9375rem;
}

.shop-history .shop-info__label {
	min-width: 86px;
	width: auto;
}

.shop-history .shop-info {
	gap: 0.25rem;
}

.ranking-list__under-4 .shop-info__label {
	min-width: 0;
	min-width: initial;
}

.ranking-list__3-shop .shop-info__label {
	width: auto;
}

.search-shop .shop-info__label {
	width: auto;
}

.search-shop .shop-info {
	gap: 0.25rem;
}

.shop-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.shop-card--best20 .shop-tags {
	gap: 0.25rem;
}

.shop-tags__item {
	-webkit-text-decoration-skip-ink: none;
	background-color: #f3eadb;
	border: 0.0625rem solid #221a15;
	border-radius: 1.5rem;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 0.5rem 0.75rem;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.ranking-list__3-shop .shop-card:nth-child(2) .shop-tags__item {
	background-color: #f4f4f4;
}

.ranking-list__3-shop .shop-card:nth-child(3) .shop-tags__item {
	background-color: #f9e4d6;
}

.shop-card--best20 .shop-tags__item {
	background-color: #ffcfdc;
	font-size: 11px;
	padding: 0.25rem 0.4375rem;
}

.shop-tags--cast-box {
	gap: 0.25rem;
}

.shop-tags--cast-box .shop-tags__item,
.shop-tags--cast-box-2 .shop-tags__item {
	background-color: #ffcfdc;
	padding: 0.1875rem 0.75rem;
}

.shop-tags--search .shop-tags__item,
.shop-tags--cast-box .shop-tags__item,
.shop-tags--history .shop-tags__item {
	background-color: #ffcfdc;
}

.cast-announce__title {
	align-items: center;
	display: flex;
	gap: 0.25rem;
}

.cast-announce__icon {
	height: 1.25rem;
	width: 1.25rem;
}

.cast-announce__text {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.cast-announce__time {
	-webkit-text-decoration-skip-ink: none;
	font-family: Quicksand;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.6;
	margin-left: 0.625rem;
	padding-top: 0.125rem;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.cast-announce__time span {
	font-weight: 400;
	margin-left: -0.25rem;
}

.cast-announce__new {
	-webkit-text-decoration-skip-ink: none;
	background-color: #eb537b;
	border-radius: 11.25rem;
	color: white;
	font-family: Quicksand;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
	padding: 0 0.25rem;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.cast-announce__link {
	-webkit-text-decoration-skip-ink: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.4rem;
	margin-top: 0.125rem;
	overflow: hidden;
	text-align: left;
	text-decoration-line: underline;
	text-decoration-skip-ink: none;
	text-decoration-style: solid;
	text-underline-position: from-font;
}

.cast-box {
	border: 0.0625rem solid #221a15;
	border-radius: 0.5rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.cast-box__header {
	background-color: #ffecf1;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	padding: 1rem;
}

.cast-box__shop-name {
	-webkit-text-decoration-skip-ink: none;
	font-size: max(1.25rem, 18px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.cast-box__shop-fieature {
	-webkit-text-decoration-skip-ink: none;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	margin-top: 0.25rem;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.cast-box__content {
	background-color: white;
	border-bottom-left-radius: 0.4375rem;
	border-bottom-right-radius: 0.4375rem;
	display: grid;
	flex: 1;
	gap: 1rem;
	grid-template-columns: 36% 61.374%;
	grid-template-rows: auto auto;
	padding: 1rem;
}

.cast-box__left {
	-o-object-fit: cover;
	aspect-ratio: 200/270;
	border-radius: 0.5rem;
	grid-column: 1/2;
	grid-row: 1/3;
	max-width: 200px;
	object-fit: cover;
	width: 100%;
}

.cast-box__name {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-size: max(1.5rem, 22px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.cast-box__info {
	margin-top: 1rem;
}

.cast-box__tags {
	margin-top: 1rem;
}

.cast-box__blog {
	margin-top: 1rem;
}

.cast-box .link-button {
	height: 3rem;
	margin: 0 auto;
	margin-top: 0.75rem;
	max-width: 240px;
	width: 100%;
}

.cast-box__top {
	grid-column: 2/3;
	grid-row: 1/2;
}

.cast-box__bottom {
	grid-column: 2/3;
	grid-row: 2/3;
}

.cast-boxes {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 2.5rem;
}

.search-cast .cast-boxes {
	margin-top: 0;
}

.cast-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.cast-info__item {
	align-items: center;
	display: flex;
}

.cast-info__item-title {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	width: 39.69%;
}

.cast-info__item-text {
	-webkit-text-decoration-skip-ink: none;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	white-space: nowrap;
}

.card-recommend {
	background-color: white;
	border: 0.0625rem solid #f090a9;
	border-radius: 0.5rem;
}

.information .card-recommend,
.cast-detail .card-recommend {
	background-color: #edffff;
	border: 0.0625rem solid #0c8d8d;
}

.card-recommend__tag {
	align-items: center;
	background-color: #f090a9;
	border-bottom-right-radius: 0.4375rem;
	border-top-left-radius: 0.4375rem;
	color: white;
	display: flex;
	padding: 0.25rem 1rem;
	width: -moz-fit-content;
	width: fit-content;
}

.information .card-recommend__tag,
.cast-detail .card-recommend__tag {
	background-color: #a4ecec;
	border-bottom: 0.0625rem solid #0c8d8d;
	border-right: 0.0625rem solid #0c8d8d;
}

.card-recommend__text {
	-webkit-text-decoration-skip-ink: none;
	color: white;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.information .card-recommend__text,
.cast-detail .card-recommend__text {
	color: #0c8d8d;
	font-size: max(1rem, 15px);
}

.card-recommend__content {
	-webkit-text-decoration-skip-ink: none;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.4rem;
	padding: 0.5rem;
	padding-left: 2rem;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.card-recommend__item {
	-webkit-text-decoration-skip-ink: none;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	list-style: none;
	position: relative;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.card-recommend__item::before {
	background-color: #221a15;
	border-radius: 11.25rem;
	content: "";
	height: 0.25rem;
	left: -0.8125rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.25rem;
}

.information .card-recommend__item {
	font-size: max(1rem, 15px);
}

.card-recommend__comment {
	font-size: max(1rem, 15px);
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	margin-right: 0.5rem;
	max-height: 145px;
	overflow-y: auto;
	padding: 0.5rem;
	padding-right: 0;
	text-align: left;
	white-space: pre-wrap;
}

.shop-history .card-recommend__comment {
	font-size: 14px;
}

.cast-box .card-recommend__text {
	font-size: 12px;
}

.cast-box .card-recommend__comment {
	padding: 0.25rem 0.5rem !important;
}

.cast-box .card-recommend__tag {
	padding: 0.1875rem 0.75rem;
}

.search-shop .card-recommend__comment,
.search-cast .card-recommend__comment {
	font-size: 14px;
}

.search-shop .shop-card__tags {
	margin-top: 15px;
}

.shop-icons {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(4, 1fr);
	padding: 0 1.5625rem;
}

.shop-icons__item {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.shop-icons__label {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-size: max(1.125rem, 16px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	white-space: nowrap;
}

.disabled .shop-icons__label {
	color: #d9d9d9;
}

.shop-icons__img {
	height: 4.5rem;
	width: 4.5rem;
}

.information {
	background-color: #ffecf1;
	width: 100vw;
}

.information__wrapper {
	margin: 0 auto;
	margin: 0 auto;
	max-width: 838px;
	padding: 5.375rem 1.875rem 5rem;
	width: 100%;
}

.information__board {
	background-color: white;
	border: 0.0625rem solid #221a15;
	border-radius: 0.5rem;
	margin-top: 2.5rem;
	padding: 4rem;
	position: relative;
}

.information__board-recommend {
	margin-top: 2.5rem;
}

.information__board-icons {
	margin-top: 2.5rem;
}

.information__circle {
	background-color: #221a15;
	border-radius: 11.25rem;
	height: 0.5rem;
	position: absolute;
	width: 0.5rem;
}

.information__circle--top-left {
	left: 1rem;
	top: 1rem;
}

.information__circle--top-right {
	right: 1rem;
	top: 1rem;
}

.information__circle--bottom-left {
	bottom: 1rem;
	left: 1rem;
}

.information__circle--bottom-right {
	bottom: 1rem;
	right: 1rem;
}

/* === サブタイトル(星付きタイトル)のクラス start === */

.sub-title {
	align-items: center;
	display: flex;
	margin: 0 auto;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 2;
}

.sub-title__star-left {
	aspect-ratio: 40/51;
	left: -3.75rem;
	position: absolute;
	top: 1.0625rem;
	width: 2.5rem;
}

.sub-title__text {
	-webkit-text-decoration-skip-ink: none;
	align-items: center;
	display: flex;
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.sub-title--small .sub-title__text {
	font-size: max(1.5rem, 22px);
}

.sub-title__star-right {
	aspect-ratio: 59/64;
	position: absolute;
	right: -5.125rem;
	top: -0.9375rem;
	width: 3.6875rem;
}

.sub-title__ranking {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-family: Quicksand;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
	margin-left: 1rem;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.shop-history .sub-title__text {
	font-size: 2rem;
}

.blog-list .sub-title__text {
	align-items: baseline;
	font-size: 32px;
}

.sub-title__big {
	font-family: Quicksand;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: center;
}

.sns-list .sub-title__text {
	font-size: 2rem;
}

/* === サブタイトル(星付きタイトル)のクラス end === */

@media screen and (max-width: 1023px) {

.cast-boxes {
	grid-template-columns: repeat(1, 1fr);
	margin-top: 1.5rem;
}

}

@media screen and (max-width: 850px) {

.cast-boxes {
	grid-template-columns: repeat(1, 1fr);
}

}

@media screen and (max-width: 767px) {

.shop-history__bg {
	padding-bottom: 2.5rem;
	padding-top: 2rem;
}

.shop-history__banner {
	margin-top: 0;
}

.shop-history__tabs {
	margin-top: 1.125rem;
}

.shop-history__title {
	margin-top: 0;
}

.shop-history__list {
	gap: 1rem;
	margin-top: 1.5rem;
}

.shop-history__sub-title {
	margin-top: 1.5rem;
}

.shop-history__pagination {
	margin-top: 1.5rem;
}

.tabs {
	margin: 0 auto;
	width: 22.5rem;
}

.tabs__item {
	font-size: 14px;
	padding: 0.8125rem 0;
}

.sns-swiper .tabs {
	width: 20.9375rem;
}

.pagination {
	gap: 2rem;
}

.pagination__omission span {
	height: 0.375rem;
	width: 0.375rem;
}

.pagination__number {
	gap: 0.75rem;
	margin-top: 0;
}

.pagination__list {
	gap: 0.75rem;
}

.pagination__count:nth-child(n+5) {
	display: none;
}

.pagination__count:last-child {
	display: flex;
}

.cast-blog .pagination__omission,
.shop-blog-list .pagination__omission {
	display: flex;
}

.shop-posts .pagination__number {
	margin-top: 0;
}

.press-list__wrapper .pagination__number {
	margin-top: 0;
}

.search-shop .pagination__number,
.search-cast .pagination__number {
	margin-top: 0;
}

.cast-blog .pagination__number {
	margin-top: 0;
}

.sns-list .pagination__number {
	margin-top: 0;
}

.select-img {
	flex-direction: row;
}

.select-img__main {
	max-width: 245px;
	width: auto;
}

.select-img__main img {
	aspect-ratio: 245/163;
}

.shop-history .select-img__main {
	max-width: 245px;
}

.shop-history .select-img__main img {
	aspect-ratio: 245/163;
}

.select-img__img-sub {
	max-height: 163px;
	max-width: 83px;
	overflow-y: auto;
}

.select-img__icon {
	height: 1.5rem;
	width: 1.5rem;
}

.select-img__text {
	font-size: max(1rem, 15px);
}

.select-img__list {
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0;
	max-height: 163px;
	max-width: 83px;
	overflow-y: auto;
	padding-right: 0.5rem;
}

.select-img__item {
	max-width: 68px;
	min-width: 0;
	min-width: initial;
}

.select-img__item img {
	aspect-ratio: 68/92;
}

.shop-history .select-img,
.search-shop .select-img {
	gap: 0.375rem;
}

.shop-card__header {
	gap: 0.5rem;
	padding: 0.5rem;
}

.search-shop .shop-card__header,
.shop-history .shop-card__header {
	padding: 0.75rem;
}

.shop-card--best3:nth-child(1) .shop-card__header::before {
	height: 4.875rem;
	right: -0.3125rem;
	top: -0.375rem;
	width: 4.875rem;
}

.shop-card--best20 .shop-card__header {
	padding: 0.5rem;
}

.shop-card__icon {
	height: 3rem;
	min-width: 48px;
	width: 3rem;
}

.shop-card--best20 .shop-card__icon {
	height: 3rem;
	min-width: 48px;
	width: 3rem;
}

.shop-card--best3:nth-child(1) .shop-card__icon {
	height: 3.4375rem;
	width: 3rem;
}

.shop-card__feature {
	font-size: 11px;
}

.shop-card--best20 .shop-card__feature {
	font-size: 10px;
}

.shop-card__shop {
	font-size: max(1rem, 15px);
	margin-top: 0.25rem;
}

.shop-card--best20 .shop-card__shop {
	font-size: 14px;
}

.shop-card__content {
	padding: 0.9375rem 0.75rem 0.75rem 0.75rem;
}

.shop-card__heading {
	margin-bottom: 0.375rem;
}

.shop-card__heading-icon {
	height: 1.5rem;
	min-width: 24px;
	width: 1.5rem;
}

.shop-card__heading-text {
	font-size: 12px;
}

.shop-card__main {
	flex-direction: column;
	gap: 0.5rem;
}

.shop-card--best20 .shop-card__content {
	flex-direction: row;
	gap: 0.5rem;
}

.search-shop .shop-card__content {
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 6px;
}

.shop-card__left {
	width: 100%;
}

.shop-card__img {
	aspect-ratio: 328/203;
	margin: 0 auto;
	max-width: 328px;
	width: 100%;
}

.shop-card--best20 .shop-card__img {
	aspect-ratio: 100/75;
	border-radius: 4px;
	max-width: 100px;
	width: 32.156%;
}

.shop-history .shop-card__img {
	max-width: 336px;
}

.shop-card__tags {
	margin-top: 1rem;
}

.shop-card .link-button {
	height: 3rem;
	margin-top: 1rem;
	width: 15rem;
}

.shop-history .shop-card__content {
	padding: 0.5rem 0.75rem 1.25rem 0.75rem;
}

.shop-card--best20 .shop-card__main {
	flex-direction: row;
}

.shop-history .shop-card__shop {
	font-size: 14px;
}

.shop-history .shop-card__feature {
	font-size: 12px;
}

.search-shop .shop-card__shop {
	font-size: 0.875rem;
}

.search-shop .shop-card__feature {
	font-size: 0.75rem;
}

.search-shop .shop-card__recommend {
	margin-top: 0.5rem;
}

.search-shop .search-shop__list {
	gap: 15px;
}

.shop-info {
	gap: 0.125rem;
}

.shop-info__link {
	font-size: 12px;
}

.information .shop-info {
	gap: 0.5rem;
}

.shop-info__item {
	gap: 0.9375rem;
}

.shop-info__label {
	min-width: 86px;
	width: 26.385%;
}

.shop-card--best20 .shop-info__label {
	min-width: 0;
	min-width: initial;
}

.shop-info__icon {
	height: 1.125rem;
	width: 1.125rem;
}

.shop-board .shop-info__icon {
	height: 1.125rem;
	width: 1.125rem;
}

.information .shop-info__icon {
	height: 1.125rem;
	width: 1.125rem;
}

.shop-card--best20 .shop-info__icon {
	height: 1.125rem;
	width: 1.125rem;
}

.shop-info__label-text {
	font-size: 12px;
}

.information .shop-info__label-text {
	font-size: 12px;
}

.shop-board .shop-info__label-text {
	font-size: 12px;
}

.shop-info__text {
	font-size: 12px;
}

.information .shop-info__text {
	font-size: 12px;
}

.shop-board .shop-info__text {
	font-size: 12px;
}

.shop-card--best20 .shop-info__item {
	align-items: center;
}

.shop-info__sns-item {
	height: 2rem;
	width: 2rem;
}

.shop-info__sns-item img {
	height: 0.833125rem;
	width: 0.833125rem;
}

.information .shop-info__item:last-child {
	align-items: center;
}

.shop-tags {
	gap: 0.25rem;
}

.shop-card--best20 .shop-tags {
	gap: 0.25rem;
}

.shop-tags__item {
	font-size: 11px;
	padding: 0.3125rem 0.5rem;
}

.shop-card--best20 .shop-tags__item {
	padding: 0.1875rem 0.4375rem;
}

.shop-tags--cast-box .shop-tags__item,
.shop-tags--cast-box-2 .shop-tags__item {
	font-size: 11px;
}

.cast-announce__text {
	font-size: 13px;
}

.cast-announce__time {
	font-size: 11px;
}

.cast-announce__new {
	font-size: 10px;
}

.cast-announce__link {
	font-size: 11px;
	margin-top: 0.125rem;
}

.cast-box__header {
	padding: 0.75rem;
}

.cast-box__shop-name {
	font-size: 14px;
}

.cast-box__shop-fieature {
	font-size: 11px;
}

.cast-box__content {
	gap: 0.5rem;
	grid-template-columns: 29.764% 1fr;
	padding: 0.75rem;
}

.cast-box__left {
	aspect-ratio: 100/150;
	border-radius: 0.25rem;
	grid-row: unset;
	max-width: 100px;
}

.cast-box__name {
	font-size: max(1rem, 15px);
}

.cast-box__info {
	margin-top: 0.25rem;
}

.cast-box__tags {
	margin-top: 0.25rem;
}

.cast-box__comment {
	margin-top: 0.25rem;
}

.cast-box__blog {
	margin-top: 0.25rem;
}

.cast-box__bottom {
	grid-column: 1/3;
}

.cast-info {
	grid-template-columns: repeat(1, 1fr);
}

.cast-info__item-title {
	font-size: 12px;
	width: 27.69% !important;
}

.cast-info__item-text {
	font-size: 12px;
}

.card-recommend__text {
	font-size: 14px;
}

.information .card-recommend__text,
.cast-detail .card-recommend__text {
	font-size: 14px;
}

.card-recommend__content {
	font-size: 13px;
	padding-left: 1.5rem;
}

.card-recommend__item {
	font-size: max(1rem, 15px);
}

.information .card-recommend__item {
	font-size: 12px;
}

.card-recommend__comment {
	font-size: 12px;
	margin-right: 0.25rem;
	max-height: 120px;
}

.shop-history .card-recommend__comment {
	font-size: 12px;
	padding: 0.25rem 0.25rem 0.5rem 0.25rem;
	padding-right: 0;
}

.shop-history .card-recommend__text {
	font-size: 12px;
}

.cast-box .card-recommend__comment {
	font-size: 14px;
}

.cast-box .card-recommend__tag {
	padding: 0.125rem 0.5rem;
}

.search-shop .card-recommend__text {
	font-size: 12px;
}

.search-shop .card-recommend__comment {
	padding: 4px;
	padding-right: 0;
}

.search-shop .card-recommend__tag {
	padding: 2px 12px;
}

.search-shop .card-recommend__comment,
.search-cast .card-recommend__comment {
	font-size: 12px;
}

.shop-icons {
	-moz-column-gap: 0.5rem;
	column-gap: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
	row-gap: 0.75rem;
}

.shop-icons__item {
	height: 4.5625rem;
	width: 5.625rem;
}

.shop-icons__label {
	font-size: 12px;
}

.shop-icons__img {
	height: 3.375rem;
	width: 3.375rem;
}

.information__wrapper {
	max-width: 600px;
	padding: 2.5rem 0.46875rem;
}

.information__board {
	margin-top: 1.625rem;
	padding: 1.5rem 1rem;
}

.information__board-recommend {
	margin-top: 1rem;
}

.information__board-icons {
	margin-top: 1rem;
}

.information__circle--top-left {
	left: 0.5rem;
	top: 0.5rem;
}

.information__circle--top-right {
	right: 0.5rem;
	top: 0.5rem;
}

.information__circle--bottom-left {
	bottom: 0.5rem;
	left: 0.5rem;
}

.information__circle--bottom-right {
	bottom: 0.5rem;
	right: 0.5rem;
}

.sub-title__star-left {
	height: 1.57875rem;
	left: -1.75rem;
	top: 0.375rem;
	width: 1.241875rem;
}

.sub-title__text {
	flex-direction: column;
	font-size: max(1rem, 15px);
}

.sub-title--small .sub-title__text {
	font-size: max(1rem, 15px);
}

.sub-title__star-right {
	height: 1.985625rem;
	right: -2.1875rem;
	top: -0.8125rem;
	width: 1.810625rem;
}

.sub-title__ranking {
	font-size: max(1.375rem, 20px);
	margin-left: 0;
}

.shop-history .sub-title__text {
	font-size: max(1rem, 15px);
}

.blog-list .sub-title__text {
	flex-direction: row;
}

.sub-title__big {
	font-size: 2rem;
}

.sns-list .sub-title__text {
	font-size: 1rem;
}

}

/* ===== History: Empty state (cast + shop) ===== */
.shop-history__item--cast .empty-state,
.shop-history__item--shop .empty-state {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(24px, 6vw, 64px) 16px;
  margin-top: clamp(16px, 2.8vw, 32px);
  border-radius: 12px;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,.06));
}

.shop-history__item--cast .empty-state h1,
.shop-history__item--shop .empty-state h1 {
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.25;
  margin: 0 0 .4em 0;
  letter-spacing: .02em;
}

.shop-history__item--cast .empty-state .lead,
.shop-history__item--shop .empty-state .lead {
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--ink-muted);
  margin: 3em 0 0 0;
}

.shop-history__item--cast .empty-state .sub,
.shop-history__item--shop .empty-state .sub {
  font-size: clamp(14px, 2.2vw, 18px);
  color: var(--ink-muted);
  margin: 0 0 3em 0;
}

.shop-history__item--cast .empty-state .link-button,
.shop-history__item--shop .empty-state .link-button {
  min-width: 220px;
}