/* 店舗関連ページの共通スタイル */

/* コンテナのレイアウト - 共通 */
.p-store-container {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-top: 40px;
}

.p-store-main {
	flex: 1;
	min-width: 300px;
}

.p-store-sidebar {
	width: 300px;
	display: block;
}

.p-new-store-badge{
	background-color: #e70006;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 2px;
	margin-left: 20px;
	padding: 1px 5px;
	vertical-align: middle;
	font-weight: bold;
}

.p-store-sidebar-modal {
	display: none;
}

.p-store-sidebar-trigger {
	display: none;
}

.p-store-sidebar-close {
	display: none;
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 1001;
	font-size: 24px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	/* Sidebar base */
	#storeSidebar {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		background: #fff;
		z-index: 1000;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		padding: 20px;
	}

	#storeSidebar.active {
		display: block;
	}

	.p-store-sidebar-trigger {
		display: inline-block;
		cursor: pointer;
		font-size: 16px;
		margin-left: 10px;
		position: absolute;
		right: 24px;
	}

	.p-store-sidebar-modal {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 10000;
		display: none;
		justify-content: center;
		align-items: center;
	}

	.p-store-sidebar-modal .p-store-sidebar {
		display: block;
		background: #fff;
		width: 90%;
		max-height: 90vh;
		overflow-y: auto;
		padding: 20px;
		border-radius: 8px;
		position: relative;
	}

	.p-store-sidebar-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
		width: 100%;
		height: 100%;
	}

	.p-store-sidebar-overlay.active {
		display: block;
	}

	.p-store-sidebar-close {
		display: block;
		position: fixed;
		top: 10px;
		right: 14px;
		font-size: 24px;
		font-weight: bold;
		cursor: pointer;
		z-index: 10001;
		padding: 8px;
	}
}

/* 見出しスタイル - 共通 */
.p-store-heading {
	font-size: 1.5rem;
	font-weight: bold;
	padding-top: 10px;
	margin-bottom: 8px;
	border-bottom: 1px solid #ccc;
}

/* .p-store-sidebar-heading {
	font-size: 1rem;
	font-weight: bold;
	background-color: #535353;
	color: #fff;
	padding: 10px;
	margin: 0;
} */

/* search用見出しスタイル */
.p-search__heading {
	font-size: 1.125rem;
	font-weight: bold;
	padding: 10px 0;
	margin-bottom: 16px;
	border-bottom: 1px solid #ccc;
}

.p-search__sidebar-heading {
	font-size: 1rem;
	font-weight: bold;
	background-color: #535353;
	color: #fff;
	padding: 10px;
	margin: 0;
}

/* セクションスタイル - 共通 */
/* .p-store-section {
	margin-bottom: 40px;
	border: 1px solid #e0e0e0;
}

.p-store-content {
	padding: 16px;
} */

.p-store-section__block {
	margin-bottom: 0;
}

.p-store-section__block {
	margin-bottom: 4rem;
}

.p-store-section__block:last-child {
	margin-bottom: 0;
}

/* .p-store-link {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	padding: 12px 16px;
	text-decoration: none;
	position: relative;
} */

.p-store-link__arrow {
	width: 24px;
	height: 24px;
}

.p-store-link__mobile-arrow {
	display: none;
	margin-left: auto;
	font-size: 1.25rem;
	font-weight: bold;
}

.p-store-link__wrapper {
	display: flex;
    justify-content: center; /* 水平方向の中央寄せ */
    width: 100%; /* 親要素いっぱいに広げる */
    margin: 0 auto; /* 中央寄せの保険 */
}

.p-store-link.-arrow {
    padding-left: 2.8125rem;
    padding-right: 2.8125rem;
}
.p-store-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 23rem;
    min-height: 3.5rem;
    padding-left: 16px;
    padding-right: 16px;
    background-color: #fff;
    border: 1px solid #ee2723;
    border-radius: 99rem;
    color: #1d2129;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 8px rgba(38, 3, 3, 0.24);
    position: relative;
    font-size: 1.125rem;
}

.p-store-link:hover {
    background-color: #ee2723;
    color: #fff;
}

.p-store-link__icon {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 12px);
    right: 1rem;
    color: transparent;
}

