/* Theme custom styles */

/* ベースリセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* デフォルト */
html {
	font-size: 10px; /* 1rem = 10px */
}

body {
	font-size: 1.6rem; /* 16px相当 */
	line-height: 1.6;
	background: #F8F6F1;
	color: #222;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

img {
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

/* レイアウトのベース */
.container {
	max-width: 990px;
	margin: 64px auto;
	padding: 0 4%;
}

@media (min-width: 990px) {
	.container {
		padding: 0;
	}
}

.container .container {
	padding: 0;
}

/* Mainvisual */
.mainvisual {
	background: #F8F6F1;
	padding: 0 0 40px;
}

@media (min-width: 960px) {
	.mainvisual {
		padding: 0 0 60px;
	}
}

.mainvisual__inner {
	max-width: 990px;
	margin: 0 auto;
	padding: 0 4%;
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 960px) {
	.mainvisual__inner {
		grid-template-columns: 40% 2% 17% 6% 35%;
		align-items: start;
		align-items: center;
	}
	
	.mainvisual__inner > *:nth-child(1) {
		grid-column: 1;
	}
	
	.mainvisual__inner > *:nth-child(2) {
		grid-column: 3;
	}
	
	.mainvisual__inner > *:nth-child(3) {
		grid-column: 5;
	}
}

@media (min-width: 990px) {
	.mainvisual__inner {
		padding: 0;
	}
}

.mainvisual__media {
	border-radius: 16px;
	overflow: hidden;
}

.mainvisual__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.mainvisual__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 48px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

@media (min-width: 960px) {
	.mainvisual__content {
		gap: 32px;
		margin-top: 0;
	}
}

.mainvisual__title {
	display: block;
	margin: 48px 0 64px;
	text-align: center;
}

.mainvisual__title-img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 270px;
	margin: 0 auto;
}

@media (min-width: 960px) {
	.mainvisual__title {
		margin: 0;
		text-align: left;
	}

	.mainvisual__title-img {
		margin: 0;
	}
}

.mainvisual__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: #8abf3b;
	color: #fff;
	text-decoration: none;
	padding: 18px 32px;
	border-radius: 12px;
	font-size: 1.8rem;
	font-weight: 700;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	border: 2px solid #8abf3b;
	width: 100%;
	box-sizing: border-box;
	max-width: 480px;
	margin: 0 auto;
}

.mainvisual__button:hover {
	background: #fff;
	color: #8abf3b;
	border-color: #8abf3b;
}

@media (min-width: 960px) {
	.mainvisual__button {
		padding: 20px 40px;
		font-size: 2rem;
	}
}

.mainvisual__button-icon {
	display: block;
	width: 22px;
	height: 21px;
	flex-shrink: 0;
}

.mainvisual__button-icon--green {
	display: none;
}

.mainvisual__button:hover .mainvisual__button-icon--white {
	display: none;
}

.mainvisual__button:hover .mainvisual__button-icon--green {
	display: block;
}

.mainvisual__events {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
}

@media (max-width: 960px) {
	.mainvisual__events {
		margin-top: 24px;
	}
}


.mainvisual__event-card {
	flex: 0 0 calc(50% - 8px);
	max-width: calc(50% - 8px);
}

