@charset "UTF-8";
/*
=========================
		h1 #title 追加
=========================
*/
h1 {
	line-height: 0.85em;
	padding: .45em .45em .4em;
}

@media screen and (min-width:701px) {
	h1 {
		line-height: 1.03em;
		padding: .45em .45em .3em;
	}
}

h1>span {
	padding-left: .85em;
	font-size: clamp(12px, 2.1vh, 16px);
}

h1>span::before,
h1>span::after {
	content: " － ";
}

/*
=========================
		構造全体
=========================
*/
section {
	box-sizing: border-box;
	width: 100%;
	overflow-y: auto;
  scroll-snap-type: y;
}

/*
=========================
		更新日
=========================
*/
ul.update {
	box-sizing: border-box;
	width: 100%;
	padding: .35em;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: .2em;
}

ul.update>li:first-child {
	color: #10998f;
	font-size: 24px;
	font-weight: 800;
	position: relative;
	bottom: 3px;
}

/*
==================================
			ul.top-nav
==================================
*/
ul.top-nav {
	box-sizing: border-box;
	width: 100%;
	padding: .6em .0em .3em 1.2em;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

ul.top-nav>li {
	box-sizing: border-box;
	width: calc(100%/3);
}

ul.top-nav>li:nth-of-type(2) {
	text-align: center;
}

ul.top-nav>li:last-child {
	text-align: right;
}


ul.top-nav>li.cnt-list {
	box-sizing: border-box;
	font-size: 14px;
}

/*------絞り込み時スロット表示にするjavascript-----*/
ul.top-nav>li.cnt-list>span#shop-cnt {
	color: #10998f;
	font-size: 20px;
	font-weight: 800;
}

/*-------- アイコンの説明 -------*/
div.icon_info {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	font-size: 12px;
	text-align: right;
	margin: 0;
}

div.icon_info>button {
	color: #10998f;
	font-size: clamp(11px, 1.15vw, 12px);
	font-weight: 600;
}

div.icon_info>button:hover {
	opacity: 0.5;
}

/*
==================================
				MAP / MapWindow
==================================
*/
section.section-mapView {
	box-sizing: border-box;
	width: 100%;
	height: 480px;
	overflow: hidden;
	position: relative;
}

@media screen and (min-width:701px) {
	section.section-mapView {
		height: 520px;
	}
}

div#detailView {
	box-sizing: border-box;
	width: 100%;
	max-width: 300px;
	max-height: 100%;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-shadow: 8px 7px 10px -4px #aaa;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	overflow-y: auto;
	overflow: hidden;
	/* デフォでは消しておく */
	display: none;
	opacity: 0;
	pointer-events: auto;
	/* detailは操作可 */
	transition: opacity 0.25s ease;
}

@media screen and (min-width:701px) {
	div#detailView {
		max-width: 360px;
	}
}

#detailView.show {
	display: block;
	opacity: 1;
}

div#map_canvas {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0;
	padding:0;
	border:0;
	background: lightgrey;
}

div#map_canvas.dimmed {
	filter: grayscale(60%) brightness(88%) saturate(2) blur(2px);
	opacity: 0.4;
}

div.detail-header {
	position: sticky;
	top: 0;
	background: #f5f5f5ff;
	padding: 8px 4px;
	display: flex;
	align-items: center;
}

div.detail-header>div.detail-name {
	flex: 1;
	box-sizing: border-box;
	width: 100%;
	padding: 0 .8em 0 .5em;
	font-size: clamp(14px, 1.25vw, 100%);
	font-weight: 700;
	text-shadow:
		1px 0 1px #fff,
		1px 0 1px #fff;
}

div.detail-header>button.back-btn {
	position: relative;
	right: .3em;
	background: #bbb;
	height: 24px;
	width: 24px;
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	text-shadow:
		1px 0 1px #666,
		1px 0 1px #777,
		1px 0 1px #888;
	cursor: pointer;
}

div.detail-header>button.back-btn:hover {
	background: #007bff;
}

/*
------------------------------------
店名から下の大枠 detail-content
------------------------------------
*/
div.detail-content * {
	box-sizing: border-box;
}

div.detail-content {
	width: 100%;
	height: fit-content;
	border: 1px solid #ccc;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/*
------------------------------------
	detail- 店舗写真
------------------------------------
*/
div.detail-content>div.detail-shop-img-box {
	width: 100%;
	height: fit-content;
	max-height: 180px;
	overflow: hidden;
}

@media screen and (min-width:701px) {
	div.detail-content>div.detail-shop-img-box {
		max-height: 220px;
	}
}

div.detail-content>div.detail-shop-img-box>picture {
	display: block;
	height: 100%;
	overflow: hidden;
}

div.detail-content>div.detail-shop-img-box>picture>img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 180px;
	object-fit: cover;
	margin: 0 auto;
}

@media screen and (min-width:701px) {
	div.detail-content>div.detail-shop-img-box>picture>img {
		max-height: 220px;
	}
}

