@charset "utf-8";

/**************************************************
 共通
**************************************************/

/* 全般 */
:root {
	--site-width: 1920px;
	--content-width: 1200px;
	--thema-color: #006dd1;
	--shop-open-text: '開店！';
	--shop-close-text: '閉店';
}

html {
	font-family: 'メイリオ', 'MS Pゴシック', 'Arial', sans-serif;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	height: 100vh;
	color: #333;
	background: #f9f6f0;
}

#wrap {
	display: flex;
	flex-direction: column;
	max-width: 100%;
	width: var(--site-width);
	min-height: 100vh;
	margin: 0 auto;
	background: repeating-linear-gradient(-45deg, #f9f6f0, #f9f6f0 50px, #fcfbf8 50px, #fcfbf8 100px);
}

#content {
	flex-grow: 1;
	max-width: 100%;
	margin: 0 auto;
}

/* コンテナ */
.container {
	margin: 0 auto;
	max-width: 100%;
	width: var(--content-width);
}

.container-fluid {
	margin: 0 auto;
	max-width: 100%;
	width: var(--site-width);
}

.page-back-container {
	margin: .5rem 0;
	text-align: center;
}

/* トップボタン */
#top-button {
	position: fixed;
	bottom: 30px;
	right: 30px;
	padding: 22px 0;
	width: 70px;
	height: 70px;
	font-size: 1rem;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(to bottom, #0056a6, #006dd1);
	border: 2px solid #ddd;
	border-radius: 50%;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	transform: translateY(100px);
	transition: all .5s;
	z-index: 100;
}
#top-button.show {
	visibility: visible;
	transform: translateY(0);
	opacity: 1;
}

/* 四角ボタン */
.square-button {
	position: relative;
	display: flex;
	justify-content: center;
	z-index: 1;
}
.square-button > a,
.square-button > button {
	position: relative;
	display: inline-block;
	margin: 5px;
	padding: .5rem 2rem;
	max-width: 300px;
	width: 100%;
	font-size: 1rem;
	color: #fff;
	background-color: #333;
	border: 1px solid #333;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.2s;
}
.square-button > a:hover,
.square-button > button:hover {
	color: #333;
	background-color: #fff;
}
.square-button > a::after,
.square-button > button::after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #000;
	box-sizing: border-box;
	z-index: -1;
	transition: all 0.2s;
}
.square-button > a:hover::after,
.square-button > button:hover::after {
	top: 0;
	left: 0;
}

/* 丸ボタン */
.circle-button {
	position: relative;
	display: flex;
	justify-content: center;
	z-index: 1;
}
.circle-button > a,
.circle-button > button {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
	width: 3em;
	height: 3em;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
}
.circle-button > a::before,
.circle-button > button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #333;
	border: 1px solid #333;
	border-radius: 50%;
	box-sizing: border-box;
	z-index: -1;
	transition: all 0.2s;
}
.circle-button > a::after,
.circle-button > button::after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #000;
	border-radius: 50%;
	box-sizing: border-box;
	z-index: -2;
	transition: all 0.2s;
}
.circle-button > a:hover,
.circle-button > button:hover {
	color: #333;
}
.circle-button > a:hover::before,
.circle-button > button:hover::before {
	background-color: #fff;
}
.circle-button > a:hover::after,
.circle-button > button:hover::after {
	top: 0;
	left: 0;
}

.back-button {
	position: relative;
	padding: 0 0 5px 0;
	z-index: 1;
}
.back-button > a {
	position: relative;
	display: inline-block;
	padding: .5rem 1.5rem .5rem 2.75rem;
	font-weight: bold;
	color: var(--thema-color);
	background: #fff;
	border: 2px solid var(--thema-color);
	border-radius: 2rem;
	text-decoration: none;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.2s;
}
.back-button > a:hover {
	color: #fff;
	background: var(--thema-color);
}
.back-button a::before {
	content: '≪';
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}
.back-button > a::after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 100%;
	height: 100%;
	background: var(--thema-color);
	border-radius: 2rem;
	box-sizing: border-box;
	z-index: -1;
	transition: all 0.2s;
}
.back-button > a:hover::after {
	top: 0;
	left: 0;
}

/* ページネーション */
.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	margin: 0;
	padding: 0;
	list-style: none;
}
.pagination .page-item {
	margin: .25rem .1rem;
}
.pagination .page-item .page-link {
	display: block;
	padding: .375rem .75rem;
	font-weight: bold;
	color: var(--thema-color);
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 2rem;
	text-decoration: none;
	transition: all 0.2s;
}
.pagination .page-item:not(:first-child) .page-link {
	margin-left: -1px;
}
.pagination .page-item .page-link:hover {
	background: #ddd;
	border-color: #ccc;
}
.pagination .page-item.active .page-link {
	color: #fff;
	background-color: var(--thema-color);
	border-color: var(--thema-color);
}

/* スライダー */
.swiper-container {
	--swiper-pagination-color: #000;
	--swiper-pagination-bottom: 0;
	--swiper-pagination-bullet-size: 10px;
	--swiper-navigation-size: 3rem;
	--swiper-navigation-sides-offset: 2rem;
	position: relative;
	padding-bottom: calc(var(--swiper-pagination-bullet-size) + 10px);
}
.swiper-wrapper {
	width: fit-content;
	margin: 0px auto;
}
.swiper-slide {
	height: auto;
}
.swiper-slide img {
	width: 100%;
	height: auto;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	pointer-events: auto;
}
.swiper-button-prev::after,
.swiper-button-next::after {
	content: '';
}
.swiper-button-prev img,
.swiper-button-next img {
	width: 3rem;
	height: auto;
}

/* セクション見出し */
.section-headline {
	margin: 0;
	padding: 1rem 0;
	color: var(--thema-color);
	text-align: center;
	word-break: break-all;
}
.section-headline-title {
	margin: .25rem 0;
	font-size: 1rem;
	font-weight: normal;
}
.section-headline-title img {
	max-width: 100%;
	width: auto;
	height: 30px;
}
.section-headline-subtitle {
	margin: .25rem 0;
	font-size: 1rem;
	font-weight: normal;
}
.section-headline-subtitle > span {
	padding: 0 1rem;
}
.section-headline-subtitle > span::before {
	content: "/";
	position: relative;
	left: -0.5rem;
}
.section-headline-subtitle > span::after {
	content: "/";
	position: relative;
	right: -0.5rem;
}

/* 検索ボックス */
.search-box-wrapper {
	position: relative;
	display: flex;
	padding: 10px;
	background-color: #ccc;
	background-image: url(/assets/img/common/bg_search_box.png);
	border-radius: 5px;
}
.search-box-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: 100%;
}
.search-box-headline {
	margin: .5rem 0;
	text-align: center;
}
.search-box-headline img {
	max-width: 100%;
	width: auto;
	height: 2rem;
}
.search-box-headline-text {
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	-webkit-text-stroke: 1px #000;
	text-stroke: 1px #000;
	text-shadow: 2px 3px #000;
}
.search-box-form-item-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	margin: .5rem 0;
	max-width: 100%;
}
.search-box-form {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
}
.search-box-form-item {
	display: flex;
	flex-wrap: nowrap;
	max-width: 100%;
	width: calc(var(--content-width) / 2);
}
.search-box-form-item-label {
	margin: 0 .25rem 0 0;
	padding: .2rem .25rem;
	width: 8rem;
	font-size: .8em;
	color: #fff;
	background: rgba(0, 0, 0, 0.75);
	border-radius: 1rem;
	text-align: center;
}
.search-box-form-item-input {
	width: 100%;
}
select.search-box-form-item-input {
	padding: 0 3px;
	font-size: 1rem;
	color: #444;
	border: 1px solid #aaa;
	border-radius: 1rem;
}
select.search-box-form-item-input optgroup,
.search-box-form-item-input .ms-drop li.group {
	background: #ccc;
}
select.search-box-form-item-input option {
	background: #fff;
}
select.search-box-form-item-input:has(option:checked[value=""]),
select.search-box-form-item-input option[value=""] {
	color: #999;
}
select.search-box-form-item-input optgroup,
select.search-box-form-item-input option:not([value=""]) {
	color: #444;
}
.search-box-form-item-input[type="text"] {
	padding: 0 8px;
	font-size: 1rem;
	color: #444;
	border: 1px solid #aaa;
	border-radius: 1rem;
}
.search-box-form-item-input[type="text"]::placeholder {
	color: #999;
	opacity: 1;
}
.search-box-form-item-input[type="text"]:focus {
	outline: none;
}
.search-box-form-item-input .ms-choice {
	font-size: 1rem;
	border-radius: 1rem;
}
.search-box-form-item-input .ms-choice>span {
	right: 36px;
}
.search-box-form-item-input .ms-drop ul>li.group {
	background: #ccc;
}