@media (min-width: 960px) {
	.mainvisual__events {
		flex-direction: column;
	}
	
	.mainvisual__event-card {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.mainvisual__event-link {
	display: block;
	border: 1px solid #B0C8E5;
	border-radius: 12px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	text-decoration: none;
	position: relative;
}

.mainvisual__event-link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.mainvisual__event-link:hover img {
	transform: scale(1.1);
}

.mainvisual__event-text {
	margin-top: 12px;
	color: #316AB0;
	font-size: 1.2rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.5;
}

@media (min-width: 960px) {
	.mainvisual__event-text {
		margin-top: 8px;
		font-size: 1.2rem;
	}
}

/* ヘッダー/フッターの簡易スタイル */
/* Header (BEM) */
.header {
	background: transparent;
	padding: 8px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: background-color 0.3s ease;
}

.header.is-scrolled {
	background: #fff;
}

@media (min-width: 960px) {
	.header {
		padding: 10px 0;
	}
}

.header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	flex-direction: column;
}

@media (min-width: 960px) {
	.header__inner {
		gap: 0;
	}
}

@media (min-width: 990px) {
	.header__inner {
		padding: 0 16px;
	}
}

.header__top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

@media (min-width: 960px) {
	.header__top {
		gap: 24px;
	}
}

.header__brand {
	display: flex;
	flex-direction: column;
}

@media (min-width: 960px) {
	.header__brand {
		flex-direction: row;
		align-items: baseline;
		gap: 12px;
	}
}

.header__logo {
	font-weight: 700;
	font-size: 1.8rem;
	text-decoration: none;
	color: inherit;
}

@media (min-width: 960px) {
	.header__logo {
		font-size: 2rem;
	}
}

.header__logo-img {
	display: block;
	height: 28px;
}

@media (min-width: 960px) {
	.header__logo-img {
		height: 34px;
	}
}

.header__tagline {
	font-size: 1.2rem;
	color: #666;
}

@media (min-width: 960px) {
	.header__tagline {
		font-size: 1.3rem;
	}
}

.header__utilities {
	display: flex;
	align-items: center;
	gap: 12px;
}

@media (min-width: 960px) {
	.header__utilities {
		gap: 16px;
	}
}

.header__utilities .header__search {
	display: none;
}

@media (min-width: 960px) {
	.header__utilities .header__search {
		display: block;
	}
}

.header__search--mobile {
	display: block;
	padding: 20px 4% 12px;
	margin-top: 8px;
}

.header__search--mobile input[type="search"],
.header__search--mobile .search-field {
	padding: 12px 12px;
}

.header__search--mobile button[type="submit"],
.header__search--mobile input[type="submit"],
.header__search--mobile .search-submit {
	padding: 12px 12px;
}

@media (min-width: 960px) {
	.header__search--mobile {
		display: none;
	}
}

.header__search form {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1px solid #8abf3b;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.header__search form label {
	flex: 1;
	display: flex;
}

.header__search input[type="search"],
.header__search .search-field {
	border: 0;
	border-radius: 0;
	padding: 8px 12px;
	min-width: 160px;
	outline: none;
	flex: 1;
	width: 100%;
	font-size: 1.2rem;
}

.header__nav .header__search input[type="search"],
.header__nav .header__search .search-field {
	padding: 16px 12px;
}

.header__nav .header__search .search-submit {
	padding: 16px 16px;
}

@media (min-width: 960px) {
	.header__search input[type="search"],
	.header__search .search-field {
		min-width: 220px;
		padding: 6px 16px;
		font-size: 1.2rem;
	}
}

.header__search input[type="search"]::placeholder,
.header__search .search-field::placeholder {
	color: #5A7E2C;
	font-weight: 400;
	font-size: 1.2rem;
	letter-spacing: 0.24em;
}

.header__search button[type="submit"],
.header__search input[type="submit"],
.header__search .search-submit {
	background: #8abf3b;
	border: 0;
	border-radius: 0;
	padding: 8px 12px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 31px;
	transition: opacity 0.3s;
}

.header__search button[type="submit"]:hover,
.header__search input[type="submit"]:hover,
.header__search .search-submit:hover {
	opacity: 0.9;
}

.header__search button[type="submit"] img,
.header__search input[type="submit"] img,
.header__search .search-submit img {
	display: block;
	width: 16px;
	height: 15px;
}

@media (min-width: 960px) {
	.header__search button[type="submit"],
	.header__search input[type="submit"],
	.header__search .search-submit {
		padding: 6px 8px;
		min-width: 31px;
	}
}

.header__lang {
	border: 1px solid #DD8ABE;
	background: #fff;
	border-radius: 8px;
	padding: 8px 12px;
	cursor: pointer;
	color: #d95caa;
	font-size: 1.2rem;
}

/* GTranslate styles */
.header__utilities .gtranslate_wrapper {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border: 1px solid #DD8ABE;
	background: #fff;
	border-radius: 8px;
	padding: 0;
	overflow: hidden;
}

.header__utilities .gtranslate_wrapper .glink {
	display: inline-block;
	padding: 8px 12px;
	cursor: pointer;
	color: #d95caa;
	font-size: 1.2rem;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease;
	border: none;
	background: transparent;
}

.header__utilities .gtranslate_wrapper .glink:hover {
	background: #f5f5f5;
}

.header__utilities .gtranslate_wrapper .glink.gt-current-lang {
	background: #d95caa;
	color: #fff;
	font-weight: 700;
}

.header__utilities .gtranslate_wrapper #google_translate_element2 {
	display: none;
}

@media (min-width: 960px) {
	.header__lang {
		padding: 4px 16px;
	}

	.header__utilities .gtranslate_wrapper .glink {
		padding: 4px 16px;
	}
}

.header__sns {
	display: none;
	align-items: center;
	gap: 10px;
}

@media (min-width: 960px) {
	.header__sns {
		display: flex;
	}
}

.header__sns-link {
	color: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.header__toggle {
	appearance: none;
	background: none;
	border: none;
	padding: 8px;
	margin-left: auto;
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

@media (min-width: 960px) {
	.header__toggle {
		display: none;
	}
}

.header__toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: #222;
	border-radius: 1px;
}

.header__nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 90%;
	background: #fff;
	z-index: 1001;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
}

@media (min-width: 960px) {
	.header__nav {
		position: static;
		display: block;
		width: auto;
		background: transparent;
		transform: none;
		overflow-y: visible;
		transition: none;
	}
}

.header--open .header__nav {
	transform: translateX(0);
}

.header__bottom {
	width: 100%;
	margin-top: 8px;
}

@media (min-width: 960px) {
	.header__bottom {
		margin-top: 10px;
	}
}

.header__bottom .header__nav {
	transform: translateX(100%);
}

@media (min-width: 960px) {
	.header__bottom .header__nav {
		transform: none;
	}
}