/*
------------------------------------
	detail- 店舗情報 detail-shop-info-box
------------------------------------
*/
div.detail-content>div.detail-shop-info-box {
	flex: 1;
	width: 100%;
	height: auto;
	padding: .4em .95em .8em;
	background-color: #fafafaff;
	font-size: clamp(13px, 1.85vw, 14.5px);
	display: flex;
	flex-direction: column;
	gap: .45em 0;
	overflow: hidden;
}

@media screen and (min-width:701px) {
	div.detail-content>div.detail-shop-info-box {
		gap: .45em 0;
	}
}

div.detail-shop-info-box>div[class^="detail-"] {
	box-sizing: border-box;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0 .6em;
}

div.detail-shop-info-box>div[class^="detail-"]>div.dt-icon-box {
	box-sizing: border-box;
	width: 24px;
	text-align: center;
}

div.detail-shop-info-box>div[class^="detail-"]>div.dt-icon-box>span.detail-icons {
	color: #10998f;
}

div.detail-shop-info-box>div[class^="detail-"]>div.dt-txt-box {
	flex: 1;
	box-sizing: border-box;
	overflow-wrap: anywhere;
}

/**  detail- ジャンル(業種)  **/
div.detail-content>div.detail-genre {}

div.detail-genre>div#dt-genre {
	font-size: 85%;
}

div.detail-genre>div.dt-icon-box>span.genre-icon {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	position: relative;
	width: 1em;
	height: 1em;
	border: 0.1em solid currentColor;
	border-radius: 50%;
	box-sizing: content-box;
}

div.detail-genre>div.dt-icon-box>span.genre-icon>span {
	width: 0.58em;
	height: 0.261em;
	border: 0.1em solid currentColor;
	border-top: 0;
	border-right: 0;
	box-sizing: border-box;
	transform: translateY(-25%) rotate(-45deg);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

/**  detail- 住 所  **/
div.detail-shop-info-box>div.detail-place>div#dt-address {
	line-height: 1.23em;
}

/* detail- 住 所 : ピンのアイコン(疑似要素) */
div.detail-place>div.dt-icon-box>span.address-pin {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	position: relative;
	bottom: 2px;
	width: 1.1em;
	height: 1.1em;
	background: currentColor;
	border: 0.1em solid currentColor;
	border-radius: 40% 60% 0% 100% / 40% 100% 0% 60%;
	box-sizing: content-box;
	transform: rotate(45deg);
}

div.detail-place>div.dt-icon-box>span.address-pin::before {
	content: '';
	position: absolute;
	top: 20%;
	left: 20%;
	width: 0.4em;
	height: 0.4em;
	background: #fff;
	border-radius: 50%;
	box-sizing: border-box;
}

/**  detail- 営業時間  **/
/**  detail- 営業時間 : 時計アイコン(疑似要素)  **/
div.detail-open>div.dt-icon-box>span.open-clock {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	position: relative;
	width: 1em;
	height: 1em;
	border: 0.1em solid currentColor;
	border-radius: 50%;
	box-sizing: content-box;
}

div.detail-open>div.dt-icon-box>span.open-clock::before,
div.detail-open>div.dt-icon-box>span.open-clock::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 50%;
	background: currentColor;
	border-radius: 0.1em;
	transform: translate(-0.05em, 0.05em);
}

div.detail-open>div.dt-icon-box>span.open-clock::before {
	width: 0.1em;
	height: 0.4em;
}

div.detail-open>div.dt-icon-box>span.open-clock::after {
	width: 0.35em;
	height: 0.1em;
}

/**  detail- 設 備 tool **/
div.detail-shop-info-box>ul.detail-tool {
	width: 100%;
	padding: .2em .2em 0 .6em;
	display: flex;
	align-items: center;
}

ul.detail-tool>li>picture>img {
	display: block;
	width: 22px;
	height: auto;
}

@media screen and (min-width:701px) {
	ul.detail-tool>li>picture>img {
		width: 26px;
	}
}

/**  detail- 詳細を見る link-btn **/
div.detail-shop-info-box>div.detail-link-btn {
	width: 100%;
	padding: .6em 0 .3em;
}

div.detail-shop-info-box>div.detail-link-btn>a:link,
div.detail-shop-info-box>div.detail-link-btn>a:visited {
	display: block;
	width: fit-content;
	margin: auto;
	padding: 0 .8em .12em .4em;
	background: #10998f;
	border: 2px solid #10967d;
	border-radius: 20px;
	color: #fff;
	font-size: clamp(9px, 1.45vw, 12px);
	font-weight: 700;
}

div.detail-shop-info-box>div.detail-link-btn>a:hover {
	background: #fff;
	color: #10967d;
}

/*
==================================
		div.filter-box(絞込みList)
==================================
*/
section.section-filter {
	padding: .8em 1.2em 1.2em;
	overflow: hidden;
}

div.filter-box * {
	box-sizing: border-box;
}

section.section-filter {
	box-sizing: border-box;
	padding: .65em .15em .85em .65em;
	border-bottom: 1px solid #efefefff;
	overflow-x: scroll;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	/* scrollbar off => IE, Edge */
	-ms-overflow-style: none;
	/* scrollbar off =>Firefox */
	scrollbar-width: none;
}