/* ニュース */
.news-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 15px;
	margin: 1rem auto;
}
.news-list-item-none {
	margin: 1rem;
}
.news-list-item {
	display: flex;
	flex-wrap: nowrap;
	align-items: start;
	max-width: 100%;
	width: 390px;
	color: inherit;
	background: #fff;
	text-decoration: none;
	border: 1px solid #000;
	border-radius: 5px;
	box-sizing: border-box;
	transition: all 0.2s;
}
.news-list-item:hover {
	background: #eee;
}
.news-list-item-thumbnail {
	padding: .25rem;
	width: 50%;
	height: 100%;
}
.news-list-item-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}
.news-list-item-info {
	display: flex;
	flex-direction: column;
	padding: .25rem;
	width: 50%;
	height: 100%;
}
.news-list-item-category {
	margin: 0 0 .25rem 0;
	padding: 0 .5rem;
	width: fit-content;
	font-size: 12px;
	border-radius: 5px;
	word-break: break-all;
}
.news-list-item-taxonomy {
	margin: 0 0 .25rem 0;
	padding: 0 .5rem;
	width: fit-content;
	font-size: 12px;
	color: #888;
	border: 1px solid #888;
	border-radius: 5px;
	word-break: break-all;
}
.news-list-item-title {
	display: -webkit-box;
	margin: 0 0 .25rem 0;
	font-size: 14px;
	line-height: 1.2;
	word-break: break-all;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.news-list-item-date {
	margin: 0 0 .25rem 0;
	font-size: 12px;
	color: #888;
}
.news-list-item-shop {
	margin: 0 0 .25rem 0;
	font-size: 12px;
}
.news-list-item-button {
	margin: auto .25rem 0 0;
	text-align: end;
	transition: all 0.2s;
}
.news-list-item:hover .news-list-item-button {
	margin: auto 0 0 0;
}

/* 商品 */
.product-list-item-wrapper {
	height: 100%;
	padding: 0 0 5px 0;
}
.product-list-none {
	margin: 2rem 1rem;
	text-align: center;
}
.product-list-item {
	display: flex;
	flex-direction: column;
	padding: 10px;
	max-width: 500px;
	width: 100%;
	height: 100%;
	color: #333;
	background: #fff;
	border: 1px solid #888;
	box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
	border-radius: 5px;
}
.product-list-item-box {
	display: flex;
	align-items: start;
	margin: 0 0 5px 0;
	font-size: 12px;
}
.product-list-item-box-name {
	display: inline-block;
	margin: 0 .25rem 0 0;
	padding: 0 .5rem;
	min-width: 4rem;
	color: #fff;
	background: var(--thema-color);
	border-radius: 5px;
	text-align: center;
}
.product-list-item-box-content {
	flex: 1;
	word-break: break-all;
}
.product-list-item-image {
	display: flex;
	justify-content: center;
	align-items: start;
	flex: 1;
	margin: 0 0 5px 0;
}
.product-list-item-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 5px;
}
.product-list-item-taxonomy {
	margin: 0 0 5px 0;
	padding: 0 .25rem;
	width: fit-content;
	font-size: 12px;
	color: #888;
	border: 1px solid #888;
	border-radius: 5px;
	word-break: break-all;
}
.product-list-item-name {
	margin: 0 0 5px 0;
	padding: 0 0 5px 0;
	font-size: 14px;
	line-height: 1.2;
	border-bottom: dotted 2px #000000;
	word-break: break-all;
}
.product-list-item-price-text {
	line-height: 1.2;
	word-break: break-all;
	white-space: pre-wrap;
}

/* 一覧検索結果 */
.list-search-result-headline {
	margin: .5rem;
	font-size: 1.5rem;
	color: var(--thema-color);
	text-align: center;
}
.list-search-result-page {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: .5rem;
}
.list-search-result-paginate {
	margin: .25rem;
}
.list-search-result-info {
	margin: .25rem .25rem .25rem auto;
}

/**************************************************
 ヘッダー
**************************************************/

/* ヘッダー */
#header {
	position: sticky;
	top: 0;
	margin: 0 auto 10px auto;
	padding: .5rem;
	max-width: calc(var(--content-width) + 400px);
	width: 100%;
	background: linear-gradient(to bottom, #0056a6, #006dd1);
	border-radius: 0 0 15px 15px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.5);
	z-index: 1000;
}
/* PC用ヘッダー */
#header-pc {
	display: block;
}
.header-wrapper {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: .5rem;
	max-width: var(--content-width);
	width: 100%;
}
.header-logo img {
	width: auto;
	height: 60px;
}
/* ヘッダーナビ */
.header-navmenu-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	margin: 0;
}
.header-navmenu-item {
	position: relative;
	margin: .25rem .5rem;
	padding: .25rem 0;
	border-bottom: dotted 2px transparent;
	white-space: nowrap;
	word-break: keep-all;
	transition: all 0.2s;
}
.header-navmenu-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + .5rem);
}
.header-navmenu-item:hover {
	border-bottom: dotted 2px #fff;
}
.header-navmenu-item img.header-navmenu-item-icon {
	width: auto;
	height: 1rem;
}
.header-navmenu-item-name {
	position: relative;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	z-index: 2;
	transition: all 0.2s;
}
.header-navmenu-item-name:hover {
	color: #eee926;
}
/* ヘッダードロップダウン */
.header-navmenu-item .header-navmenu-dropdown {
	position: absolute;
	top: calc(100% + .5rem);
	left: 0;
	min-width: 100%;
	background: #3e3a39;
	border: solid 1px #000;
	white-space: nowrap;
	word-break: keep-all;
	transition: all 0.2s;
	opacity: 0;
	z-index: 10;
	visibility: hidden;
}
.header-navmenu-item:hover .header-navmenu-dropdown {
	opacity: 1;
	visibility: visible;
}
.header-navmenu-dropdown-list {
	padding: 0;
}
.header-navmenu-dropdown-item-headline {
	padding: .5rem;
	color: #3e3a39;
	background: #fff;
}
.header-navmenu-dropdown-item {
	margin: .5rem;
	border-bottom: dotted 2px transparent;
}
.header-navmenu-dropdown-item:hover {
	border-bottom: dotted 2px #fff;
}
.header-navmenu-dropdown-item-name {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
}
.header-navmenu-dropdown-item-name:hover {
	color: #eee926;
}
/* スマホ用ヘッダー */
#header-sp {
	display: none;
}
/* ヘッダーナビサイドバートグルボタン */
#header-navmenu-sidebar-toggle-checkbox {
	display: none;
}
#header-navmenu-sidebar-toggle {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	z-index: 2;
}
#header-navmenu-sidebar-toggle > span,
#header-navmenu-sidebar-toggle > span::before,
#header-navmenu-sidebar-toggle > span::after {
	content: '';
	position: absolute;
	display: block;
	height: 3px;
	width: 25px;
	background: #fff;
	border-radius: 3px;
	transition: all 0.2s;
}
#header-navmenu-sidebar-toggle > span::before {
	bottom: 8px;
}
#header-navmenu-sidebar-toggle > span::after {
	top: 8px;
}
#header-navmenu-sidebar-toggle-checkbox:checked ~ #header-navmenu-sidebar-toggle > span {
	background: transparent;
}
#header-navmenu-sidebar-toggle-checkbox:checked ~ #header-navmenu-sidebar-toggle > span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#header-navmenu-sidebar-toggle-checkbox:checked ~ #header-navmenu-sidebar-toggle > span::after {
	top: 0;
	transform: rotate(-45deg);
}
/* ヘッダーナビサイドバー */
#header-navmenu-sidebar {
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	background: #3e3a39;
	overflow-y: auto;
	z-index: 1;
	transition: all 0.2s;
}
#header-navmenu-sidebar-toggle-checkbox:checked ~ #header-navmenu-sidebar {
	left: 0;
}
.header-navmenu-sidebar-list {
	margin: calc(60px + 2rem) calc(60px + 1rem);
}
.header-navmenu-sidebar-item {
	border-bottom: solid 1px #fff;
}
.header-navmenu-sidebar-dropdown-toggle-checkbox {
	display: none;
}
.header-navmenu-sidebar-item-name {
	position: relative;
	display: block;
	padding: .5rem 0 .5rem 2rem;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
}
.header-navmenu-sidebar-item-name::before {
	content: "";
	position: absolute;
	left: .5rem;
	transition: all 0.2s;
}
.header-navmenu-sidebar-item-name:hover {
	color: #eee926;
}
.header-navmenu-sidebar-dropdown-toggle-checkbox ~ .header-navmenu-sidebar-item-name::before {
	content: "▼";
	transform: rotate(-90deg);
}
.header-navmenu-sidebar-dropdown-toggle-checkbox:checked ~ .header-navmenu-sidebar-item-name::before {
	transform: rotate(0deg);
}
.header-navmenu-sidebar-dropdown {
	display: grid;
	grid-template-rows: 0fr;
	margin: 0 0 0 1rem;
	transition: all 0.2s
}
.header-navmenu-sidebar-dropdown-toggle-checkbox:checked ~ .header-navmenu-sidebar-dropdown {
	grid-template-rows: 1fr;
}
.header-navmenu-sidebar-dropdown .header-navmenu-sidebar-dropdown-list {
	overflow: hidden;
}
.header-navmenu-sidebar-dropdown-item-headline {
	padding: .5rem 0 .5rem 2rem;
	color: #3e3a39;
	background: #fff;
}
.header-navmenu-sidebar-dropdown-item {
	border-top: solid 1px #fff;
}
.header-navmenu-sidebar-dropdown-item-name {
	display: block;
	padding: .5rem 0 .5rem 2rem;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
}
.header-navmenu-sidebar-dropdown-item-name:hover {
	color: #eee926;
}