.header--open .header__bottom .header__nav {
	transform: translateX(0);
}

.header__menu {
	list-style: none;
	margin: 0;
	padding: 80px 4% 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: flex-start;
}

@media (min-width: 960px) {
	.header__menu {
		padding: 0;
		flex-direction: row;
		align-items: center;
		gap: 24px;
		justify-content: flex-end;
	}
}

.header__menu li {
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.header__menu li + li {
	border-top: none;
}

.header__menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 8px;
	color: #222;
	text-decoration: none;
	font-size: 1.4rem;
	transition: opacity 0.3s;
	position: relative;
}

.header__menu li a::after {
	content: '';
	display: block;
	width: 10px;
	height: 18px;
	background-image: url('../img/icon_arrow_pink.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

.header__menu li a:hover {
	opacity: 0.7;
}

@media (min-width: 960px) {
	.header__menu li {
		border-top: none;
		border-bottom: none;
	}

	.header__menu li a {
		padding: 8px 0;
		font-size: 1.6rem;
	}

	.header__menu li a::after {
		display: none;
	}
}

.header__nav-close {
	display: block;
	width: 100%;
	padding: 20px 8px;
	margin-top: 8px;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	background: transparent;
	border-left: none;
	border-right: none;
	color: #222;
	font-size: 1.4rem;
	cursor: pointer;
	text-align: center;
	transition: opacity 0.3s;
}

.header__nav-close:hover {
	opacity: 0.7;
}

@media (min-width: 960px) {
	.header__nav-close {
		display: none;
	}
}

.header__nav-sns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 20px 4% 24px;
	margin-top: 8px;
}

@media (min-width: 960px) {
	.header__nav-sns {
		display: none;
	}
}

.header__nav-sns-link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #222;
	text-decoration: none;
	transition: opacity 0.3s;
}

.header__nav-sns-link:hover {
	opacity: 0.7;
}

.header__nav-sns-link svg {
	display: block;
	width: 30px;
	height: 30px;
}

.header__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	cursor: pointer;
}

@media (min-width: 960px) {
	.header__overlay {
		display: none;
	}
}

.header--open .header__overlay {
	opacity: 1;
	visibility: visible;
}

.header--open {
	overflow: hidden;
}

@media (min-width: 960px) {
	.header--open {
		overflow: visible;
	}
}

/* Footer (BEM) */
.footer {
	border-top: 1px solid #707070;
	max-width: 990px;
	margin: 0 auto;
	color: #444;
	font-size: 1.4rem;
	padding: 20px 0;
}

@media (min-width: 960px) {
	.footer {
		padding: 28px 0;
	}
}

.footer__inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0 16px;
}

@media (min-width: 960px) {
	.footer__inner {
		gap: 20px;
	}
}

.footer__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer__row--top {
	gap: 16px;
}

@media (min-width: 960px) {
	.footer__row--top {
		gap: 24px;
	}
}

.footer__nav {
	/* container for menu */
}

.footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
}

@media (min-width: 960px) {
	.footer__menu {
		gap: 12px 24px;
	}
}

.footer__menu li a {
	color: #222;
	text-decoration: none;
	font-size: 1.4rem;
}

.footer__menu li a:hover {
	text-decoration: underline;
}

