@charset "UTF-8";
/*
Template: swell
Theme Name: SWELL CHILD
Theme URI: https://swell-theme.com/
Description: SWELLの子テーマ
Version: 1.0.0
Author: LOOS WEB STUDIO
Author URI: https://loos-web-studio.com/

License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl.html
*/

@media not all and (min-width: 600px) {
	html {
		font-size: var(--swl-fz--root);
	}

	#main_content .post_content {
		font-size: 3.1vw;
	}

	/* ==========================================
	* 記事タイトル
	* ========================================== */
	.c-postTitle__ttl {
		font-size: 4vw;
	}
}

.gmap {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}

.chobot-bannar {
	box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .1), 0 0.25rem 0.5rem -0.25rem rgba(0, 0, 0, .2);
}

/*===============================
* 
* =================================*/
.nmrk-balloon.has-background {
	padding: .5em 1.25em;
}

/* ==========================================
* 特徴アーカイブページのタイトル
* ========================================== */
.tax-feature .c-pageTitle__inner {
	display: inline-flex;
	flex-direction: column-reverse;
}

/* ==========================================
* タクソノミーチップUI（横スクロール）
* ========================================== */
.taxonomy-chips-container {
	position: relative;
	width: 100%;
	padding: .75rem 0 .5rem;
}

/* 右側に薄いグラデーションをかけてスクロール可能なことを示す */
.taxonomy-chips-container::after {
	position: absolute;
	bottom: .5rem;
	right: 0;
	z-index: 2;
	content: "";
	width: clamp(3rem, 1.571rem + 3.81vw, 5rem);
	height: calc(100% - 3rem);
	/* ガイドテキストの高さを除いたチップ部分の高さ */
	background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
	pointer-events: none;
}

/* ガイドテキストの装飾 */
.taxonomy-chips-guide {
	display: inline-flex;
	align-items: center;
	gap: .25rem;
	margin-bottom: .75rem;
	padding-bottom: .25rem;
	border-bottom: 0.125rem solid var(--color_border);
	letter-spacing: 0.05em;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--color_text, var(--swl-text_color--black));
	opacity: 0.8;
}

/* フィルター（漏斗）アイコンの追加 */
.taxonomy-chips-guide::before {
	display: inline-block;
	content: "";
	width: 0.8125rem;
	height: 0.8125rem;
	background-color: var(--color_text, var(--swl-text_color--black));
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'/%3E%3C/svg%3E") no-repeat center / contain;
}

.taxonomy-chips-container .tagcloud {
	flex-wrap: nowrap;
	padding: .25rem 0;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	/* iOSの慣性スクロール */
	scrollbar-width: thin;
}

.taxonomy-chips-container .tagcloud a {
	display: inline-block;
	background-color: var(--color_content_bg, var(--swl-text_color--white));
	border: 0.0625rem solid var(--color_border);
	border-radius: 100vmax;
	box-shadow: 0 0.0625rem 0.1875rem var(--swl-color_shadow);
	line-height: 1.2;
	white-space: nowrap;
	transition: background-color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.taxonomy-chips-container .tagcloud a:hover {
	background-color: var(--swl-color_hov_gray);
	border-color: var(--color_border);
	box-shadow: var(--swl-box_shadow);
	text-decoration: none;
	transform: translateY(-0.0625rem);
}

/* ==========================================
* スポット一覧カスタムレイアウト (p-spotList)
* ========================================== */
.p-spotList {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-spotList__item {
	background: var(--color_content_bg, var(--swl-text_color--white));
	border: 0.0625rem solid var(--color_border);
	border-radius: 0.75rem;
	box-shadow: var(--swl-box_shadow);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	font-size: 1rem;
}

.p-spotList__item:hover {
	box-shadow: var(--swl-img_shadow);
	transform: translateY(-0.25rem);
}

.p-spotList__link {
	--count: 1;
	--gap: 0rem;
	--media-width: 80%;
	--body-width: calc(200% - var(--media-width));
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	align-items: center;
	text-decoration: none !important;
	color: inherit;
}

@media (min-width: 768px) {
	.p-spotList__link {
		--count: 2;
	}
}

/* サムネイル */
.p-spotList__thumbnail {
	position: relative;
	flex-grow: 1;
	width: calc((var(--media-width) - var(--gap) * (var(--count) - 1)) / var(--count));
	text-align: center;
	overflow: hidden;
}

.p-spotList__thumbnail img {
	width: 100%;
	height: 100%;
	aspect-ratio: 80 / 45;
	transition: transform 0.3s ease;
}

@media (min-width: 600px) {
	.p-spotList__thumbnail img {
		max-width: 20rem;
	}
}

.p-spotList__link:hover .p-spotList__thumbnail img {
	transform: scale(1.05);
}

/* コンテンツボディ */
.p-spotList__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: calc((var(--body-width) - var(--gap) * (var(--count) - 1)) / var(--count));
	min-width: 21rem;
	padding: 1.25em;
}

/* ヘッダー部（店舗名 ＋ 記事タイトル） */
.p-spotList__header {
	margin-bottom: 0.5em;
}

.p-spotList__shopName {
	display: block;
	margin-bottom: 0.25em;
	letter-spacing: 0.05em;
	font-size: 0.8em;
	font-weight: 700;
	color: var(--color_icon_memo);
}

.p-spotList__title {
	line-height: 1.4;
	font-size: .9em;
	font-weight: 700;
	color: var(--color_text, var(--swl-text_color--black));
}

/* エリア / ジャンル / 駅 メタ情報 */
.p-spotList__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.375em 0.5em;
	margin-bottom: 0.75em;
	font-size: 0.75em;
	color: var(--color_text);
	opacity: 0.8;
}

.p-spotList__metaItem {
	display: inline-block;
}

.p-spotList__separator {
	color: var(--color_border);
	user-select: none;
}

/* ジャンルチップUI */
.p-spotList__genreChips {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.25em;
	vertical-align: middle;
}

.p-spotList__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.15em 0.5em;
	font-weight: 500;
	line-height: 1.2;
	border-radius: 100vmax;
	white-space: nowrap;
	transition: all 0.2s ease;
	border: 0.0625rem solid var(--color_border);
	background-color: var(--color_content_bg, var(--swl-text_color--white));
	color: var(--color_text, var(--swl-text_color--black));
}

.p-spotList__chip--genre {
	background-color: var(--color_pale02, #f4f7f9);
	color: var(--color_main, #333);
	border-color: transparent;
}

/* 評価と予算 */
.p-spotList__stats {
	display: flex;
	align-items: center;
	gap: 0.75em;
	margin-bottom: 1.5em;
	font-size: 0.9em;
}

.p-spotList__rating {
	font-weight: 700;
	color: var(--color_deep04, #e0a800);
}

.p-spotList__reviewCount {
	font-size: 0.8em;
	font-weight: 400;
	color: var(--color_text);
	opacity: 0.7;
}

.p-spotList__statsSeparator {
	color: var(--color_border);
}

.p-spotList__budget {
	font-weight: 700;
	color: var(--color_deep01, #e44d26);
}

/* 紹介文 */
.p-spotList__excerpt {
	display: -webkit-box;
	margin-bottom: .75em;
	padding: 1em;
	background: var(--color_pale04);
	border-radius: 0.25rem;
	overflow: hidden;
	font-size: 0.75em;
	color: var(--color_text);
	opacity: 0.9;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
}

/* ボタン */
.p-spotList__btn {
	--the-width: 70%;
	margin: 0;
}