/**************************************************
 フッター
**************************************************/

/* フッター */
#footer {
	max-width: var(--site-width);
	width: 100%;
	margin: 0 auto;
	padding: .5rem;
	background-color: #3e3a39;
}
/* フッター公式アカウント */
.footer-official-account {
	margin: 1rem 0;
}
.footer-official-account-headline {
	margin: .25rem 0;
	font-size: 0.8rem;
	color: #fff;
	text-align: center;
}
.footer-official-account-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-official-account-item {
	margin: 5px;
}
.footer-official-account-item img {
	width: auto;
	height: 1.5em;
}
/* フッターコピーライト */
.footer-copyright {
	margin: .2rem;
	font-size: 0.75rem;
	color: #fff;
	text-align: center;
}
.footer-copyright a {
	color: #fff;
}

/**************************************************
 トップページ
**************************************************/

/* トップバナー */
#top-banner {
	margin: 1rem auto;
}
#top-banner .swiper-wrapper {
	width: auto;
}
#top-banner .swiper-slide {
	padding: 0 10px 5px 5px;
}
#top-banner .swiper-slide a {
	display: block;
	padding: 5px;
	width: 100%;
	background: #fff;
	border: 1px solid #333;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
}

/* 検索 */
#top-search {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 10px;
	margin: 0 auto 1rem auto;
}
.search-box-wrapper#top-search-shop,
.search-box-wrapper#top-search-event {
	max-width: 100%;
	width: calc((var(--content-width) / 2) - 14px);
}
.search-box-wrapper#top-search-shop {
	background-color: var(--thema-color);
}
.search-box-wrapper#top-search-event {
	background-color: #eee926;
}

/* 新着ニュース */
#top-news {
	margin: 0 auto 1rem auto;
}
.top-news-wrapper {
	margin: 0 auto 1rem auto;
	border-top: 1px dashed var(--thema-color);
}
.top-news-headline {
	margin: 1rem 0;
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--thema-color);
	text-align: center;
}

/* トレーディングカード情報 */
#top-tcg-info {
	margin: 1rem auto;
	padding: 0;
	max-width: calc(var(--content-width) + 200px);
	width: 100%;
	background: linear-gradient(to bottom, #0056a6, #006dd1);
	border: 10px solid #29abe2;
	border-radius: 20px;
	box-sizing: border-box;
}

/* 新作情報 */
#top-new-product {
	margin: 0 auto 1rem auto;
	padding: 0 .5rem;
	color: #fff;
}
#top-new-product .section-headline {
	color: #fff;
}
#top-new-product .swiper-container {
	margin: 1rem auto;
}
.top-new-product-none {
	margin: 2rem 1rem;
	text-align: center;
}
ul.top-new-product-note {
	margin: .5rem auto;
	padding: 0 0 0 1em;
	width: fit-content;
	font-size: 12px;
	list-style: none;
}
ul.top-new-product-note li {
	margin: 0 0 .5em 0;
}
ul.top-new-product-note li:before {
	content: "※";
	margin: 0 0 0 -1em;
	padding: 0;
	font-weight: bold;
}

/* イベント情報 */
#top-event {
	margin: 0 auto 1rem auto;
	padding: 0 .5rem;
	color: #fff;
}
#top-event .section-headline {
	color: #fff;
}
.top-event-title-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 10px;
	margin: 0 auto 1rem auto;
}
.top-event-title-list-item {
	position: relative;
	width: 157px;
	text-decoration: none;
	z-index: 1;
}
.top-event-title-list-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	z-index: 2;
}
.top-event-title-list-item::after {
	content: "Check!";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	transform: translateY(-50%);
	opacity: 0;
	z-index: 3;
}
.top-event-title-list-item,
.top-event-title-list-item::before,
.top-event-title-list-item::after {
	transition: .6s cubic-bezier(0.33, 1, 0.68, 1);
}
.top-event-title-list-item:hover {
	transform: scale(0.9);
}
.top-event-title-list-item:hover::before {
	opacity: 0.7;
}
.top-event-title-list-item:hover::after {
	opacity: 1;
}

.top-event-title-list-item img {
	width: 100%;
	height: auto;
}

/* 新店舗 */
#top-new-shop {
	margin: 0 auto 1rem auto;
}
#top-new-shop .section-content {
	margin: 0 auto;
	padding: 1rem;
	background-color: #fff;
	border: 1px solid #333;
	border-radius: 5px;
	box-sizing: border-box;
}
#top-new-shop .swiper-container {
	margin: 1rem auto;
}
.new-open-shop-list-item {
	display: flex;
	flex-direction: column;
	padding: 5px;
	height: 100%;
	color: inherit;
	background: #fff;
	border: 1px solid #333;
	border-radius: 5px;
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.2s;
}
.new-open-shop-list-item:hover {
	background: #eee;
}
.new-open-shop-list-item-thumbnail {
	margin: 0 0 5px 0;
}
.new-open-shop-list-item-thumbnail img {
	width: 100%;
	height: auto;
}
.new-open-shop-list-item-open-date {
	margin: 0;
	padding: .25rem .5rem;
	font-size: 12px;
}
.new-open-shop-list-item-open-date::after {
	content: var(--shop-open-text);
	font-weight: bold;
	color: #33f;
}
.new-open-shop-list-item-shop-name {
	margin: 0;
	padding: .25rem .5rem;
	font-size: 14px;
	font-weight: bold;
	border-bottom: 1px dashed #333;
	word-break: break-all;
}
.new-open-shop-list-item-address {
	margin: 0;
	padding: .25rem .5rem;
	font-size: 12px;
	word-break: break-all;
}
.new-open-shop-list-item-button {
	margin: auto .25rem 0 0;
	text-align: end;
	transition: all 0.2s;
}
.new-open-shop-list-item:hover .new-open-shop-list-item-button {
	margin: auto 0 0 0;
}

/* 出店者募集 */
#top-recruit-vendor {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.top-recruit-vendor-bg {
	position: absolute;
	bottom: 0;
	left: 50%;
	max-width: 100%;
	max-height: 100%;
	height: auto;
	transform: translateX(-50%);
	z-index: 1;
}
.top-recruit-vendor-headline {
	margin: .5rem;
	text-align: center;
}
.top-recruit-vendor-headline img {
	width: auto;
	height: 40px;
}
.top-recruit-vendor-content {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	margin: 1rem auto;
	max-width: 100%;
	width: var(--content-width);
	z-index: 2;
}
.top-recruit-vendor-image {
	margin: .5rem;
	max-width: 100%;
	width: 300px;
}
.top-recruit-vendor-image img {
	width: 100%;
	height: auto;
}
.top-recruit-vendor-comment {
	margin: .5rem;
	max-width: 100%;
	width: 685px;
}
.top-recruit-vendor-link {
	margin: auto .5rem .5rem .5rem;
	max-width: 100%;
	width: 150px;
	font-size: 2rem;
}

/* お店の楽しみ方 */
#top-explain {
	margin: 0 auto;
	background: linear-gradient(to bottom, #0056a6, #006dd1);
}
#top-explain .section-headline {
	margin: 0;
	color: #fff;
}
.top-explain-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 10px;
	margin: 0 auto;
	padding: 0 0 1rem 0;
	max-width: var(--content-width);
	width: 100%;
}
.top-explain-wrapper {
	display: flex;
	padding: 5px;
	max-width: 100%;
	width: calc((var(--content-width) / 2) - 14px);
}
.top-explain-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 1rem;
	background: #fff;
	border-radius: 5px;
	box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
}
.top-explain-headline {
	margin: 0;
	width: 100%;
	font-size: 2em;
	color: var(--thema-color);
	text-align: center;
}
.top-explain-icon {
	margin: 1rem;
	width: 100px;
}
.top-explain-icon img {
	width: 100%;
	height: auto;
}
.top-explain-comment {
	margin: 1rem;
	max-width: 100%;
	width: 250px;
	word-break: break-all;
}
.top-explain-link {
	margin: auto 0 0 0;
	width: 100%;
	text-align: center;
}