.footer__sns {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer__sns-link {
	display: inline-flex;
	align-items: center;
}

.footer__sns-icon {
	display: block;
	width: 48px;
	height: auto;
}

@media (min-width: 960px) {
	.footer__sns-icon {
		width: 20px;
		height: auto;
	}
}

.footer__row--bottom {
	gap: 12px;
	flex-direction: column;
	align-items: flex-start;
}

@media (min-width: 960px) {
	.footer__row--bottom {
		flex-direction: row;
		align-items: center;
	}
}

.footer__legal {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer__legal-link {
	color: #222;
	text-decoration: none;
	font-size: 1.4rem;
}

.footer__legal-link:hover {
	text-decoration: underline;
}

.footer__separator {
	color: #aaa;
}

.footer__copyright {
	margin-left: auto;
	color: #222;
	font-size: 1.4rem;
}

/* 既存の .site-nav はBEM移行に伴い非推奨（互換保持のため残置） */
.site-nav .menu {
	list-style: none;
	display: flex;
	gap: 16px;
}

/* Event */
.event__title {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 32px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #3b3b3b;
	position: relative;
}

@media (min-width: 960px) {
	.event__title {
		margin-bottom: 40px;
		font-size: 2rem;
	}
}

.event__title-icon {
	display: block;
	width: 40px;
	flex-shrink: 0;
	margin-right: 12px;
}

@media (min-width: 960px) {
	.event__title-icon {
		width: 65px;
		height: 66px;
	}
}

@media (min-width: 960px) {
	.event__title-icon {
		margin-right: 16px;
	}
}

@media (min-width: 990px) {
	.event__title-icon {
		position: absolute;
		left: -90px;
		margin-right: 0;
	}
}

.event__title-en {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: "Lao MN", system-ui, -apple-system, sans-serif;
	font-weight: normal;
	font-size: 2rem;
}

@media (min-width: 990px) {
	.event__title-en {
		font-size: 3rem;
	}
}

.event__title-ja {
	display: inline-block;
	margin-left: 8px;
	font-weight: normal;
	font-size: 1.4rem;
}

@media (min-width: 960px) {
	.event__title-ja {
		margin-left: 12px;
	}
}

.event__title-line {
	display: inline-block;
	flex: 1;
	height: 1px;
	background: #F4C959;
	margin-left: 12px;
}

@media (min-width: 960px) {
	.event__title-line {
		margin-left: 16px;
	}
}

/* Listing (index) */
.listing {
	display: block;
}

.listing__sr {
	/* スクリーンリーダー用タイトル */
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

.listing__header {
	margin-bottom: 20px;
}

@media (min-width: 960px) {
	.listing__header {
		margin-bottom: 24px;
	}
}

.listing__title {
	font-size: 2rem;
	font-weight: 700;
}

@media (min-width: 960px) {
	.listing__title {
		font-size: 2.2rem;
	}
}

.listing__desc {
	margin-top: 6px;
	color: #666;
	font-size: 1.4rem;
}

.listing__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (min-width: 960px) {
	.listing__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}

.listing__grid--3 {
	/* 明示的に3カラム狙い */
}

.listing__pagination {
	margin-top: 24px;
}
.listing__more {
	margin-top: 24px;
	display: flex;
	justify-content: flex-end;
}

@media (min-width: 960px) {
	.listing__more {
		margin-top: 28px;
	}
}

.listing__more-link {
	color: #5c4a18; /* 茶系(仮) */
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.listing__more-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #f3b600; /* 黄色(仮) */
	border-radius: 50%;
}

@media (min-width: 960px) {
	.listing__pagination {
		margin-top: 28px;
	}
}

.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	flex-wrap: wrap;
}

@media (min-width: 960px) {
	.nav-links {
		margin-top: 28px;
		gap: 12px;
	}
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 8px 12px;
	color: #222;
	text-decoration: none;
	font-size: 1.4rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover {
	background: #8abf3b;
	color: #fff;
	border-color: #8abf3b;
}

.nav-links .current {
	background: #8abf3b;
	color: #fff;
	border-color: #8abf3b;
}

.nav-links .prev,
.nav-links .next {
	font-weight: 700;
}

.listing__empty {
	color: #666;
}

.listing__category-filter {
	margin-top: 24px;
	margin-bottom: 32px;
}

@media (min-width: 960px) {
	.listing__category-filter {
		margin-top: 32px;
		margin-bottom: 40px;
	}
}

.listing__category-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 14px;
	color: #222;
}

@media (min-width: 960px) {
	.listing__category-title {
		font-size: 1.8rem;
	}
}

.listing__category-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.listing__category-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border: 1px solid #F4C959;
	border-radius: 8px;
	background: #fff;
	color: #222;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 400;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.listing__category-button:hover {
	background: #F4C959;
	color: #222;
	border-color: #F4C959;
}

.listing__category-button.is-active {
	background: #F4C959;
	color: #222;
	border-color: #F4C959;
	font-weight: 700;
}

/* Card */
.card {
	border: 1px solid #e8e2d3; /* 淡い枠色(仮) */
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
}

/* Shop post type - green border */
.type-shop.card {
	border-color: #8abf3b;
}

/* Post type - yellow border */
.type-post.card {
	border-color: #F4C959;
}

/* Content with sidebar for front page */
.content-with-sidebar {
	width: 100%;
}

.content-with-sidebar .content {
	max-width: 990px;
	margin: 0 auto;
	padding: 0 16px;
	box-sizing: border-box;
}

/* Finder (search & category blocks) */
.finder {
}

@media (min-width: 960px) {
	.finder {
	}
}

.finder__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 14px;
}

@media (min-width: 960px) {
	.finder__title {
		font-size: 1.8rem;
	}
}

.finder__title--second {
	margin-top: 28px;
}

.finder__title-bullet {
	display: inline-block;
	width: 12px;
	height: 18px;
	flex-shrink: 0;
}

.finder__form {
	display: grid;
	grid-template-columns: 1fr 56px;
	gap: 0;
	border: 1px solid #8abf3b;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 22px;
}