@media screen and (max-width: 768px) {
	.p-store-heading {
		font-weight: 500;
	}

	.p-store-link {
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding: 16px 8px;
		text-decoration: none;
	}

	.p-store-link__arrow {
		display: none;
	}

	.p-store-link__mobile-arrow {
		display: inline-block;
		right: 10px;
	}

	.p-store-link a {
		flex: 1;
		text-decoration: none;
		font-size: 1rem;
	}

	.p-store-link.-arrow {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* infolink用セクションスタイル */
.p-infolink .p-store-section {
	padding: 20px 0px;
	background-color: #f8f8f8;
	margin-bottom: 4rem;
}

.p-infolink__header {
	padding: 1.5rem;
	text-align: center;
	background-color: #f4f7fa;
 	color: #000;
	/* font-weight: bold; */
}

.p-infolink__title {
	margin: 0;
	font-size: 1.5rem;
  }
  
.p-infolink__title > span {
	position: relative;
	padding-left: 1.5rem;
}

.p-infolink__title > span::before {
	content: "";
	width: 1rem;
	height: 2px;
	background-color: #ee2723;
	border-radius: 2px;
	position: absolute;
	top: 0.7em;
	left: 0;
}


@media screen and (max-width: 768px) {
	.p-infolink .p-store-section {
		margin-bottom: 2rem;
	}
}

/* search用セクションスタイル */
.p-search {
	background-color: #fff;
	padding: 0;
}

.p-store-infolink__content {
	padding: 16px
}

.p-store-infolink__content .p-store-section__block:first-child {
	margin-top: 24px;
}

/* search用サイドバー */
.p-search__sidebar {
	width: 300px;
}

/* search用の店舗検索情報セクション */
.p-search__info-section {
	margin-bottom: 40px;
	/* background-color: #fff; */
	/* border: 1px solid #e0e0e0; */
	/* padding: 0; */
}

.p-search__info-content {
	padding: 16px;
}

.p-search__note-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.p-search__note-list li {
	margin-bottom: 8px;
	font-size: 0.875rem;
	line-height: 1.5;
	padding-left: 16px;
	position: relative;
}

/* infolink用スタイル */
.p-infolink__description {
	margin-bottom: 20px;
	line-height: 1.6;
}

.p-infolink__button-container {
	text-align: center;
}

/* 新オープン情報 - 共通 */
.p-store__new-open {
	/* border: 1px solid #e0e0e0; */
	/* background-color: #f8f8f8; */
	margin-bottom: 32px;
}

.p-store__new-open-list {
	padding: 16px;
}

.p-store__new-open-infolink {
	padding-bottom: 24px;
	font-size: 0.875rem;
	text-decoration: underline;
}

.p-store__new-open-item {
	padding-bottom: 24px;
	font-size: 0.875rem;
	text-decoration: underline;
}

.p-store__new-open-item:hover {
	text-decoration: none;
}

.p-store__new-open-item a {
	text-decoration: none;
}

.p-store__new-open-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.p-store__new-open-date {
	font-size: 16px;
	/* text-decoration: underline; */
	/* margin-bottom: 8px; */
}

.p-store__new-open-store a {
	/* color: #0066cc !important; */
	/* text-decoration: none; */
	/* font-weight: bold; */
	display: inline-block;
	/* padding: 2px 0; */
	font-size: 16px;
}

/* .p-store__new-open-store a:hover {
  text-decoration: underline;
} */

/* search用イベント・キャンペーン情報 */
.p-search__table-container {
	position: relative;
	background-image: url('/store/assets/img/img_map_overlay.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 400px;
	overflow-x: auto;
	margin: 4rem 0 4rem 0;
}

.p-search__table-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.85);
	z-index: 1;
}

.p-search__table-container .p-search__table {
	position: relative;
	z-index: 2;
	background: transparent;
	margin: 0;
}

.p-search__region-map {
	width: 100%;
}

.p-search__region-table {
	width: 100%;
}

.p-search__event {
	/* border: 1px solid #e0e0e0; */
	/* background-color: #fff; */
	/* position: relative; */
}

.p-search__event-list {
	padding: 16px;
}

.p-search__event-item {
	padding-bottom: 24px;
	text-decoration: underline;
	display: inline-block;
	font-size: 0.875rem;
}

.p-search__event-item:hover {
	text-decoration: none;
}

.p-search__event-item a {
	text-decoration: none;
}

.p-search__event-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.p-search__more-link {
	text-align: right;
	padding: 0 16px 16px;
	font-size: 0.8125rem;
	text-decoration: underline;
}

.p-search__more-link:hover {
	text-decoration: none;
}

.p-search__more-link a {
	text-decoration: none;
}

/* search用テーブルスタイル */
.p-search__table {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: transparent;
	margin: 0;
	width: 100%;
}

.p-search__table-row {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	align-items: flex-start;
}

.p-search__table-header {
	background-color: #6b6b6b;
	color: white;
	padding: 8px 12px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
	min-width: 136px;
	flex: 0 0 136px;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.p-search__table-content {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 0;
	flex: 1;
	min-width: 0;
}

.p-search__table-cell {
	padding: 5px 8px;
}

.p-search__table-cell a {
	text-decoration: underline;
	display: inline-block;
	padding: 2px 5px;
	white-space: nowrap;
	border-right: 1px solid #0066cc;
	font-size: 0.875rem;
}

.p-search__table-cell a:hover {
	text-decoration: none;
}

@media (max-width: 768px) {
	.p-search__table-container {
		min-height: 300px;
		margin: 2rem 0 2rem 0;
	}

	.p-search__table-row {
		flex-direction: column;
		margin-bottom: 15px;
		border-radius: 8px;
		padding: 10px;
	}

	.p-search__table-header {
		min-width: auto;
		flex: none;
		width: 100%;
		margin-bottom: 10px;
		border-radius: 4px;
		font-size: 0.9rem;
	}

	.p-search__table-content {
		width: 100%;
	}

	.p-search__table-cell {
		padding: 3px 6px;
		margin: 2px 0;
	}

	.p-search__table-cell a {
		padding: 6px 12px;
		border-right: none;
		margin: 2px 4px 2px 0;
		font-size: 0.8rem;
		transition: all 0.2s ease;
	}

	.p-search__table-cell a:hover {
		text-decoration: none;
	}
}

@media (max-width: 480px) {
	.p-search__table-container {
		background-image: none;
	}
	.p-search__table {
		gap: 0;
	}

	.p-search__table-row {
		border: none;
		border-radius: 0;
		padding: 0;
		margin-bottom: 0;
		overflow: hidden;
	}

	.p-search__table-header {
		padding: 12px 16px;
		margin-bottom: 0;
		border-radius: 0;
		font-size: 0.875rem;
		cursor: pointer;
		position: relative;
		transition: background-color 0.2s ease;
		justify-content: space-between;
		background-color: white;
		color: #000000;
		font-weight: normal;
	}

	/* Accordion arrow */
	.p-search__table-header::after {
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		content: '\f078';
		font-size: 0.6rem;
		transition: transform 0.2s ease;
		color: #c00;
	}

	.p-search__table-row.collapsed .p-search__table-header::after {
		transform: rotate(0deg);
	}

	.p-search__table-row:not(.collapsed) .p-search__table-header::after {
		transform: rotate(-180deg);
	}

	.p-search__table-content {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease, padding 0.3s ease;
		padding: 0 16px 0 32px;
		background: white;
	}

	.p-search__table-row:not(.collapsed) .p-search__table-content {
		max-height: 500px;
	}

	.p-search__table-cell {
		padding: 2px 0;
		margin: 0;
		display: block;
		width: 100%;
	}

	.p-search__table-cell a {
		font-size: 0.875rem;
		padding: 8px 0;
		margin: 0;
		display: block;
		width: 100%;
		box-sizing: border-box;
		background: none;
		border-bottom: 1px solid #dee2e6;
		border-radius: 0;
		text-decoration: none;
		transition: all 0.2s ease;
		position: relative;
		padding-right: 20px;
	}

	.p-search__table-cell a::after {
		content: '\f054';
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		font-size: 0.6rem;
		color: #8b8b8b;
	}
}

/* ボタンスタイル - 共通 */
.c-button--store {
	display: inline-block;
	padding: 10px 32px;
	background-color: #e60012;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s;
}

.c-button--store:hover {
	background-color: #c00;
}

/* infolink用ボタンスタイル */
.c-button--infolink {
	display: inline-block;
	padding: 10px 32px;
	background-color: #e60012;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s;
}

.c-button--infolink:hover {
	background-color: #c00;
}

/* 店舗一覧ページのスタイル */
.p-store-list {
	margin-top: 16px;
}

.p-store-list__loading {
	text-align: center;
	padding: 32px;
	color: #666;
}

.p-store-list__item {
	/* border-bottom: 1px solid #e0e0e0; */
	padding: 24px 0;
}

/* .p-store-list__item:first-child {
	border-top: 1px solid #e0e0e0;
} */

.p-store-list__sidebar-header {
	padding: 1.5rem;
	background-color: #f4f7fa;
	text-align: center;
}

.p-store-list__sidebar-title {
	font-size: 1.5rem;
	font-weight: bold;
}

.p-store-list__sidebar-title > span {
	position: relative;
	padding-left: 1.5rem;
}

.p-store-list__sidebar-title > span::before {
	content: "";
    width: 1rem;
    height: 2px;
    background-color: #ee2723;
    border-radius: 2px;
    position: absolute;
    top: 0.7em;
    left: 0;
}

.p-store-list__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.p-store-list__name {
	font-size: 1.25rem;
	font-weight: bold;
	margin-top: 2rem;
	padding: 16px;
	background-color: #f4f7fa;
}

.p-store-list__stores-section {
	/* padding-left: 16px;
	padding-right: 16px; */
}

.p-store-list__barrier-free {
	font-size: 1rem;
	padding-top: 8px;
	font-weight: 300;
}

.p-store-list__tel {
	font-size: 1.5rem;
	font-weight: bold;
	color: #003da5;
	margin: 0;
}


.p-store-list__hours {
	margin-top: 16px;
	margin-bottom: 16px;
	font-size: 0.875rem;
	font-weight: bold;
	font-size: 1.25rem;
	display: flex;
}

.p-store-list__label {
	font-size: 1rem;
	color: #555;
	font-weight: 500;
	margin-right: 8px;
	white-space: nowrap;
}

.p-store-list__content {
	font-size: 1rem;
	color: #555;
	font-weight: bold;
	margin-right: 8px;
}

.p-store-list__notice {
	margin-top: 16px;
	/* background-color: #f8f8f8; */
	border: 1px solid #9ea6b2;
	border-radius: 4px;
	display: flex;
	padding: 0;
	overflow: hidden;
}

.p-store-list__notice-left {
	flex: 0 0 100px;
	padding: 8px;
	border-right: 1px solid #9ea6b2;
	display: flex;
	align-items: center;
	background-color: #f4f7fa;
	text-align: center;
}

.p-store-list__notice-right {
	flex: 1;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.p-store-list__notice-title {
	font-weight: bold;
	font-size: 1rem;
	margin: 0;
}

.p-store-list__notice-text {
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

/* 店舗詳細ページのスタイル */
.pc-only {
	display: block !important;
}
.sp-only {
	display: none !important;
}

.p-store-error-message {
  padding: 2rem;
  text-align: center;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  margin: 2rem 0;
  color: #721c24;
  font-size: 1rem;
}

@media (max-width: 425px) {
	.pc-only {
		display: none !important;
	}
	.sp-only {
		display: block !important;
	}
}

.p-store-detail-sidebar-section {
	margin-bottom: 24px;
	/* border: 1px solid #9ea6b2; */
}

.p-store-detail__sidebar-header {
	padding: 16px;
	background-color: #f4f7fa;
	text-align: center;
}

.p-store-detail__sidebar-title {
	font-size: 1.5rem;
	font-weight: bold;
}

.p-store-detail__sidebar-title > span {
	position: relative;
	padding-left: 1.5rem;
}

.p-store-detail__sidebar-title > span::before {
	content: "";
    width: 1rem;
    height: 2px;
    background-color: #ee2723;
    border-radius: 2px;
    position: absolute;
    top: 0.7em;
    left: 0;
}

@media only screen and (max-width: 768px) {
	.p-store-detail-sidebar-section {
		display: none;
	}
}

/* .p-store-detail-prefecture-header {
	position: relative;
	background-color: #f4f7fa;
	color: #fff;
	padding: 8px 16px;
	border: 1px solid #9ea6b2;
} */

.p-store-detail-prefecture-header__title::before {
	content: "";
    width: 1rem;
    height: 2px;
    background-color: #ee2723;
    border-radius: 2px;
    position: absolute;
    top: 0.7em;
    left: 0;
}

.p-store-detail-prefecture-header__title {
	position: relative;
	margin: 0;
	font-size: 1.5rem;
	font-weight: bold;
	color: black;
	padding-left: 2rem;
}

.p-store-info__list {
	display: grid;
	grid-template-columns: 1fr 3fr;
	border-collapse: collapse;
}

.p-store-info__label-top {
	background-color: #f4f7fa;
	border: 1px solid #9ea6b2;
	padding: 16px 8px;
	align-content: center;
}

.p-store-info__value-top {
	border-top: 1px solid #9ea6b2;
	border-right: 1px solid #9ea6b2;
	border-bottom: 1px solid #9ea6b2;
	padding: 16px 8px;
}

.p-store-info__label {
	background-color: #f4f7fa;
	border-left: 1px solid #9ea6b2;
	border-right: 1px solid #9ea6b2;
	border-bottom: 1px solid #9ea6b2;
	padding: 16px 8px;
	align-content: center;
}

.p-store-info__value {
	border-right: 1px solid #9ea6b2;
	border-bottom: 1px solid #9ea6b2;
	padding: 16px 8px;
}

.p-store-info__phone {
	color: #003da5;
	font-size: 24px;
	font-weight: bolder;
}

@media (max-width: 425px) {
	.p-store-info__list {
		grid-template-columns: 1fr;
	}

	.p-store-info__label-top,
	.p-store-info__label {
		margin-top: 12px;
		background-color: #ffffff;
		border: none;
		padding: 0;
		font-weight: bold;
	}

	.p-store-info__value-top,
	.p-store-info__value {
		border-bottom: none;
		border-left: none;
		border-right: none;
		border-top: 4px solid #e7e7e7;
		padding: 8px 0 24px 0;
		/* 高さ制限を解除 */
		max-height: none !important;
		height: auto !important;
		overflow: visible !important;
		/* 改行を許可 */
		white-space: normal;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
}



/* Service Icons */
.p-store-detail-info {
	padding-top: 24px;
}

.p-store-detail__icons {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 5px;
}

.p-store-detail__icon {
	background-color: #f3f3f3;
	color: white;
	font-size: 8px;
	border: 1px solid #ccc;
	width: 77px;
	height: 33px;
	text-align: center;
	place-content: center;
	margin: 2px 0 2px 4px;
	text-wrap: auto;
}

.p-store-detail-icon__size{
	width: 77px;
	height: 33px;
}

.p-store-detail__icon--av {
	background-color: #638fd0;
}
.p-store-detail__icon--ipad {
	background-color: #000000;
}
.p-store-detail__icon--kaden {
	background-color: #2ecc71;
}
.p-store-detail__icon--iphone {
	background-color: #ff3131;
}
.p-store-detail__icon--heater {
	background-color: #f58b01;
}
.p-store-detail__icon--grayed {
	background-color: #d7d5d6;
}

.p-store-detail__content {
	padding: 16px;
	border-top: none;
	border-right: 1px solid #9ea6b2;
	border-bottom: 1px solid #9ea6b2;
	border-left: 1px solid #9ea6b2;
	
}

.p-store-detail__sidebar-content {
	padding-left: 16px;
	padding-right: 16px;
}

.p-store-detail__sidebar-content dl dt::before {
	content: '\25A0 ';
	margin-right: 0.3em;
}

.p-store-detail__sidebar-content dl dt {
	padding-top: 24px;
}

.p-store-detail__sidebar-content dl dd::before {
	content: '- ';
	color: black;
	margin-left: 2rem;
}

.p-store-map {
	height: 470px;
	width: 100%;
}

@media (max-width: 425px) {
	.p-store-map {
		height: 200px;
	}
}

/* 絞り込み機能のスタイル */
.p-store-filter {
	margin-bottom: 24px;
	margin-top: 16px;
}

.p-store-filter__group {
	border: 1px solid #9ea6b2 !important;
	border-radius: 4px;
	padding: 8px;
	margin-bottom: 8px;
}

.p-store-p-store-filter__label:hover {
	background-color: #f4f7fa;
} 

.p-store-filter__group-label {
	margin-bottom: 0.5rem;
	font-size: 1rem;
	color: #333;
}

/* .p-store-sidebar-section {
	margin-bottom: 24px;
	border: 1px solid #ddd;
} */

/* @media only screen and (max-width: 768px) {
	.p-store-sidebar-section {
		display: none;
	}
} */

/* Pop store detail */
.p-popup-wrapper {
	margin: 0 auto;
	width: 100%;
}

.p-pop-store-detail__header {
	background-color: #c90e12;
	height: 41px;
	color: white;
	min-width: initial;
	border-bottom: 1px solid #a9a9a9;
	line-height: 40px;
	width: 100%;
	display: flex;
}

a.popup_close_ {
	float: right;
	width: 27px;
	height: 28px;
	display: block;
	background: no-repeat left url(../../assets/img/icn_modalclose.png);
	margin-top: 7px;
}

a.p-open-store-detail {
	font-size: 12px;
	background-color: white;
	text-align: center;
	align-content: center;
	font-weight: normal;
	padding: 3px 8px;
}

a.p-open-store-detail::after {
	display: inline-block;
	width: 10px;
	height: 11px;
	background: no-repeat left url(../../assets/img/icon_window.png);
	padding-left: 16px;
	margin-left: 5px;
	content: '';
}

.p-popup-content__heading .p-popup-content-item__wrapper a {
	text-decoration: none;
	color: #000;
	font-size: 8px;
}

.p-pop-store-detail__header h1 {
	font-size: 18px;
	vertical-align: middle;
	width: 100%;
	max-width: 1376px;
	margin: 0 auto;
	padding: 0 10px;
}

.p-pop-store-detail__header2 {
	width: 100%;
	background-color: #383642;
	color: #ffffff;
	height: 24px;
	line-height: 24px;
	padding: 0 20px;
}

.p-popup-content {
	margin: 20px;
	padding: 20px 10px;
}

.p-popup-content-storedetail__wrapper {
	display: flex;
}

.p-popup-content-storedetail__wrapper .p-popup-content-phonenum__value {
	align-content: center;
	font-size: 1rem;
	width: 267px;
	text-align: center;
}

.p-popup-content-storedetail__wrapper .p-popup-content-bussinesshour__value {
	padding: 0 36px 0 0;
	align-content: center;
	font-size: 1rem;
}

.p-popup-content__heading {
	/* position: relative; */
	font-size: 18px;
	text-align: left;
	/* background-color: #f4f7fa; */
	padding: 9px 5px;
	height: auto;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	/* border: 1px solid #ccc; */
}

.p-popup-content-item__wrapper {
	border: 1px solid #ccc;
	font-size: 18px;
	text-align: left;
	margin-bottom: 10px;
	height: auto;
	display: flex;
}

.p-popup-content-item__header {
	width: 67px;
	text-align: center;
	background-color: #f4f7fa;
	font-size: 14px;
	margin-right: 8px;
	align-content: center;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

.p-popup-content__value {
	background-color: none;
	width: auto;
	align-content: center;
	font-size: 1rem;
}

.p-popup-content__service-icon {
	display: grid;
	grid-template-columns: 1fr 7fr;
}

.p-popup-content-servicon__value {
	border: 0;
}

.p-popup-content-servicon__label {
	background-color: #f4f7fa;
	padding: 16px 8px;
	border-right: 1px solid #ccc;
	font-size: 14px;
	align-content: center;
}

.p-popup-content-map__label {
	background-color: #f4f7fa;
	border: 1px solid #ddd;
	padding: 16px 8px;
}

.p-popup-content-map__container{
	padding: 16px;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
	justify-items: center;

}

@media (max-width: 1024px) {
	.p-popup-content-storedetail__wrapper .p-popup-content-phonenum__value {
		width: 112px;
		padding: 0;
	}
}

@media (max-width: 768px) {
	.p-header-wrapper {
		text-align: center;
	}

	.p-popup-content-item__wrapper {
		border: none;
		font-size: 18px;
		text-align: left;
		margin-bottom: 10px;
		height: auto;
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	a.p-open-store-detail {
		font-size: 12px;
		background-color: white;
		text-align: right;
		align-content: center;
		font-weight: normal;
		padding: 3px 8px;
	}
	
	/* メディアクエリ内でも sp-only/pc-only を確実に適用 */
	a.p-open-store-detail.sp-only {
		display: none !important;
	}
	
	a.p-open-store-detail.pc-only {
		display: inline-block !important;
	}

	.p-popup-content-storedetail__wrapper {
		flex-direction: column;
	}

	.p-popup-content__service-icon {
		grid-template-columns: 1fr;
	}

	.p-popup-content-servicon__label {
		margin-top: 12px;
		background-color: #ffffff;
		border: none;
		padding: 0;
		font-weight: bold;
	}

	.p-popup-content-servicon__value {
		border-bottom: none;
		border-left: none;
		border-right: none;
		border-top: 4px solid #e7e7e7;
		padding: 8px 0 24px 0;
	}

	.p-popup-content-item__header {
		width: 100%;
		margin-top: 12px;
		background-color: #ffffff;
		border: none;
		padding: 0;
		font-weight: bold;
		text-align: left;
	}

	.p-popup-content-storedetail__wrapper .p-popup-content-phonenum__value {
		align-content: center;
		font-size: 14px;
		width: 100%;
		text-align: left;
		border-top: 4px solid #e7e7e7;
		padding: 8px 0 24px 0;
	}

	.p-popup-content-storedetail__wrapper .p-popup-content-bussinesshour__value {
		align-content: center;
		font-size: 14px;
		width: 100%;
		text-align: left;
		border-top: 4px solid #e7e7e7;
		padding: 8px 0 24px 0;
	}

	.p-popup-content__value {
		align-content: center;
		font-size: 14px;
		width: 100%;
		text-align: left;
		border-top: 4px solid #e7e7e7;
		padding: 8px 0 24px 0;
	}

	.p-popup-content-map__label {
		background-color: #ffffff;
		border: none;
		padding: 0;
		font-weight: bold;
		border-bottom: 4px solid #e7e7e7;

	}

	.p-popup-content-map__btn {
		background-color: #f6f6f6;
		padding: 8px 16px;
		border: 1px solid #ddd;
		border-radius: 8px;
		width: 100%;
		text-decoration: underline;
	}

	.p-popup-content-map__container{
	padding: 16px;
	border: none;
}

	/* ネストしたメディアクエリで確実に表示制御 */
	@media (min-width: 426px) {
		a.p-open-store-detail.sp-only {
			display: none !important;
		}
	}
	
	@media (max-width: 425px) {
		a.p-open-store-detail.pc-only {
			display: none !important;
		}
		a.p-open-store-detail.sp-only {
			display: inline-block !important;
		}
	}
}

/* end of pop store detail */

.p-store-detail {
	margin-bottom: 32px;
}

.p-store-detail__loading {
	text-align: center;
	padding: 32px;
	color: #666;
}

.p-store-detail__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e0e0e0;
}

.p-store-detail__name {
	font-size: 1.5rem;
	font-weight: bold;
	color: #333;
	margin: 0;
}

.p-store-detail__tel {
	font-size: 1.25rem;
	font-weight: bold;
	color: #0066cc;
	margin: 0;
}

.p-store-detail__info {
	margin-bottom: 24px;
}

.p-store-detail__info-item {
	margin-bottom: 16px;
}

.p-store-detail__info-label {
	font-weight: bold;
	margin-bottom: 4px;
}

.p-store-detail__info-value {
	line-height: 1.6;
}

.p-store-detail__service-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
	margin-bottom: 24px;
}


.p-store-detail__notice {
	margin-top: 24px;
	padding: 16px;
	background-color: #f8f8f8;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.p-store-detail__notice-title {
	font-weight: bold;
	margin-bottom: 8px;
}

.p-store-detail__notice-text {
	font-size: 1rem;
	line-height: 1.6;
}

.p-store-info {
	margin-bottom: 32px;
}

.p-store-info__table {
	width: 100%;
	border-collapse: collapse;
}

.p-store-info__table th,
.p-store-info__table td {
	padding: 12px 16px;
	border: 1px solid #e0e0e0;
	line-height: 1.6;
}

.p-store-info__table th {
	width: 25%;
	background-color: #f8f8f8;
	font-weight: bold;
	text-align: left;
}

.p-store-map {
	margin-bottom: 32px;
}

.p-store-map__placeholder {
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f8f8f8;
	color: #666;
}

.p-store-events {
	margin-bottom: 16px;
}

.p-store-events__item {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e0e0e0;
}

.p-store-events__item:last-child {
	border-bottom: none;
}

.p-store-events__title {
	font-weight: bold;
	margin-bottom: 8px;
}

.p-store-events__date {
	font-size: 1rem;
	color: #666;
	margin-bottom: 8px;
}

.p-store-events__link {
	display: inline-block;
	margin-top: 8px;
	color: #0066cc;
	text-decoration: none;
}

.p-store-events__link:hover {
	text-decoration: underline;
}

.p-store-events__empty,
.p-store-notices__empty {
	color: #666;
	font-size: 1rem;
}

.p-store-notices__item {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e0e0e0;
}

.p-store-notices__item:last-child {
	border-bottom: none;
}

.p-store-notices__title {
	font-weight: bold;
	margin-bottom: 8px;
}

.p-store-notices__date {
	font-size: 1rem;
	color: #666;
	margin-bottom: 8px;
}

.p-store-filter {
	margin-bottom: 24px;
}

.p-store-filter__group {
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 8px;
	margin-bottom: 8px;
}

.p-store-filter__group-label {
	margin-bottom: 0.5rem;
	font-size: 1rem;
	color: #333;
}

.p-store-sidebar-section {
	margin-bottom: 24px;
	/* border: 1px solid #ddd; */
}

.p-store-sidebar-heading {
	background-color: #f4f7fa;
	color: #000;
	padding: 1.5rem;
	margin: 0;
	font-size: 1.5rem;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	border: none;
	width: 100%;
	text-align: center;
	border-radius: 8px;
}

.p-store-sidebar-heading[hidden] {
	display: none !important;
}

.p-store-sidebar-heading > span {
	position: relative;
	padding-left: 1.5rem;
	width: 100%;
}

.p-store-sidebar-heading > span::before {
	content: "";
    width: 1rem;
    height: 2px;
    background-color: #ee2723;
    border-radius: 2px;
    position: absolute;
    top: 0.7em;
    left: 0;
}

.p-store-sidebar-content {
	/* padding: 0 16px 16px; */
}

/* ボタンスタイル */
.p-store-filter__button {
	width: 100%;
	background-color: #f4f7fa;
	padding: 12px 16px;
	/* border: 1px solid #1d2129; */
	margin-bottom: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1rem;
	text-align: left;
	font-family: inherit;
	border: 1px solid #9ea6b2 !important;
}

.p-store-filter__button--round {
	border-radius: 8px !important;
	/* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.p-store-filter__button:hover {
	background-color: #db0012;
	color: #fff;
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); */
	/* transform: translateY(-1px); */
}

.p-store-filter__button:active {
	/* transform: translateY(1px); */
	/* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.p-store-filter__button-text {
	margin: 0;
	font-weight: 500;
	font-size: 1rem;
}

.p-store-filter__button-icon {
	color: #db0012;
	margin-left: 8px;
	font-size: 1.25rem;
}

.p-store-filter__button:hover .p-store-filter__button-icon {
    color: #fff; /* ホバー時にアイコンの色を白に変更 */
}

.p-store-filter__form {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* .p-store-filter__item {
	margin-bottom: 8px;
	border-bottom: 1px solid #eee;
	padding-bottom: 8px;
} */

.p-store-filter__label {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.p-store-filter__checkbox {
	margin-right: 8px;
}

.p-store-filter__icon {
	display: inline-block;
	padding: 8px 16px;
	font-size: 1rem;
	text-align: center;
	min-width: 80px;
	margin-left: 8px;
}

.p-store-filter__icon--av {
	background-color: #0033a0;
	color: #fff;
}

.p-store-filter__icon--pc {
	background-color: #0066cc;
	color: #fff;
}

.p-store-filter__icon--kaden {
	background-color: #0066cc;
	color: #fff;
}

.p-store-filter__icon--iphone {
	background-color: #e60012;
	color: #fff;
}

.p-store-filter__icon--heater {
	background-color: #ffcc00;
	color: #333;
}

.p-store-filter__buttons {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}

.p-store-filter__button {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s;
}

.p-store-filter__button--apply {
	background-color: #0066cc;
	color: #fff;
}

.p-store-filter__button--apply:hover {
	background-color: #0055aa;
}

.p-store-filter__button--clear {
	background-color: #f0f0f0;
	color: #333;
}

.p-store-filter__button--clear:hover {
	background-color: #e0e0e0;
}

/* 都道府県の店舗ヘッダー */
.p-store-prefecture-header {
	background-color: #f4f7fa;
	padding: 1.5rem;
	margin-bottom: 16px;
	text-align: center;
}

.p-store-prefecture-header[hidden] {
	display: none !important;
}

.p-store-prefecture-header__title > span {
	font-size: 1.5rem;
	font-weight: bold;
	position: relative;
	padding-left: 1.5rem;
}

.p-store-prefecture-header__title > span::before {
	content: "";
    width: 1rem;
    height: 2px;
    background-color: #ee2723;
    border-radius: 2px;
    position: absolute;
    top: 0.7em;
    left: 0;
}

/* 現在の表示条件 */
.p-store-current-filter {
	border: 1px solid #9ea6b2;
	padding: 8px 16px;
	margin-bottom: 16px;
	border-radius: 4px;
}

.p-store-current-filter__text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
}

.p-store-filter-result {
	margin-bottom: 16px;
	/* padding: 8px 16px; */
	/* background-color: #f8f8f8; */
	border-radius: 4px;
}

.p-store-filter-result__text {
	margin: 0;
	font-size: 1rem;
}

/* 都道府県選択のスタイル */
.p-store-prefecture {
	margin-bottom: 24px;
}

.p-store-prefecture__region {
	margin-bottom: 16px;
}

.p-store-prefecture__region-title {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 8px;
	padding-bottom: 4px;
	border-bottom: 1px solid #e0e0e0;
}

.p-store-prefecture__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.p-store-prefecture__item {
	margin-bottom: 8px;
}

.p-store-prefecture__link {
	display: inline-block;
	padding: 4px 8px;
	font-size: 1rem;
	color: #0066cc;
	text-decoration: none;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.p-store-prefecture__link:hover {
	background-color: #f0f0f0;
}

.p-store-prefecture__link.active {
	background-color: #0066cc;
	color: #fff;
	border-color: #0066cc;
}

/* 店舗一覧のスタイル */
.p-store-list__city-header {
	margin: 24px 0 8px;
	padding: 8px 16px;
	/* background-color: #f0f0f0; */
	border-left: 8px solid #db0012;
	font-size: 1.25rem;
	font-weight: bold;
	border-bottom: 1.5px solid #9ea6b2;
}

.p-store-list__city-stores {
	margin-bottom: 24px;
}

.p-store-list__container {
	/* display: flex; */
}

.p-store-list__item {
	margin-bottom: 16px;
	padding: 16px;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.p-store-list__left {
	flex: 1 1 40%;
	min-width: 200px;
	border-right: 1px solid #9ea6b2;
}

.p-store-list__right {
	flex: 1 1 50%;
	min-width: 300px;
	/* display: flex; */
	/* direction: row; */
	/* flex-wrap: wrap;
	gap: 0.5rem;
	border: 1px solid #ddd;
	padding: 8px;
	border-radius: 4px;
	align-self: flex-start;
	height: auto; */
}

.p-store-list__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}


/* .p-store-list__name {
	margin: 0;
	font-size: 1.125rem;
	font-weight: bold;
} */

/* .p-store-list__tel {
	margin: 0;
	font-size: 0.875rem;
} */

/* .p-store-list__hours {
	margin: 0 0 8px;
	font-size: 0.875rem;
} */

.p-store-list__service-icons {
	display: flex;
	flex-wrap: wrap;
	/* gap: 8px; */
	width: 100%;

	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	/* border: 1px solid #9ea6b2; */
	/* padding: 8px; */
	/* border-radius: 4px; */
	align-self: flex-start;
	height: auto;
	/* margin-bottom: 8px; */
}

.p-store-list__icon {
	padding: 8px;
	font-size: 1rem;
	color: #fff;
	flex: 0 0 calc((100% - 8px * 4) / 5);
	box-sizing: border-box;
	height: 40px !important;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: normal;
	word-break: break-word;
	overflow: visible;
	line-height: 1.2;
}

.p-store-list__icon--grayed {
	background-color: #d7d5d6;
}

.p-store-list__icon--av {
	background-color: #638fd0;
}

.p-store-list__icon--ipad {
	background-color: #000000;
}

/* .p-store-list__icon--kaden {
	background-color: #2ecc71;
} */

.p-store-list__icon--iphone {
	background-color: #ff3031;
}

.p-store-list__icon--heater {
	background-color: #f58c02;
}

.p-store-list__new-flag {
	background-color: #ee2723;
	color: white;
	padding: 4px;
	font-size: 8px;
	text-decoration: none !important;
	margin-left: 16px;
	vertical-align: middle;
}

.p-store-list__iphone-management {
	display: flex;
	border: 1px solid #9ea6b2;
	/* max-width: 360px; */
	border-radius: 4px;
	/* margin-left: auto; */
	margin-top: 8px;
	width: 100%;
	overflow: hidden;
}

.p-store-list__iphone-label {
	padding: 8px;
	background-color: #f4f7fa;
	border-right: 1px solid #9ea6b2;
}

.p-store-list__iphone-link {
	padding: 8px;
	text-align: center;
	text-decoration: underline;
}

/* Desktop-only: 店舗詳細ページのiPhoneリンクのパディングを調整 */
@media (min-width: 769px) {
	.p-store-info__value .p-store-list__iphone-link {
		padding: 8px 0;
		text-align: left;
	}
}

/* .p-store-list__notice {
	margin: 8px 0;
	padding: 8px;
	background-color: #f8f8f8;
	border-radius: 4px;
	font-size: 0.875rem;
}

.p-store-list__notice-title {
	margin: 0 0 4px;
	font-weight: bold;
	font-size: 0.875rem;
}

.p-store-list__notice-text {
	margin: 0;
	font-size: 0.875rem;
} */

/* チェックボックスのサイズ調整 */
.p-store-filter__checkbox {
	width: 16px;
	height: 16px;
	margin-right: 6px;
	transform: scale(1.0);
}

.p-store-list__link {
	display: inline-block;
	margin-top: 8px;
	padding: 4px 16px;
	background-color: #333;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 1rem;
}

.p-store-list__empty {
	padding: 32px;
	text-align: center;
	font-size: 1rem;
	color: #666;
}

@media (max-width: 768px) {
	.p-store-list__container {
		position: relative;
		border: 1px solid #ddd;
		margin-bottom: 10px;
		border-radius: 8px;
		overflow: hidden;
	}

	.p-store-list__name {
		position: relative;
		padding: 15px;
		margin: 0;
		background-color: #f8f9fa;
		border-bottom: 1px solid #eee;
		cursor: pointer;
	}

	.p-store-list__mobile-toggle {
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		background: none;
		border: none;
		font-size: 20px;
		cursor: pointer;
		padding: 5px;
		line-height: 1;
		color: #666;
	}

	.p-store-list__iphone-management {
		display: flex;
		flex-direction: column;
		max-width: 100%;
		margin: 16px 0 0 0;
		font-size: 14px;
		padding: 0;
		border: 1px solid #9ea6b2;
		border-radius: 4px;
		overflow: hidden;
	}
	
	.p-store-list__iphone-label {
		flex: 0 0 auto;
		padding: 8px;
		border-right: none;
		border-bottom: 1px solid #9ea6b2;
	}
	
	.p-store-list__iphone-link {
		padding: 8px 16px;
		text-align: left;
	}

	/* 店舗詳細ページ: 左右のpaddingを削除 */
	.p-store-info__value .p-store-list__iphone-link {
		padding: 8px 0;
	}

	.p-store-list__toggle-icon {
		display: inline-block;
		transition: transform 0.3s ease;
	}

	.p-store-list__container--expanded .p-store-list__toggle-icon {
		transform: rotate(180deg);
	}

	.p-store-list__collapsible-content {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease-out;
	}

	.p-store-list__container--expanded .p-store-list__collapsible-content {
		max-height: none;
		overflow: visible;
		transition: max-height 0.3s ease-in;
	}

	.p-store-list__collapsible-content .p-store-list__name {
		display: none;
	}

	.p-store-list__item {
		padding: 15px;
		border-bottom: none;
	}

	.p-store-list__left {
		border-right: none;
	}

	.p-store-list__notice {
		display: flex;
		flex-direction: column;
		padding: 0;
		margin: 16px;
		background-color: #fff;
		border: 1px solid #9ea6b2;
		border-radius: 4px;
		overflow: hidden;
	}
	
	.p-store-list__notice-left {
		flex: 0 0 auto;
		padding: 8px;
		border-right: none;
		border-bottom: 1px solid #9ea6b2;
	}
	
	.p-store-list__notice-right {
		padding: 16px;
	}

	.p-store-list__icon {
		flex: 0 0 calc((100% - 8px * 3) / 4);
		font-size: 0.65rem;
		height: auto;
		padding: 6px;
		line-height: 1.4;
		word-break: break-word;
		white-space: normal;
	}
}

@media (min-width: 769px) {
	.p-store-list__mobile-toggle {
		display: none;
	}

	.p-store-list__collapsible-content {
		max-height: none;
		overflow: visible;
	}

	.p-store-list__collapsible-content .p-store-list__name {
		display: none;
	}
}

/* タイトルの都道府県名 */
.c-pagetitle__head {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.c-pagetitle__prefecture {
	font-size: 2rem;
	font-weight: bold;
	color: #333;
	margin-left: 10px;
	display: inline-block;
}

/* パンくずリストの都道府県名 */
.c-breadcrumb__item {
	display: flex;
	align-items: center;
}

.c-breadcrumb__prefecture {
	font-size: 1rem;
	margin-left: 8px;
	font-weight: bold;
	color: #333;
}

/* レスポンシブデザイン - 共通 */
@media (max-width: 768px) {
	.p-store-container {
		flex-direction: column;
	}

	.p-store-sidebar,
	.p-search__sidebar {
		width: 100%;
	}

	.p-store-form-input {
		flex-direction: column;
	}

	.p-store-input {
		border-radius: 4px;
		margin-bottom: 10px;
	}

	.p-store-button {
		width: 100%;
	}

	.p-store-table th,
	.p-store-table td {
		padding: 8px 5px;
		font-size: 14px;
	}
}

/* 最強の特殊度でsp-only/pc-onlyを確実に制御 */
/* body a.p-open-store-detail.sp-only {
	display: none !important;
}

body a.p-open-store-detail.pc-only {
	display: inline-block !important;
} */

@media (max-width: 425px) {
	body a.p-open-store-detail.pc-only {
		display: none !important;
	}
	body a.p-open-store-detail.sp-only {
		display: inline-block !important;
	}
}

/* ポップアップヘッダー内のボタンの調整 */
.p-popup-content__heading .u-mt32-pc,
.p-popup-content__heading .u-mt24-sp {
	margin-top: 0 !important;
}

.p-popup-content__heading .c-button {
	margin: 0;
}

/* モバイル時のポップアップヘッダーレイアウト調整 */
@media (max-width: 768px) {
	.p-popup-content__heading {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	
	.p-popup-content__heading .u-mt32-pc,
	.p-popup-content__heading .u-mt24-sp {
		width: 100%;
	}
	
	.p-popup-content__heading .c-button {
		width: 100%;
		justify-content: center;
	}
}

/* 店舗情報・イベント情報ページのボタンスタイル調整 */
@media screen and (max-width: 767px) {
	.p-infolink .p-store-link__wrapper > div {
		width: 100%;
	}
	
	.p-infolink .c-button.-arrow {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding-left: 2.8125rem;
		padding-right: 2.8125rem;
	}
}

/* イベント情報の表示スタイル */
.event-item a {
	display: inline;
}

.event-date::after {
	content: '　';
}

@media (max-width: 768px) {
	.event-item a {
		display: block;
	}
	
	.event-date {
		display: block;
	}
	
	.event-date::after {
		content: '';
	}
	
	.event-name {
		display: block;
	}
}