/* タイトル一覧 */
#top-title-list {
	background: #fff;
}
#top-title-list .swiper-container {
	padding: 10px 0 10px 0;
}
#top-title-list .swiper-wrapper {
	transition-timing-function: linear;
}

/**************************************************
 ニュース一覧
**************************************************/

/* ニュース検索 */
#news-search {
	margin: 1rem 0;
}
.search-box-wrapper#news-search {
	background-color: #29abe2;
}

/* ニュース検索結果 */
#news-search-result {
	margin: .5rem 0;
}
.news-search-result-headline {
	margin: .5rem;
	font-size: 1.5rem;
	color: var(--thema-color);
	text-align: center;
}
.news-search-result-page {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: .5rem;
}
.news-search-result-paginate {
	margin: .25rem;
}
.news-search-result-info {
	margin: .25rem .25rem .25rem auto;
}

/**************************************************
 ニュース詳細
**************************************************/

/* ニュース詳細 */
#news-detail {
	margin: 1rem auto 2rem auto;
	padding: 1rem;
	max-width: 100%;
	width: var(--content-width);
	background: #fff;
}
.news-detail-class {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: center;
	margin: .5rem 0;
}
.news-detail-category {
	display: inline-block;
	margin: 0 .25rem 0 0;
	padding: .25rem 1rem;
	color: #fff;
	background: #ccc;
	border-radius: .5rem;
}
.news-detail-taxonomy {
	display: flex;
	flex-wrap: nowrap;
	justify-content: start;
	align-items: center;
	margin: 0 .25rem 0 0;
	font-size: .8rem;
	color: inherit;
}
.news-detail-taxonomy img {
	width: auto;
	height: 3rem;
}
.news-detail-title {
	margin: .5rem 0;
	font-size: 1.5rem;
	font-weight: bold;
}
.news-detail-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: .5rem 0;
	font-size: .8rem;
}
.news-detail-info-box {
	display: flex;
	flex-wrap: nowrap;
	justify-content: start;
	align-items: start;
	margin: 0 .5rem .25rem 0;
}
.news-detail-info-box-name {
	display: inline-block;
	padding: 0 .5em;
	min-width: 3rem;
	color: #fff;
	background: #555;
	border-radius: 5px;
	text-align: center;
	white-space: nowrap;
}
.news-detail-shop .news-detail-info-box-name {
	background: var(--thema-color);
}
.news-detail-info-box-content {
	padding: 0 0 0 .25rem;
	color: #888;
	word-break: keep-all;
	white-space: nowrap;
}
.news-detail-shop .news-detail-info-box-content {
	word-break: break-all;
	white-space: normal;
}
.news-detail-info-box-content a {
	color: inherit;
}
.news-detail-time {
	display: flex;
	flex-wrap: wrap;
}
.news-detail-image {
	margin: 1rem 0;
	text-align: center;
}
.news-detail-image img {
	max-width: calc(var(--content-width) / 2);
	width: 100%;
	height: auto;
}
.news-detail-content {
	margin: 1rem 0;
	max-width: 100%;
	width: 100%;
	overflow: hidden;
}
.news-detail-content img {
	max-width: 100%;
}
.news-detail-tag-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: start;
	margin: 1rem 0;
	gap: .5rem;
}
.news-detail-tag-item {
	position: relative;
	padding: .25rem .5rem .25rem 1.25rem;
	font-size: .9rem;
	color: #333;
	background: #ddd;
	border-radius: .25rem;
	word-break: break-all;
}
.news-detail-tag-item::before {
	content: '#';
	position: absolute;
	top: .25rem;
	left: .5rem;
}
.news-detail-none {
	margin: 5rem 1rem;
	text-align: center;
}
#news-detail-back {
	margin: .5rem 0;
	text-align: center;
}

/**************************************************
 店舗一覧
**************************************************/

/* 店舗検索 */
#shop-search {
	margin: 1rem 0;
}
.search-box-wrapper#shop-search {
	background-color: var(--thema-color);
}

/* 店舗検索結果 */
#shop-search-result {
	margin: .5rem 0;
}
.shop-search-result-headline {
	margin: .5rem;
	font-size: 1.5rem;
	color: var(--thema-color);
	text-align: center;
}
.shop-search-result-page {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: .5rem;
}
.shop-search-result-paginate {
	margin: .25rem;
}
.shop-search-result-info {
	margin: .25rem .25rem .25rem auto;
}
.shop-search-list {
	padding: .5rem;
	background: #fff;
	border-radius: .25rem;
}
.shop-search-list-prefecture {
	margin: .25rem 0;
	padding: .25rem 1rem;
	min-width: 4rem;
	font-size: 1.25rem;
	font-weight: bold;
	color: #fff;
	background: var(--thema-color);
	border-radius: .25rem;
}
.shop-search-list-item-none {
	margin: 1rem;
}
.shop-search-list-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: .5rem;
	padding: .5rem;
	color: inherit;
	background: #fff;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.2s;
}
.shop-search-list-item:hover {
	background: #eee;
}
.shop-search-list-item-thumbnail img {
	max-width: 100%;
	width: 200px;
	height: auto;
}
.shop-search-list-item-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.shop-search-list-item-shop-name {
	margin: 0 0 .25rem 0;
	font-size: 1rem;
	font-weight: bold;
	word-break: break-all;
}
.shop-search-list-item-address {
	margin: 0 0 .25rem 0;
	font-size: .8rem;
	color: #888;
	word-break: break-all;
}
.shop-search-list-item-shop-open-date {
	margin: 0 0 .25rem 0;
	font-size: .8rem;
	color: #333;
	word-break: break-all;
}
.shop-search-list-item-shop-open-date::after {
	content: var(--shop-open-text);
	font-weight: bold;
	color: #55f;
}
.shop-search-list-item-shop-close-date {
	margin: 0 0 .25rem 0;
	font-size: .8rem;
	color: #333;
	word-break: break-all;
}
.shop-search-list-item-shop-close-date::after {
	content: var(--shop-close-text);
	font-weight: bold;
	color: #f55;
}
.shop-search-list-item-tag-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: start;
	gap: .25rem;
}
.shop-search-list-item-tag-list-item {
	padding: .25rem;
	font-size: .75rem;
	border-radius: .25rem;
}
.shop-search-list-item-tag-list-item::before {
	content: '#';
}
.shop-search-list-item-button {
	margin: auto .25rem 0 0;
	text-align: end;
	transition: all 0.2s;
}
.shop-search-list-item:hover .shop-search-list-item-button {
	margin: auto 0 0 0;
}

/**************************************************
 店舗詳細
**************************************************/

/* 店舗ヘッダー */
#shop-detail-header {
	margin: 0 0 1rem 0;
	padding: .5rem 0;
	background: #3e3a39;
}
.shop-detail-header-image {
	margin: .5rem 0;
	width: 100%;
	height: 20vh;
	object-fit: cover;
}
.shop-detail-header-navmenu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: .5rem auto;
	padding: 0 1rem;
	max-width: 100%;
	width: fit-content;
	list-style: none;
}
.shop-detail-header-navmenu-item a {
	display: inline-block;
	padding: .25rem;
	min-width: 10rem;
	font-size: .9rem;
	font-weight: bold;
	color: #333;
	background: #fff;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: all .2s;
}
.shop-detail-header-navmenu-item a:hover {
	background: #eee;
}

/* 店舗タグ */
#shop-detail-tag-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .25rem;
	margin: 0 auto 1rem auto;
}
.shop-detail-tag-list-item {
	position: relative;
	padding: 0 .25rem 0 1rem;
	font-size: .9rem;
	border-radius: .25rem;
	word-break: break-all;
}
.shop-detail-tag-list-item::before {
	content: '#';
	position: absolute;
	left: .25rem;
}

/* 店舗タイトル */
#shop-detail-title {
	margin: 0 auto 1rem auto;
}
.shop-detail-title-shop-name {
	margin: .5rem auto;
	padding: 0 .5rem;
	width: fit-content;
	font-size: 2rem;
	font-weight: bold;
	word-break: break-all;
}
.shop-detail-title-address {
	margin: .5rem auto;
	padding: 0 .5rem;
	width: fit-content;
	color: #888;
	word-break: break-all;
}

/* 店舗セールス */
#shop-detail-sales {
	margin: 0 auto 1rem auto;
}
.shop-detail-sales-copy {
	margin: 0 auto;
	padding: .5rem;
	width: fit-content;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: .25rem;
	text-align: center;
	text-decoration: underline;
	word-break: break-all;
}
.shop-detail-sales-text {
	margin: .5rem auto;
	padding: .5rem;
	max-width: 100%;
	width: fit-content;
	border-radius: .25rem;
	overflow: hidden;
}

/* 店舗ニュース */
#shop-detail-news {
	margin: 0 auto 2rem auto;
}