.finder__label {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

.finder__input {
	padding: 16px 18px;
	border: 0;
	outline: none;
	font-size: 1.6rem;
	color: #3b3b3b;
}

.finder__input::placeholder {
	color: #5A7E2C;
	font-weight: 700;
	font-size: 1.6rem;
}

@media (min-width: 960px) {
	.finder__input {
		font-size: 1.7rem;
	}
}

.finder__button {
	background: #8abf3b;
	border: 0;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.finder__icon {
	display: block;
	width: 22px;
	height: 21px;
}

/* Search Form - finder__formと同じスタイル */
.search-form {
	display: grid;
	grid-template-columns: 1fr 56px;
	gap: 0;
	border: 1px solid #8abf3b;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.search-form label {
	flex: 1;
	display: flex;
}

.search-field {
	padding: 16px 18px;
	border: 0;
	outline: none;
	font-size: 1.6rem;
	color: #3b3b3b;
	width: 100%;
}

@media (min-width: 960px) {
	.search-field {
		font-size: 1.7rem;
	}
}

.search-field::placeholder {
	color: #5A7E2C;
	font-weight: 700;
	font-size: 1.6rem;
}

.search-submit {
	background: #8abf3b;
	border: 0;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}

.search-submit img {
	display: block;
	width: 22px;
	height: 21px;
}

.finder__map {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	margin-top: 20px;
}

.finder__map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (min-width: 960px) {
	.finder__map {
		margin-top: 28px;
	}
}

.category-links {
	margin-bottom: 24px;
}

.category-links__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.finder .category-links__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.page-content .finder .category-links__grid--inline {
	display: flex;
	flex-wrap: wrap;
	grid-template-columns: none;
}

@media (min-width: 960px) {
	.finder .category-links__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
}

.category-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	border: 1px solid #8abf3b;
	border-radius: 12px;
	text-decoration: none;
	color: #3b3b3b;
	background: #fff;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.category-links__grid--inline .category-link {
	padding: 8px 16px;
}

.finder .category-link {
	margin-bottom: 0;
}

.category-link:hover {
	background: #8abf3b;
	color: #fff;
	border-color: #8abf3b;
}

.category-link__text {
	font-size: 1.6rem;
	font-weight: 700;
	color: #5A7E2C;
	letter-spacing: 0.02em;
	transition: color 0.3s ease;
	text-align: center;
	flex: 1;
}

.category-link__count {
	font-size: 1.2rem;
	font-weight: 400;
	margin-left: 4px;
}

.category-link:hover .category-link__text {
	color: #fff;
}

.category-link__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 18px;
	flex-shrink: 0;
}

.category-link__arrow img {
	display: block;
	width: 100%;
	height: 100%;
	transition: filter 0.3s ease;
}

.category-link:hover .category-link__arrow img {
	filter: brightness(0) invert(1);
}

.category-link.is-active {
	background: #8abf3b;
	color: #fff;
	border-color: #8abf3b;
}

.category-link.is-active .category-link__text {
	color: #fff;
}

.category-link.is-active .category-link__arrow img {
	filter: brightness(0) invert(1);
}

/* Yellow version for archive category buttons */
.category-link--yellow {
	border-color: #F4C959;
	justify-content: center;
	padding: 8px 24px;
}

.category-link--yellow .category-link__text {
	color: #222;
}

.category-link--yellow:hover {
	background: #F4C959;
	color: #222;
	border-color: #F4C959;
}

.category-link--yellow:hover .category-link__text {
	color: #fff;
}

.category-link--yellow.is-active {
	background: #F4C959;
	color: #222;
	border-color: #F4C959;
}

.category-link--yellow.is-active .category-link__text {
	color: #222;
}

/* About */
.about {

}

.about__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 960px) {
	.about__inner {
		grid-template-columns: 1fr 1fr;
		align-items: center;
		gap: 36px;
	}
}

.about__media {
	border-radius: 16px;
	overflow: hidden;
}

.about__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.about__title {
	display: flex;
	align-items: center;
	gap: 0;
	margin-top: 32px;
	margin-bottom: 32px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #3b3b3b;
	position: relative;
}

@media (min-width: 960px) {
	.about__title {
		margin-bottom: 40px;
		font-size: 2rem;
	}
}

.about__title-icon {
	display: block;
	width: 40px;
	flex-shrink: 0;
	margin-right: 12px;
}

@media (min-width: 960px) {
	.about__title-icon {
		width: 65px;
		height: 66px;
	}
}

@media (min-width: 960px) {
	.about__title-icon {
		margin-right: 16px;
	}
}

@media (min-width: 990px) {
	.about__title-icon {
		position: absolute;
		left: -90px;
		margin-right: 0;
	}
}

.about__title-en {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: "Lao MN", system-ui, -apple-system, sans-serif;
	font-weight: normal;
	font-size: 2rem;
}

@media (min-width: 990px) {
	.about__title-en {
		font-size: 3rem;
	}
}

.about__title-ja {
	display: inline-block;
	margin-left: 8px;
	font-weight: normal;
	font-size: 1.4rem;
}

@media (min-width: 960px) {
	.about__title-ja {
		margin-left: 12px;
	}
}

.about__title-line {
	display: inline-block;
	flex: 1;
	height: 1px;
	background: #DD8ABE;
	margin-left: 12px;
}

@media (min-width: 960px) {
	.about__title-line {
		margin-left: 16px;
	}
}

.shops__title-icon {
	display: block;
	width: 40px;
	flex-shrink: 0;
	margin-right: 12px;
}

@media (min-width: 960px) {
	.shops__title-icon {
		width: 65px;
		height: 66px;
	}
}

@media (min-width: 960px) {
	.shops__title-icon {
		margin-right: 16px;
	}
}

@media (min-width: 990px) {
	.shops__title-icon {
		position: absolute;
		left: -90px;
		margin-right: 0;
	}
}