section.section-filter::-webkit-scrollbar {
	/* scrollbar off => Chrome, Safari */
	display: none;
}

@media screen and (min-width:701px) {
	section.section-filter {
		box-sizing: border-box;
		padding: 1.2em;
		overflow-x: visible;
	}
}

div.filter-box {
	width: fit-content;
	padding: 0 .4em;
	position: relative;
	z-index: 1;
}

@media screen and (min-width:701px) {
	div.filter-box {
		box-sizing: border-box;
		padding: 0 .4em;
		margin: 0 auto;
		border: 2px solid #d0d0d2ff;
		border-radius: 4px;
		overflow-x: visible;
	}
}

div.filter-box>div.filter-box-title {
	width: fit-content;
	padding: 0 .5em 0 .2em;
	color: #888;
	font-size: 12px;
	position: absolute;
	top: -12px;
	left: 0;
	z-index: 10;
	background: #fff;
}

@media screen and (min-width:701px) {
	div.filter-box>div.filter-box-title {
		padding: .2em .5em 0;
		left: .95em;
	}
}

/* 絞込みボタンリスト */
div.filter-box>ul {
	margin: 0;
	padding: .8em 0 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.85em 1.15em;
}

@media screen and (min-width:701px) {
	div.filter-box>ul {
		margin: 0 auto;
		padding: 1.4em .6em 1.0em;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		flex-wrap: nowrap;
		gap: 0.85em 1.15em;
	}
}

div.filter-box>ul>li {
	width: fit-content;
	height: 45px;
	padding: .2em .2em .2em .4em;
	border-radius: 3px;
	overflow: hidden;
	flex-shrink: 0;
}

div.filter-box>ul>li:not(:has(input:checked)):not(:last-child) {
	border: 1px solid #ccc;
	outline: none;
	color: #555;
	text-shadow: none;
	background: none;
}

div.filter-box>ul>li:has(input:checked) {
	border: 1px solid #10967d;
	outline: 3px solid #10967d;
	color: #10967d;
	text-shadow: 0px 1px 0px #666;
	background: rgba(16, 153, 144, 0.10);
}

div.filter-box>ul>li:hover {
	opacity: .5;
}

div.filter-box>ul>li>label {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

div.filter-box>ul>li>label>input[type="checkbox"] {
	display: none;
}

div.filter-box>ul>li>label>picture>img {
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	object-fit: cover;
}

div.filter-box>ul>li>label>p {
	width: 100%;
	padding: .35em;
	font-size: clamp(8px, 1.12vw, 9px);
	line-height: 1.05em;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 解除ボタン・ */
div.filter-box>ul>li.filter-opr-btn>button#switch-clear-btn {
	padding: .4em .9em .5em .5em;
	border: 3px solid #007f95fc;
	border-radius: 3px;
	background: rgba(0, 128, 163, 0.75);
	font-size: 13px;
	color: #fff;
	font-weight: 600;
	letter-spacing: .12em;
	text-shadow: 0 1px 1px #010630ab;
	white-space: nowrap;
	cursor: pointer;
}

div.filter-box>ul>li.filter-opr-btn>button#switch-clear-btn:hover {
	background: #fefefeff;
	color: rgba(0, 128, 163, 1);
	text-shadow: none;
}

/*
===================================
	現在このエリアの登録はありません
===================================
*/
div.news-box {
	box-sizing: border-box;
	width: 90%;
	max-width: 600px;
	overflow: hidden;
	margin: 30px auto;
	border: solid 5px #f99500;
	border-radius: 5px;
	padding: 1.2em 2em;
}

div.news-box>h3 {
	box-sizing: border-box;
	width: 100%;
	color: #ff9900;
	font-size: 18px;
	font-weight: 700;
	text-shadow:
		1px 1px 1px #ddd,
		0px 1px 1px #eee;
	text-align: center;
}

div.news-box>p {
	box-sizing: border-box;
	width: 90%;
	margin: 0 auto;
	padding: 1.4em 1em 1.2em;
	font-size: 14px;
	line-height: 1.85em;
}

div.news-box>div.link-share-mail {
	box-sizing: border-box;
	width: 100%;
	display: flex;
	justify-content: center;
}

div.news-box>div.link-share-mail>a {
	display: block;
	width: 65px;
	overflow: hidden;
	font-size: 12px;
	font-weight: 700;
	text-shadow: 0px 1px 1px #666;
	text-align: center;
	padding: .3em .6em;
	border-radius: 5px;
	border: 3px solid #10998f;
}

div.news-box>div.link-share-mail>a:link,
div.news-box>div.link-share-mail>a:visited {
	background: #10998f;
	color: #fff;
}

div.news-box>div.link-share-mail>a:hover {
	background: #fff;
	color: #10998f;
	text-shadow: none;
}

/*
===================================
	link-box
===================================
*/
div.link-box {
	box-sizing: border-box;
	width: 100%;
	margin: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

div.link-box img {
	display: block;
	padding: 0;
	border: 0;
}

div.link-box img:hover {
	opacity: 0.5;
}