/* 店舗イメージ */
#shop-detail-image {
	margin: 0 auto 1rem auto;
}

/* 店舗情報 */
#shop-detail-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	margin: 0 auto 1rem auto;
	padding: .5rem;
}
.shop-detail-info-headline {
	width: 100%;
}
.shop-detail-info-headline-title {
	margin: 0;
	padding: .25rem;
	font-size: 1.5rem;
	color: #f9f6f0;
	background: #333333;
	text-align: center;
}
.shop-detail-info-wrapper {
	max-width: 100%;
	width: calc((var(--content-width) / 2) - 0.5rem - 1.0rem); /* content-width - gap - padding */
}
.shop-detail-info-map {
	margin: 0 0 1rem 0;
}
.shop-detail-info-map iframe {
	border: 0;
	width: 100%;
	height: 30vh;
}
.shop-detail-info-account {
	margin: 0 0 1rem 0;
	text-align: center;
}
.shop-detail-info-account-headline {
	margin: .25rem 0;
	font-size: .9rem;
	font-weight: bold;
}
.shop-detail-info-account-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.shop-detail-info-account-list-item a {
	color: inherit;
}
.shop-detail-info-account-list-item img {
	width: auto;
	height: 30px;
}
.shop-detail-info-site {
	margin: 0 0 1rem 0;
	text-align: center;
}
.shop-detail-info-site-headline {
	margin: .25rem 0;
	font-size: .9rem;
	font-weight: bold;
}
.shop-detail-info-site-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .25rem;
	padding: 0;
	font-size: .8rem;
	list-style: none;
}
.shop-detail-info-site-list-item {
	position: relative;
	padding: 0;
}
.shop-detail-info-site-list-item:not(:last-child) {
	padding: 0 1rem 0 0;
}
.shop-detail-info-site-list-item:not(:last-child)::after {
	content: '/';
	position: absolute;
	right: 0.25rem;
}
.shop-detail-info-site-list-item a {
	color: inherit;
}
.shop-detail-info-item {
	display: flex;
	flex-wrap: nowrap;
	gap: .25rem;
	margin: 0 0 .5rem 0;
}
.shop-detail-info-item-headline {
	display: inline-block;
	margin: 0;
	padding: 0 .5rem;
	min-width: 10rem;
	font-size: 1rem;
	color: #f9f6f0;
	background: #333333;
	white-space: nowrap;
}
.shop-detail-info-item-content {
	flex: 1;
	word-break: break-all;
}
.shop-detail-info-holiday .shop-detail-info-item-content,
.shop-detail-info-nearest-station .shop-detail-info-item-content,
.shop-detail-info-access .shop-detail-info-item-content {
	white-space: pre-wrap;
}
.shop-detail-info-business-hours-item {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}
.shop-detail-info-business-hours-item-name {

}
.shop-detail-info-business-hours-item-name::before {
	content: '【';
}
.shop-detail-info-business-hours-item-name::after {
	content: '】';
}

/* お支払い方法 */
#shop-detail-payment {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	margin: 0 auto 1rem auto;
	padding: .5rem;
	background: #fff;
}
.shop-detail-payment-headline {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 100%;
	width: 200px;
}
.shop-detail-payment-headline-icon {
	padding: 1rem 2rem;
}
.shop-detail-payment-headline-icon img {
	width: 100%;
}
.shop-detail-payment-headline-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: bold;
	color: #006dd1;
}
.shop-detail-payment-content {

}
.shop-detail-payment-group {
	margin: 0 0 .25rem 0;
}
.shop-detail-payment-group-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: .25rem;
	padding: 0;
	list-style: none;
}
.shop-detail-payment-group-item img {
	width: auto;
	height: 3rem;
}

/* 店舗取り扱い */
#shop-detail-handling {
	margin: 0 auto 1rem auto;
	padding: .5rem;
}
.shop-detail-handling-item-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	margin: 1rem auto;
}
.shop-detail-handling-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: start;
	gap: .25rem;
	max-width: 100%;
	width: 200px;
}
.shop-detail-handling-item-logo {
	width: 100%;
}
.shop-detail-handling-item-logo img {
	width: 100%;
	height: auto;
}
.shop-detail-handling-item-new {
	flex: 1;
	color: #fff;
	background: #59b721;
	text-decoration: none;
	white-space: nowrap;
}
.shop-detail-handling-item-used {
	flex: 1;
	color: #fff;
	background: #3e3a39;
	white-space: nowrap;
}
.shop-detail-handling-item-event {
	width: 100%;
	color: #fff;
	background: #006dd1;
	text-decoration: none;
	white-space: nowrap;
}
.shop-detail-handling-item-new,
.shop-detail-handling-item-used,
.shop-detail-handling-item-event {
	padding: .25rem;
	font-size: .9rem;
	font-weight: bold;
	border-radius: .25rem;
	text-align: center;
	transition: all .2s;
}
.shop-detail-handling-item-new,
.shop-detail-handling-item-event {
	position: relative;
}
.shop-detail-handling-item-new i,
.shop-detail-handling-item-event i {
	position: relative;
	left: 0;
	transition: all .2s;
}
.shop-detail-handling-item-new:hover {
	background: #438a19;
}
.shop-detail-handling-item-event:hover {
	background: #00529e;
}
.shop-detail-handling-item-new:hover i,
.shop-detail-handling-item-event:hover i {
	left: .25rem;
}

/* 店舗新作 */
#shop-detail-new-product {
	margin: 0 auto;
	padding: 2rem .5rem;
	color: #fff;
	background: var(--thema-color);
}
#shop-detail-new-product .section-headline {
	color: #fff;
}
#shop-detail-new-product .section-content {
	margin: 0 auto 1rem auto;
	max-width: 100%;
	width: var(--content-width);
}
ul.shop-detail-new-product-note {
	margin: .5rem auto;
	padding: 0 0 0 1em;
	width: fit-content;
	font-size: 12px;
	list-style: none;
}
ul.shop-detail-new-product-note li {
	margin: 0 0 .5em 0;
}
ul.shop-detail-new-product-note li:before {
	content: "※";
	margin: 0 0 0 -1em;
	padding: 0;
	font-weight: bold;
}

/**************************************************
 イベント一覧
**************************************************/

/* イベント検索 */
#event-search {
	margin: 1rem 0;
}
.search-box-wrapper#event-search {
	background-color: #eee926;
}

/* イベント期間 */
#event-period {
	margin: 1rem 0;
}
.event-period-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	margin: .5rem;
	padding: 0;
	list-style: none;
}
.event-period-list-item {
	margin: .25rem .1rem;
}
.event-period-list-item a {
	display: block;
	padding: .375rem .75rem;
	font-weight: bold;
	color: var(--thema-color);
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 2rem;
	text-decoration: none;
	transition: all 0.2s;
}
.event-period-list-item:not(:first-child) a {
	margin-left: -1px;
}
.event-period-list-item a:hover {
	background: #ddd;
	border-color: #ccc;
}
.event-period-list-item.active a {
	color: #fff;
	background-color: var(--thema-color);
	border-color: var(--thema-color);
}

/* イベント検索結果 */
#event-search-result {
	margin: .5rem 0;
}

/* イベント一覧（テーブル表示） */
.event-search-result-table {
	display: block;
}
.event-search-result-table-wrapper {
	margin: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 10px;
}
.event-search-result-table-wrapper:not(:last-child) {
	margin: 0 0 1rem 0;
}
.event-search-result-table-headline {
	margin: 1rem;
	font-size: 1.1rem;
	color: var(--thema-color);
}
.event-search-result-table-content {
	width: 100%;
	font-size: .8rem;
}
.event-search-result-table-content th,
.event-search-result-table-content td {
	padding: .25rem;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #ddd;
}
.event-search-result-table-content th {
	font-weight: bold;
	background: #f5f5f5;
	text-align: center;
	white-space: nowrap;
}
.event-search-result-table-content th:first-child,
.event-search-result-table-content td:first-child {
	border-left: none;
}
.event-search-result-table-content th:last-child,
.event-search-result-table-content td:last-child {
	border-right: none;
}
.event-search-result-table-content tbody tr:last-child td:last-child {
	border-bottom: none;
}
.event-search-result-table-content tbody tr:last-child td:first-child {
	border-radius: 0 0 0 10px;
}
.event-search-result-table-content tbody tr:last-child td:last-child {
	border-radius: 0 0 10px 0;
}
.event-search-result-table-item-none {
	margin: 1rem;
	text-align: center;
}
.event-search-result-table-item {
	background: #fff;
	transition: all 0.2s;
}
.event-search-result-table-item:hover {
	background: #eee;
}
.event-search-result-table-content .event-search-result-table-item-time {
	width: 4rem;
	font-weight: bold;
	white-space: nowrap;
}
.event-search-result-table-content .event-search-result-table-item-taxonomy {
	width: 5rem;
}
.event-search-result-table-content .event-search-result-table-item-taxonomy img {
	max-width: 100%;
	height: auto;
}
.event-search-result-table-content .event-search-result-table-item-official {
	width: 3rem;
	white-space: nowrap;
}
.event-search-result-table-content .event-search-result-table-item-official-badge {
	padding: .25rem .5rem;
	font-size: .7rem;
	font-weight: bold;
	color: #fff;
	background: #d9534f;
	border-radius: .25rem;
}
.event-search-result-table-content .event-search-result-table-item-title {
	text-align: start;
	word-break: break-all;
}
.event-search-result-table-content .event-search-result-table-item-title .event-search-result-table-item-name {
	font-weight: bold;
}
.event-search-result-table-content .event-search-result-table-item-title .event-search-result-table-item-note {
	color: #888;
	word-break: break-all;
	white-space: pre-wrap;
}
.event-search-result-table-content .event-search-result-table-item-prefecture {
	width: 5rem;
	white-space: nowrap;
}
.event-search-result-table-content .event-search-result-table-item-shop {
	width: 10rem;
	text-align: start;
	word-break: break-all;
}
.event-search-result-table-content .event-search-result-table-item-shop a {
	color: inherit;
}
.event-search-result-table-content .event-search-result-table-item-condition {
	width: 5rem;
}
.event-search-result-table-content .event-search-result-table-item-capacity {
	width: 5rem;
	white-space: nowrap;
}