.shops__title-line {
	display: inline-block;
	flex: 1;
	height: 1px;
	background: #A1C86D;
	margin-left: 12px;
}

@media (min-width: 960px) {
	.shops__title-line {
		margin-left: 16px;
	}
}

.about__text p + p {
	margin-top: 14px;
}

.about__cta {
	margin-top: 28px;
}

.about__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: #d065a8;
	color: #fff;
	text-decoration: none;
	padding: 16px 24px;
	border-radius: 12px;
	width: 100%;
	max-width: 260px;
	position: relative;
	border: 2px solid #d065a8;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.about__button:hover {
	background: #fff;
	color: #d065a8;
	border-color: #d065a8;
}

.about__button-text {
	flex: 1;
	text-align: center;
}

.about__button-icon {
	display: block;
	width: 12px;
	height: 18px;
	flex-shrink: 0;
	position: absolute;
	right: 24px;
}

.about__button-icon--pink {
	display: none;
}

.about__button:hover .about__button-icon--white {
	display: none;
}

.about__button:hover .about__button-icon--pink {
	display: block;
}

/* Partners (logo cards) */
.partners {
	padding: 0;
}

@media (min-width: 960px) {
	.partners {
		padding: 0;
	}
}

.partners__title {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 32px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #3b3b3b;
	position: relative;
}

@media (min-width: 960px) {
	.partners__title {
		margin-bottom: 40px;
		font-size: 2rem;
	}
}

.partners__title-icon {
	display: block;
	width: 40px;
	flex-shrink: 0;
	margin-right: 12px;
}

@media (min-width: 960px) {
	.partners__title-icon {
		width: 65px;
		height: 66px;
	}
}

@media (min-width: 960px) {
	.partners__title-icon {
		margin-right: 16px;
	}
}

@media (min-width: 990px) {
	.partners__title-icon {
		position: absolute;
		left: -90px;
		margin-right: 0;
	}
}

.partners__title-en {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: "Lao MN", system-ui, -apple-system, sans-serif;
	font-weight: normal;
	font-size: 2rem;
}

@media (min-width: 990px) {
	.partners__title-en {
		font-size: 3rem;
	}
}

.partners__title-ja {
	display: inline-block;
	margin-left: 8px;
	font-weight: normal;
	font-size: 1.4rem;
}

@media (min-width: 960px) {
	.partners__title-ja {
		margin-left: 12px;
	}
}

.partners__title-line {
	display: inline-block;
	flex: 1;
	height: 1px;
	background: #3366aa;
	margin-left: 12px;
}

@media (min-width: 960px) {
	.partners__title-line {
		margin-left: 16px;
	}
}

.partners__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

@media (min-width: 960px) {
	.partners__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}
}

.partner-card {
	text-align: center;
}

.partner-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.partner-card__thumb {
	border: 2px solid #e8e2d3;
	border-radius: 12px;
	background: #fff;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.partner-card__thumb img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.partner-card__caption {
	margin-top: 16px;
	color: #3366aa; /* リンク風の色 */
	font-weight: 700;
}

.card__thumb {
	display: block;
	background: #f5f5f5;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.card__thumb:hover img {
	transform: scale(1.1);
}

.card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #fff;
	color: #6b6b6b;
	border: 1px solid #e0e0e0;
	border-radius: 999px;
	font-size: 1.2rem;
	line-height: 1;
	padding: 6px 10px;
}

.card__body {
	padding: 14px 16px 18px;
}

@media (min-width: 960px) {
	.card__body {
		padding: 14px;
	}
}

.card__title {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}

@media (min-width: 960px) {
	.card__title {
		font-size: 1.7rem;
	}
}

.card__title a {
	color: #222;
	text-decoration: none;
}

.card__meta {
	margin-top: 0;
	color: #777;
	font-size: 1.3rem;
}

.card__date {
	display: block;
	margin-bottom: 6px;
	color: #777;
	font-size: 1.3rem;
}

.site-sidebar {
	position: relative;
}

/* Page */
.page-content {
	background: #F8F6F1;
	padding: 40px 0;
}

@media (min-width: 960px) {
	.page-content {
		padding: 0;
	}
}

.page-content .container {
	padding: 0;
}

.page__inner {
	display: block;
	max-width: 990px;
	margin: 0 auto;
	padding: 0 16px;
	box-sizing: border-box;
}

.page__title {
	font-size: 2.8rem;
	font-weight: 400;
	color: #222;
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 1px solid #D95CAA;
}

@media (min-width: 960px) {
	.page__title {
		font-size: 2.8rem;
		margin-bottom: 0;
	}
}

.page__nav {
	margin-top: 24px;
}

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

.page__nav-list li {
	margin-bottom: 12px;
}

.page__nav-list li a {
	display: block;
	color: #222;
	text-decoration: none;
	font-size: 3rem;
	line-height: 1.5;
	transition: opacity 0.3s;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", system-ui, sans-serif;
	font-weight: 300;
}

.page__nav-list li a:hover {
	opacity: 0.7;
}