/* イベント一覧（リスト表示） */
.event-search-result-list {
	display: none;
	padding: 0 .5rem;
}
.event-search-result-list-wrapper {
	background: #fff;
	border: 1px solid #888;
	border-radius: 10px;
}
.event-search-result-list-wrapper:not(-last-child) {
	margin: 0 0 1rem 0;
}
.event-search-result-list-headline {
	margin: 1rem;
	font-size: 1.2rem;
	color: var(--thema-color);
	text-align: center;
}
.event-search-result-list-item-none {
	margin: 1rem;
	text-align: center;
}
.event-search-result-list-item {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 1rem 0;
}
.event-search-result-list-item-box {
	display: flex;
	flex-wrap: nowrap;
	justify-content: start;
	align-items: start;
	gap: .25rem;
}
.event-search-result-list-item-box-label {
	padding: .1rem .25rem;
	min-width: 4rem;
	color: #fff;
	background: #555;
	border: 1px solid #333;
	border-radius: .25rem;
	text-align: center;
	white-space: nowrap;
}
.event-search-result-list-item-box-content {
	padding-top: calc(.1rem + 1px);
	word-break: break-all;
}
.event-search-result-list-item-time {
	padding: .5rem .25rem;
	width: 100%;
	font-weight: bold;
	line-height: 1;
	background: #eee;
	border-top: 1px solid #888;
	border-bottom: 1px dashed #888;
	text-align: center;
	white-space: nowrap;
}
.event-search-result-list-item-taxonomy {
	padding: .5rem;
	width: 6rem;
	text-align: center;
}
.event-search-result-list-item-taxonomy img {
	width: 100%;
	height: auto;
}
.event-search-result-list-item-info {
	flex: 1;
	padding: .5rem;
}
.event-search-result-list-item-title {
	display: flex;
	flex-wrap: nowrap;
	gap: .25rem;
	margin: 0 0 .5rem 0;
	padding: 0 0 .5rem 0;
	border-bottom: dotted 2px #ccc;
}
.event-search-result-list-item-name {
	font-weight: bold;
}
.event-search-result-list-item-official {
	margin: 0 0 0 auto;
}
.event-search-result-list-item-official-badge {
	padding: .1rem .5rem;
	font-size: .8rem;
	font-weight: bold;
	color: #fff;
	background: #d9534f;
	border-radius: .25rem;
	white-space: nowrap;
}
.event-search-result-list-item-place {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: .25rem;
	margin: 0 0 .25rem 0;
	font-size: .8rem;
}
.event-search-result-list-item-prefecture {
	padding: .1rem .25rem;
	min-width: 4rem;
	border: 1px solid #333;
	border-radius: .25rem;
	text-align: center;
	white-space: nowrap;
}
.event-search-result-list-item-shop {
	padding-top: calc(.1rem + 1px);
	word-break: break-all;
}
.event-search-result-list-item-shop a {
	color: inherit;
}
.event-search-result-list-item-other {
	display: flex;
	flex-wrap: wrap;
	gap: .25rem;
	font-size: .8rem;
}
.event-search-result-list-item-note {
	width: 100%;
}
.event-search-result-list-item-note .event-search-result-list-item-box-content {
	white-space: pre-wrap;
}

/**************************************************
 新作一覧
**************************************************/

/* 新作検索 */
#new-product-search {
	margin: 1rem 0;
}
.search-box-wrapper#new-product-search {
	background-color: #29abe2;
}

/* 新作検索結果 */
#new-product-search-result {
	margin: .5rem 0;
}
.new-product-search-result-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 1rem;
}
.new-product-search-result-list .product-list-item-wrapper {
	max-width: 100%;
	width: 280px;
	height: auto;
}
ul.new-product-search-result-note {
	margin: .5rem auto;
	padding: 0 0 0 1em;
	width: fit-content;
	font-size: 12px;
	list-style: none;
}
ul.new-product-search-result-note li {
	margin: 0 0 .5em 0;
}
ul.new-product-search-result-note li:before {
	content: "※";
	margin: 0 0 0 -1em;
	padding: 0;
	font-weight: bold;
}

/**************************************************
 ご利用ガイド・FAQ
**************************************************/

/* 対象店舗ロゴ説明 */
.howto-faq-target-shop-logo-description {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem 2rem;
	margin: 1rem 0;
	padding: 0 .5rem;
}
.howto-faq-target-shop-logo-description-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem 1rem;
	padding: 1rem;
	max-width: 100%;
	width: calc(((var(--content-width) - 300px) / 2) - 3rem);
	background: #fff;
	border: 1px solid #888;
	border-radius: .25rem;
}
.howto-faq-target-shop-logo-description-image img {
	width: auto;
	height: 50px;
}
.howto-faq-target-shop-logo-description-text {
	flex: 1;
}
.howto-faq-target-shop-logo-description-text-main {
	margin: 0;
	font-size: .8rem;
	font-weight: bold;
}
.howto-faq-target-shop-logo-description-text-sub {
	margin: 0;
	font-size: .7rem;
}

/* 一覧項目対象店舗ロゴ */
.howto-faq-list-item-summary-target-shop-logo {
	padding: 0 1.5rem 0 0;
	white-space: nowrap;
}
.howto-faq-list-item-summary-target-shop-logo img {
	width: auto;
	height: 2rem;
}

/**************************************************
 ご利用ガイド
**************************************************/

#wrap:has(#howto) {
	background: linear-gradient(70deg, #00e0c6, #70feba, #ffff8b);
}

.howto-header {
	position: relative;
	height: 60px;
	background-image: url(/assets/img/common/bg_card.png);
	background-position: bottom;
	background-size: contain;
	background-repeat: repeat-x;
}
.howto-header-symbol {
	position: absolute;
	top: 0;
	right: 15%;
}
.howto-header-symbol img {
	max-width: 200px;
	min-width: 100px;
	width: 15vw;
	height: auto;
}

.howto-container {
	padding: 2rem 1rem;
	background: repeating-linear-gradient(-45deg, #f9f6f0, #f9f6f0 50px, #fcfbf8 50px, #fcfbf8 100px);
	border-top: 10px solid var(--thema-color);
	border-bottom: 10px solid var(--thema-color);
}

.howto-wrapper {
	margin: 0 auto;
	padding: 1rem;
	max-width: 100%;
	width: var(--content-width);
	background-color: #fff;
	border: solid 1px #3e3a39;
}

.howto-content {
	max-width: 100%;
	width: calc(var(--content-width) - 300px);
	margin: 0 auto;
}

.howto-overview {
	margin: 1rem 0;
	font-size: 1.1rem;
}

.howto-category-menu-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	margin: 1rem 0;
	padding: 1rem 0;
	border-bottom: 2px solid var(--thema-color);
}
.howto-category-menu-list-item {
	display: inline-block;
	padding: .25rem .5rem;
	max-width: 100%;
	width: 160px;
	font-size: 12px;
	color: #fff;
	background: #3e3a39;
	border-radius: 20px;
	text-align: center;
	text-decoration: none;
}
.howto-category-menu-list-item:hover {
	background: linear-gradient(70deg, #00e0c6, #70feba, #ffff8b);
}

.howto-list-category {
	margin: .5rem 0;
	padding: .25rem 1rem;
	font-size: 1.1rem;
	color: #fff;
	background: linear-gradient(70deg, #00e0c6, #70feba, #ffff8b);
}
.howto-list-item {
	margin: 0 0 .5rem 0;
	padding: 0 0 .5rem 0;
	border-bottom: 1px solid var(--thema-color);
}
.howto-list-item-summary {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1rem 1rem .5rem;
	color: #333;
	background: #fff;
	cursor: pointer;
	transition: all .2s;
}
.howto-list-item-summary:hover {
	background: #eee;
}
.howto-list-item-summary::-webkit-details-marker {
	display: none
}
.howto-list-item-summary::before,
.howto-list-item-summary::after {
	content: '';
	position: absolute;
	right: 16px;
	width: 4px;
	height: 16px;
	background: var(--thema-color);
}
.howto-list-item-summary::before {
	rotate: 90deg;
}
.howto-list-item-summary::after {
	transition: all .2s;
}
.howto-list-item[open] .howto-list-item-summary::after {
	rotate: 90deg;
}
.howto-list-item-summary-thumbnail img {
	max-width: 100%;
	min-width: 50px;
	width: 65px;
	height: auto;
	border-radius: 5px;
}
.howto-list-item-summary-text {
	padding: .5rem;
	width: 100%;
}
.howto-list-item-summary-icon-sell,
.howto-list-item-summary-icon-buy {
	display: inline-block;
	margin: 0;
	padding: .25rem 1rem;
	font-size: .8rem;
	font-weight: bold;
	color: #fff;
	background: #000;
}
.howto-list-item-summary-icon-sell {
	background: #5d50ea;
}
.howto-list-item-summary-icon-buy {
	background: #ea5550;
}
.howto-list-item-content {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: start;
	gap: .5rem;
	margin: .25rem 0;
}
.howto-list-item-content-text {
	flex: 1;
	margin: 0;
	padding: .5rem;
	border-radius: .25rem;
	word-break: break-all;
	opacity: 0;
	transform: translateY(-10px);
	transition: all .2s;
}
.howto-list-item[open] .howto-list-item-content-text {
	opacity: 1;
	transform: translateY(0);
}
.howto-list-item-content-image {
	position: relative;
	max-width: 100%;
	width: 250px;
}
.howto-list-item-content-image-main-wrapper {
	margin: 0 0 .25rem 0;
}
.howto-list-item-content-image-main img {
	margin: 0 0 .5rem 0;
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
}
.howto-list-item-content-image-other-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: .25rem;
	margin: 0 0 .25rem 0;
}
.howto-list-item-content-image-other {
	width: calc((100% - (.25rem * (3 - 1))) / 3);
}
.howto-list-item-content-image-other img {
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
}
.howto-list-item-content-image-note {
	font-size: .8rem;
	font-weight: bold;
	text-align: center;
}

/**************************************************
 よくあるご質問
**************************************************/

#wrap:has(#faq) {
	background: linear-gradient(70deg, #1fa2ff, #12d8fa, #a6ffcb);
}

.faq-header {
	position: relative;
	height: 60px;
	background-image: url(/assets/img/common/bg_card.png);
	background-position: bottom;
	background-size: contain;
	background-repeat: repeat-x;
}
.faq-header-symbol {
	position: absolute;
	top: 0;
	right: 15%;
}
.faq-header-symbol img {
	max-width: 250px;
	min-width: 100px;
	width: 15vw;
	height: auto;
}
.faq-container {
	padding: 2rem 1rem;
	background: repeating-linear-gradient(-45deg, #f9f6f0, #f9f6f0 50px, #fcfbf8 50px, #fcfbf8 100px);
	border-top: 10px solid var(--thema-color);
	border-bottom: 10px solid var(--thema-color);
}
.faq-wrapper {
	margin: 0 auto;
	padding: 1rem;
	max-width: 100%;
	width: var(--content-width);
	background-color: #fff;
	border: solid 1px #3e3a39;
}
.faq-content {
	max-width: 100%;
	width: calc(var(--content-width) - 300px);
	margin: 0 auto;
}
.faq-overview {
	margin: 1rem 0;
	font-size: 1.1rem;
}
.faq-category-menu-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	margin: 1rem 0;
	padding: 1rem 0;
	border-bottom: 2px solid var(--thema-color);
}
.faq-category-menu-list-item {
	display: inline-block;
	padding: .25rem .5rem;
	max-width: 100%;
	width: 160px;
	font-size: 12px;
	color: #fff;
	background: #3e3a39;
	border-radius: 20px;
	text-align: center;
	text-decoration: none;
}
.faq-category-menu-list-item:hover {
	background: linear-gradient(70deg, #00e0c6, #70feba, #ffff8b);
}

.faq-list-category {
	margin: .5rem 0;
	padding: .25rem 1rem;
	font-size: 1.1rem;
	color: #fff;
	background: linear-gradient(to right, #9ca5ee 0%, #49ebdf 100%);
}
.faq-list-item {
	margin: 0 0 .5rem 0;
	padding: 0 0 .5rem 0;
	border-bottom: 1px solid var(--thema-color);
}
.faq-list-item-summary {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1rem 1rem 0;
	color: #333;
	background: #fff;
	cursor: pointer;
	transition: all .2s;
}
.faq-list-item-summary:hover {
	background: #eee;
}
.faq-list-item-summary::-webkit-details-marker {
	display: none
}
.faq-list-item-summary::before,
.faq-list-item-summary::after {
	content: '';
	position: absolute;
	right: 16px;
	width: 4px;
	height: 16px;
	background: var(--thema-color);
}
.faq-list-item-summary::before {
	rotate: 90deg;
}
.faq-list-item-summary::after {
	transition: all .2s;
}
.faq-list-item[open] .faq-list-item-summary::after {
	rotate: 90deg;
}
.faq-list-item-summary-icon img {
	width: 4rem;
	height: auto;
}
.faq-list-item-summary-text {
	padding: .5rem;
	width: 100%;
}
.faq-list-item-content {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: start;
	margin: .25rem 0;
	border-radius: .25rem;
}
.faq-list-item-content-icon img {
	width: 4rem;
	height: auto;
}
.faq-list-item-content-text {
	flex: 1;
	margin: 0;
	padding: .5rem;
	word-break: break-all;
	opacity: 0;
	transform: translateY(-10px);
	transition: all .2s;
}
.faq-list-item[open] .faq-list-item-content-text {
	opacity: 1;
	transform: translateY(0);
}

/**************************************************
 禁止制限カード
**************************************************/

.regulation-container {
	padding: 2rem 1rem;
	background: repeating-linear-gradient(-45deg, #f9f6f0, #f9f6f0 50px, #fcfbf8 50px, #fcfbf8 100px);
}
.regulation-wrapper {
	margin: 0 auto;
	padding: 1rem 0;
	max-width: 100%;
	width: var(--content-width);
	background-color: #fff;
	border: solid 1px #3e3a39;
}

/* タイトル一覧 */
.regulation-title-wrapper {
	margin: 0 auto;
	max-width: 100%;
	width: calc(var(--content-width) - 100px);
}
.regulation-title-headline {
	margin: .5rem 10px;
	padding: 1rem;
	font-size: 1.2rem;
	line-height: 1;
	color: #fff;
	background: linear-gradient(90deg, #eb8b7d, #fbfc8f);
	text-shadow: 0 0 5px rgba(0, 0, 0, .5);
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px #eb8b7d;
	text-align: center;
	word-break: auto-phrase;
}
.regulation-title-content {
	padding: 0 50px 50px;
}
.regulation-title-overview {
	margin: 1rem 0;
}
.regulation-title-remarks {
	position: relative;
	margin: 1rem auto;
	padding: .25rem 3rem;
	width: fit-content;
	font-weight: bold;
	color: #0056a6;
	border: 1px solid #0056a6;
	border-radius: 1rem;
	text-align: center;
}
.regulation-title-remarks::before {
	content: '▼';
	position: absolute;
	top: 50%;
	left: 1.75rem;
	transform: translate(0, -50%);
}
.regulation-title-remarks::after {
	content: '▼';
	position: absolute;
	top: 50%;
	right: 1.75rem;
	transform: translate(0, -50%);
}
.regulation-title-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0 auto 1rem auto;
}
.regulation-title-list-item,
.regulation-title-list-item::before,
.regulation-title-list-item::after {
	transition: .6s cubic-bezier(0.33, 1, 0.68, 1);
}
.regulation-title-list-item {
	position: relative;
	width: 157px;
	text-decoration: none;
	z-index: 1;
}
.regulation-title-list-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	z-index: 2;
}
.regulation-title-list-item::after {
	content: "Check!";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	transform: translateY(-50%);
	opacity: 0;
	z-index: 3;
}
.regulation-title-list-item:hover {
	transform: scale(0.9);
}
.regulation-title-list-item:hover::before {
	opacity: 0.7;
}
.regulation-title-list-item:hover::after {
	opacity: 1;
}
.regulation-title-list-item img {
	width: 100%;
	height: auto;
}

/* 禁止制限カードはなぜあるの？ */
.regulation-reason-wrapper {
	background-color: #1c54a2;
	background-image: url(/assets/img/common/bg_ban.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top left;
}
.regulation-reason-headline {
	padding: .5rem 18% 2rem;
	color: #006dd1;
	background-image: url(/assets/img/common/bg_ban_title_white.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: top center;
	text-align: center;
	word-break: auto-phrase;
}
.regulation-reason-headline-main {
	margin: .25rem 0;
	padding: 0;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
}
.regulation-reason-headline-sub {
	position: relative;
	margin: .25rem auto;
	padding: 0 1.25rem;
	width: fit-content;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.2;
}
.regulation-reason-headline-sub::before {
	content: '━';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
}
.regulation-reason-headline-sub::after {
	content: '━';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
}
.regulation-reason-content {
	margin: 0 auto;
	padding: 0 50px 50px;
	max-width: 100%;
	width: calc(var(--content-width) - 100px);
}
.regulation-reason-overview {
	margin: 1rem 0;
	padding: 0 50px;
	color: #fff;
}
.regulation-reason-item {
	margin: 1rem 0;
	padding: 1rem 50px 2rem;
	background: #fff;
	box-shadow: 0 .5rem .5rem 0 rgba(0, 0, 0, .2);
}
.regulation-reason-item-headline {
	margin: 0 0 .5rem 0;
	padding: 1rem;
	font-size: 1.2rem;
	line-height: 1;
	color: #fff;
	background: linear-gradient(90deg, #d57eeb, #fccb90);
	text-shadow: 0 0 5px rgba(0, 0, 0, .5);
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px #d57eeb;
	text-align: center;
	word-break: auto-phrase;
}
.regulation-reason-item-content {
	display: flex;
	gap: .5rem;
}
.regulation-reason-item-content-text {
	order: 1;
}
.regulation-reason-item-content-icon {
	order: 2;
}
.regulation-reason-item-content-icon img {
	width: 100px;
	height: auto;
}

/* 禁止・制限・準制限はどう違う？ */
.regulation-difference-wrapper {
	background: #fff;
}
.regulation-difference-headline {
	padding: .5rem 18% 2rem;
	color: #fff;
	background-image: url(/assets/img/common/bg_ban_title_blue.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: top center;
	text-align: center;
	word-break: auto-phrase;
}
.regulation-difference-headline-main {
	margin: .25rem 0;
	padding: 0;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
}
.regulation-difference-content {
	margin: 0 auto;
	padding: 0 50px 50px;
	max-width: 100%;
	width: calc(var(--content-width) - 100px);
}
.regulation-difference-overview {
	margin: 1rem 0;
	padding: 0 50px;
}
.regulation-difference-descript {
	display: flex;
	gap: 1rem;
}
.regulation-difference-descript-level {
	padding: 0 .25rem;
}
.regulation-difference-descript-level img {
	position: sticky;
	top: 150px;
	max-width: 100%;
	min-width: 30px;
	width: 60px;
	height: auto;
}
.regulation-difference-descript-detail {
	flex: 1;
}
.regulation-difference-descript-detail-item {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.regulation-difference-descript-detail-item:not(:last-child) {
	margin: 0 0 2rem 0;
}
.regulation-difference-descript-detail-item-icon {
	padding: .25rem;
}
.regulation-difference-descript-detail-item-icon img {
	max-width: 100%;
	width: 150px;
	height: auto;
}
.regulation-difference-descript-detail-item-text {
	position: relative;
	margin: 0 0 0 2rem;
	padding: 1rem 2rem;
	font-size: .9rem;
	background: #fff;
	border: solid 4px #000;
	border-radius: .5rem;
	box-sizing: border-box;
	word-break: break-all;
	flex: 1;
}
.regulation-difference-descript-detail-item-text::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	border-style: solid;
	border-width: 16px 32px 16px 0;
	border-color: transparent #000 transparent transparent;
	translate: -100% -50%;
}
.regulation-difference-descript-detail-item-text::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	border-style: solid;
	border-width: 11.5px 23.1px 11.5px 0;
	border-color: transparent #fff transparent transparent;
	translate: -100% -50%;
}
.regulation-difference-descript-detail-item-text strong {
	font-weight: bold;
}
.regulation-difference-descript-detail-item-text-example {
	margin: .25rem 0 0 0;
	padding: .25rem .5rem;
	font-weight: bold;
	color: #fff;
	background: #888;
}
#regulation-difference-descript-detail-item-banned .regulation-difference-descript-detail-item-text {
	border-color: #f29a6e;
}
#regulation-difference-descript-detail-item-banned .regulation-difference-descript-detail-item-text::before {
	border-color: transparent #f29a6e transparent transparent;
}
#regulation-difference-descript-detail-item-banned .regulation-difference-descript-detail-item-text strong {
	color: #f29a6e;
}
#regulation-difference-descript-detail-item-banned .regulation-difference-descript-detail-item-text-example {
	color: #fff;
	background: #f29a6e;
}
#regulation-difference-descript-detail-item-limited .regulation-difference-descript-detail-item-text {
	border-color: #55cf5f;
}
#regulation-difference-descript-detail-item-limited .regulation-difference-descript-detail-item-text::before {
	border-color: transparent #55cf5f transparent transparent;
}
#regulation-difference-descript-detail-item-limited .regulation-difference-descript-detail-item-text strong {
	color: #55cf5f;
}
#regulation-difference-descript-detail-item-limited .regulation-difference-descript-detail-item-text-example {
	color: #fff;
	background: #55cf5f;
}
#regulation-difference-descript-detail-item-semi-limited .regulation-difference-descript-detail-item-text {
	border-color: #6e88f2;
}
#regulation-difference-descript-detail-item-semi-limited .regulation-difference-descript-detail-item-text::before {
	border-color: transparent #6e88f2 transparent transparent;
}
#regulation-difference-descript-detail-item-semi-limited .regulation-difference-descript-detail-item-text strong {
	color: #6e88f2;
}
#regulation-difference-descript-detail-item-semi-limited .regulation-difference-descript-detail-item-text-example {
	color: #fff;
	background: #6e88f2;
}