.page__nav-separator {
	height: 1px;
	background: #ddd;
	margin: 16px 0;
}

.page__main {
	order: 0;
}

@media (min-width: 960px) {
	.page__main {
		order: 1;
	}
}

.page__entry-content {
	margin-bottom: 40px;
	font-size: 3rem;
	line-height: 1.6;
	color: #222;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", system-ui, sans-serif;
	font-weight: 300;
	padding-top: 0;
}

.page__entry-content .page__title {
	margin-bottom: 24px;
}

@media (min-width: 960px) {
	.page__entry-content {
		margin-bottom: 60px;
		padding-bottom: 32px;
	}
}

.page__entry-content p {
	margin-bottom: 0;
	white-space: pre-line;
}

.page__section {
	margin-bottom: 60px;
}

@media (min-width: 960px) {
	.page__section {
		margin-bottom: 80px;
	}
}

.page__section--latest .event__title-line {
	background: #F4C959;
}

.page__section--shops .event__title-line {
	background: #A1C86D;
}

.page__content {
	font-size: 1.6rem;
}

/* Single Post */
.single-post {
	margin-bottom: 60px;
}

@media (min-width: 960px) {
	.single-post {
		margin-bottom: 80px;
	}
}

.single-post__content {
	background: #fff;
	border: 1px solid #f4c959;
	border-radius: 16px;
	padding: 40px;
	position: relative;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.05);
}

.single-post__content--shop {
	border-color: #8abf3b;
}

@media (min-width: 960px) {
	.single-post__content {
		padding: 40px;
	}
}

.single-post__header {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 0;
}

.single-post__header--shop {
	border-bottom-color: #8abf3b;
}

@media (min-width: 960px) {
	.single-post__header {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 16px;
	}
}

.single-post__title {
	font-size: 2rem;
	font-weight: 700;
	color: #222;
	margin: 0;
	padding: 0;
	border: 0;
}

@media (min-width: 960px) {
	.single-post__title {
		font-size: 2rem;
		flex: 1;
	}
}

.single-post__badge {
	background: #fff;
	border: 1px solid #f4c959;
	border-radius: 16px;
	padding: 4px 12px;
	font-size: 1rem;
	font-weight: 700;
	color: #927321;
	line-height: 1;
	align-self: flex-start;
}

@media (min-width: 960px) {
	.single-post__badge {
		padding: 4px 12px;
		flex-shrink: 0;
		order: 1;
	}
	
	.single-post__title {
		order: 0;
	}
}

.single-post__body {
	margin-top: 24px;
	font-size: 1.6rem;
	line-height: 32px;
	color: #222;
}

@media (min-width: 960px) {
	.single-post__body {
		margin-top: 24px;
	}
}

.single-post__body p {
	margin-bottom: 0;
}

.single-post__body p + p {
	margin-top: 1em;
}

.single-post__shop-info {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid #ddd;
}

.single-post__content--shop .single-post__shop-info {
	border-top-color: #8abf3b;
}

.shop-info-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1.5rem;
	line-height: 1.8;
}

.shop-info-table th {
	width: 120px;
	padding: 4px 4px 0 0;
	text-align: center;
	font-weight: 700;
}

.shop-info-table__label {
	display: block;
	background: #8abf3b;
	color: #fff;
	border-radius: 100px;
	padding: 4px 12px;
}

.shop-info-table td {
	padding: 12px 0;
	color: #222;
}

@media (min-width: 960px) {
	.shop-info-table th {
		width: 140px;
		padding: 4px 4px 0 0;
	}

	.shop-info-table td {
		padding: 16px 0;
	}
}

/* Search Results */
.search__title {
	font-size: 2.4rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 32px;
	padding-bottom: 16px;
	border-bottom: 1px solid #ddd;
}

@media (min-width: 960px) {
	.search__title {
		font-size: 2.8rem;
		margin-bottom: 40px;
		padding-bottom: 20px;
	}
}

.search-results {
	list-style: none;
	padding: 0;
	margin: 0;
}

.search-results__item {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e8e2d3;
}

.search-results__item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

@media (min-width: 960px) {
	.search-results__item {
		margin-bottom: 24px;
		padding-bottom: 24px;
	}
}

.search-result {
	display: block;
}

.search-result__title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.5;
}

.search-result__title a {
	color: #222;
	text-decoration: none;
	transition: color 0.3s ease;
}

.search-result__title a:hover {
	color: #8abf3b;
}

@media (min-width: 960px) {
	.search-result__title {
		font-size: 2rem;
		margin-bottom: 12px;
	}
}

.search-result__excerpt {
	font-size: 1.4rem;
	line-height: 1.8;
	color: #666;
	margin-bottom: 12px;
}

@media (min-width: 960px) {
	.search-result__excerpt {
		font-size: 1.5rem;
		margin-bottom: 16px;
	}
}

.search-result__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.3rem;
	color: #999;
}

.search-result__date {
	font-size: 1.3rem;
}

.search-result__category {
	display: inline-block;
	padding: 4px 12px;
	background: #fff;
	border-radius: 4px;
	font-size: 1.2rem;
}

.search__pagination {
	margin-top: 40px;
}

@media (min-width: 960px) {
	.search__pagination {
		margin-top: 48px;
	}
}

.search__empty {
	text-align: center;
	padding: 60px 20px;
}

.search__empty-message {
	font-size: 1.6rem;
	color: #666;
	margin-bottom: 24px;
}

@media (min-width: 960px) {
	.search__empty {
		padding: 80px 20px;
	}

	.search__empty-message {
		font-size: 1.8rem;
		margin-bottom: 32px;
	}
}

/* ブロックエディタ共通スタイル */
.page__content,
.single-post__body {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #222;
}

.page__content p,
.single-post__body p {
	margin-bottom: 1.5em;
}

.page__content p:last-child,
.single-post__body p:last-child {
	margin-bottom: 0;
}

.page__content h2,
.single-post__body h2 {
	font-size: 2.4rem;
	font-weight: 700;
	color: #222;
	margin-top: 2em;
	margin-bottom: 1em;
	line-height: 1.4;
}

@media (min-width: 960px) {
	.page__content h2,
	.single-post__body h2 {
		font-size: 2.8rem;
		margin-top: 2.5em;
		margin-bottom: 1.2em;
	}
}

.page__content h3,
.single-post__body h3 {
	font-size: 2rem;
	font-weight: 700;
	color: #222;
	margin-top: 1.8em;
	margin-bottom: 0.8em;
	line-height: 1.4;
}

@media (min-width: 960px) {
	.page__content h3,
	.single-post__body h3 {
		font-size: 2.4rem;
		margin-top: 2em;
		margin-bottom: 1em;
	}
}

.page__content h4,
.single-post__body h4 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #222;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
	line-height: 1.4;
}

@media (min-width: 960px) {
	.page__content h4,
	.single-post__body h4 {
		font-size: 2rem;
		margin-top: 1.8em;
		margin-bottom: 1em;
	}
}

.page__content h5,
.single-post__body h5 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #222;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
	line-height: 1.4;
}

@media (min-width: 960px) {
	.page__content h5,
	.single-post__body h5 {
		font-size: 1.8rem;
		margin-top: 1.8em;
		margin-bottom: 1em;
	}
}

.page__content h6,
.single-post__body h6 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #222;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
	line-height: 1.4;
}

@media (min-width: 960px) {
	.page__content h6,
	.single-post__body h6 {
		font-size: 1.6rem;
		margin-top: 1.8em;
		margin-bottom: 1em;
	}
}

.page__content ul,
.single-post__body ul,
.page__content ol,
.single-post__body ol {
	margin: 1.5em 0;
	padding-left: 2em;
}

.page__content ul li,
.single-post__body ul li,
.page__content ol li,
.single-post__body ol li {
	margin-bottom: 0.8em;
}

.page__content ul li:last-child,
.single-post__body ul li:last-child,
.page__content ol li:last-child,
.single-post__body ol li:last-child {
	margin-bottom: 0;
}

.page__content a,
.single-post__body a {
	color: #316AB0;
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

.page__content a:hover,
.single-post__body a:hover {
	opacity: 0.7;
}

.page__content img,
.single-post__body img {
	max-width: 100%;
	height: auto;
	margin: 1.5em 0;
}

.page__content blockquote,
.single-post__body blockquote {
	margin: 1.5em 0;
	padding: 1em 1.5em;
	border-left: 4px solid #8abf3b;
	background: #f8f8f8;
	font-style: italic;
}

@media (min-width: 960px) {
	.page__content blockquote,
	.single-post__body blockquote {
		padding: 1.5em 2em;
	}
}

.page__content pre,
.single-post__body pre {
	margin: 1.5em 0;
	padding: 1em;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow-x: auto;
	font-size: 1.4rem;
	line-height: 1.6;
}

@media (min-width: 960px) {
	.page__content pre,
	.single-post__body pre {
		padding: 1.5em;
		font-size: 1.4rem;
	}
}

.page__content code,
.single-post__body code {
	background: #f5f5f5;
	padding: 0.2em 0.4em;
	border-radius: 3px;
	font-size: 0.9em;
	font-family: monospace;
}

.page__content pre code,
.single-post__body pre code {
	background: transparent;
	padding: 0;
}

.page__content table,
.single-post__body table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5em 0;
}

.page__content table th,
.single-post__body table th,
.page__content table td,
.single-post__body table td {
	padding: 0.8em 1em;
	border: 1px solid #ddd;
	text-align: left;
}

@media (min-width: 960px) {
	.page__content table th,
	.single-post__body table th,
	.page__content table td,
	.single-post__body table td {
		padding: 1em 1.5em;
	}
}

.page__content table th,
.single-post__body table th {
	background: #f8f8f8;
	font-weight: 700;
}

.page__content hr,
.single-post__body hr {
	margin: 2em 0;
	border: 0;
	border-top: 1px solid #ddd;
}

@media (min-width: 960px) {
	.page__content hr,
	.single-post__body hr {
		margin: 2.5em 0;
	}
}