/**************************************************
 レスポンシブ
**************************************************/

/* PCサイズ（721pxs以上）の場合 */
@media (min-width:721px) {

}
/* スマホサイズ（720pxs以下）の場合 */
@media (max-width:720px) {
	/* ヘッダー表示切替 */
	#header-pc {
		display: none;
	}
	#header-sp {
		display: block;
	}

	/* 店舗検索結果 */
	.shop-search-list-item-info {
		min-width: 100%;
	}

	/* イベント一覧表示切替 */
	.event-search-result-table {
		display: none;
	}
	.event-search-result-list {
		display: block;
	}

	/* ご利用ガイド */
	.howto-list-item-content {
		flex-wrap: wrap;
	}
	.howto-list-item-content-text {
		flex: auto;
	}

	/* 禁止制限カード */
	.regulation-title-content {
		padding: 0 10px 20px;
	}
	.regulation-title-list-item {
		width: 100px;
	}
	.regulation-reason-content {
		padding: 0 10px 20px;
	}
	.regulation-reason-overview {
		padding: 0;
	}
	.regulation-reason-item {
		padding: 10px 10px 20px;
	}
	.regulation-reason-item-content {
		position: relative;
		display: block;
	}
	.regulation-reason-item-content::after {
		content: "";
		display: block;
		clear: both;
	}
	.regulation-reason-item-content-text {
		float: none;
	}
	.regulation-reason-item-content-icon {
		margin: 0 0 .25rem .25rem;
		float: right;
	}
	.regulation-difference-content {
		padding: 0 10px;
	}
	.regulation-difference-overview {
		padding: 0;
	}
	.regulation-difference-descript {
		gap: .5rem;
	}
	.regulation-difference-descript-level img {
		width: 40px;
	}
	.regulation-difference-descript-detail-item {
		flex-direction: column;
	}
	.regulation-difference-descript-detail-item-text {
		margin: 2rem 0 0 0;
		padding: .5rem 1rem;
	}
	.regulation-difference-descript-detail-item-text::before {
		top: 0;
		left: 50%;
		border-width: 0 16px 32px 16px;
		border-color: transparent transparent #000;
		translate: -50% -100%;		
	}
	.regulation-difference-descript-detail-item-text::after {
		top: 0;
		left: 50%;
		border-width: 0 11.5px 23.1px 11.5px;
		border-color: transparent transparent #fff;
		translate: -50% -100%;
	}
	#regulation-difference-descript-detail-item-banned .regulation-difference-descript-detail-item-text::before {
		border-color: transparent transparent #f29a6e;
	}
	#regulation-difference-descript-detail-item-limited .regulation-difference-descript-detail-item-text::before {
		border-color: transparent transparent #55cf5f;
	}
	#regulation-difference-descript-detail-item-semi-limited .regulation-difference-descript-detail-item-text::before {
		border-color: transparent transparent #6e88f2;
	}
}