@charset "utf-8";

/* --------------------------------------------------
   Font Awesome
-------------------------------------------------- */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* --------------------------------------------------
   Base
-------------------------------------------------- */
:root {
	--bg1: #f8f6f1;
	--bg2: #f2eee7;
	--white: #ffffff;
	--text: #333333;
	--text-light: #666666;
	--accent: #8f7650;
	--accent-dark: #6f5937;
	--border: #e6dfd2;
	--shadow: 0 8px 24px rgba(0,0,0,0.08);
	--max-width: 1100px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	color: var(--text);
	background: var(--bg1);
	font-family:
	"Yu Mincho",
	"Hiragino Mincho ProN",
	"YuMincho",
	serif;
	line-height: 2;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	opacity: 0.75;
}

p, h1, h2, h3, h4, ul, ol, dl, dt, dd, figure {
	margin: 0;
	padding: 0;
}

ul li,
ol li {
	margin-left: 1.2em;
}

.look {
	display: inline-block;
	background: #f3efe8;
	padding: 0.2em 0.4em;
	border-radius: 3px;
}

.color-check {
	color: var(--accent-dark);
	font-weight: bold;
}

.c {
	text-align: center;
}

.mb30 {
	margin-bottom: 30px;
}

.mb5rem {
	margin-bottom: 5rem;
}

.dn {
	position: absolute;
	left: -9999px;
}

/* --------------------------------------------------
   trigger-point / header
-------------------------------------------------- */
#trigger-point {
	position: relative;
}

header {
	position: relative;
	z-index: 2;
}

.home header {
	position: relative;
	height: auto;
	padding: 20px 0 36px;
	overflow: visible;
	background: #EEEEEE;
}

body:not(.home) header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 24px 4%;
}

#logo {
	position: relative;
	z-index: 3;
	margin: 0;
}

.home #logo {
	position: absolute;
	left: 24px;
	top: 18px;
	transform: none;
	text-align: left;
	z-index: 3;
	width: auto;
	max-width: none;
}

.home #logo a {
	display: inline-block;
	font-family: "sawarabi-mincho", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #222222;
	text-shadow: none;
	white-space: nowrap;
	font-size: 1.9rem;
	letter-spacing: 0.07em;
	line-height: 1.2;
}

body:not(.home) #logo {
	width: auto;
}

body:not(.home) #logo a {
	display: inline-block;
	font-family: "sawarabi-mincho", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: clamp(1.4rem, 2vw, 2rem);
	letter-spacing: 0.08em;
	line-height: 1.4;
	color: #222222;
	white-space: nowrap;
}

#logo img {
	display: block;
	width: 100%;
	height: auto;
}

.tel {
	font-size: 0.95rem;
	color: var(--accent-dark);
	letter-spacing: 0.08em;
	white-space: nowrap;
}

/* --------------------------------------------------
   Main image
-------------------------------------------------- */
#mainimg {
	position: relative;
	inset: auto;
	width: min(92vw, 1180px);
	margin: 0 auto;
	overflow: visible;
}

#mainimg img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

#mainimg::after {
	content: none;
}
/* --------------------------------------------------
   Menubar
-------------------------------------------------- */
#menubar {
	background: rgba(255,255,255,0.94);
	border-top: 1px solid rgba(255,255,255,0.2);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(8px);
	position: sticky;
	top: 0;
	z-index: 100;
}

#menubar nav {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 4%;
}

#menubar nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
}

#menubar nav ul li {
	position: relative;
	margin: 0;
}

#menubar nav ul li > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	padding: 18px 20px 16px;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	line-height: 1.4;
}

#menubar nav ul li > a span {
	display: block;
	margin-top: 4px;
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	color: var(--accent);
	font-family: sans-serif;
	text-transform: uppercase;
}

#menubar nav ul li > a:hover {
	background: var(--bg2);
	opacity: 1;
}

#menubar nav ul li ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 220px;
	background: rgba(255,255,255,0.98);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	z-index: 20;
}

#menubar nav ul li:hover ul {
	display: block;
}

#menubar nav ul li ul li a {
	display: block;
	padding: 12px 16px;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--border);
}

#menubar nav ul li ul li:last-child a {
	border-bottom: none;
}

/* --------------------------------------------------
   Contents
-------------------------------------------------- */
#contents {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 32px 4% 50px;
}

main section + section {
	margin-top: 30px;
}

section {
	background: var(--white);
	padding: 28px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.03);
	border: 1px solid #f0ebe3;
}

#contents p + p {
	margin-top: 12px;
}

/* --------------------------------------------------
   Headings
-------------------------------------------------- */
h2 {
	font-size: clamp(1.4rem, 2vw, 2rem);
	font-weight: normal;
	line-height: 1.6;
	margin-bottom: 18px;
	letter-spacing: 0.08em;
}

h2 .uline {
	display: inline-block;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--accent);
}

h2 .small {
	display: inline-block;
	margin-left: 16px;
	font-size: 0.72rem;
	color: var(--accent);
	letter-spacing: 0.18em;
	font-family: sans-serif;
	text-transform: uppercase;
	vertical-align: middle;
}

h3 {
	font-size: 1.12rem;
	font-weight: normal;
	line-height: 1.8;
	margin: 28px 0 12px;
	color: var(--accent-dark);
}

h3.type2 {
	margin-top: 28px;
	margin-bottom: 14px;
	padding: 10px 16px;
	border-left: 6px solid var(--accent);
	background: #f6f1e8;
	font-size: 1rem;
	letter-spacing: 0.08em;
	line-height: 1.6;
	color: var(--accent-dark);
}

/* --------------------------------------------------
   Welcome / Recommend image layouts
-------------------------------------------------- */
.welcome-grid,
.recommend-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 36px;
	align-items: center;
}

.welcome-text p {
	margin-top: 10px;
}

.recommend-text ul {
	margin: 0;
	padding-left: 1.2em;
}

.recommend-text li {
	margin-bottom: 10px;
	line-height: 1.95;
}

.welcome-image img,
.recommend-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.welcome-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.welcome-gallery-col {
	display: grid;
	gap: 28px;
	align-content: start;
}

.welcome-gallery-item {
	background: var(--white);
}

.welcome-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	aspect-ratio: 4 / 3;
}

/* --------------------------------------------------
   News list (.new)
-------------------------------------------------- */
.new {
	display: grid;
	grid-template-columns: 190px 1fr;
	row-gap: 14px;
	column-gap: 18px;
}

.new dt {
	font-size: 0.95rem;
	color: var(--accent-dark);
}

.new dd {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.95;
	color: var(--text-light);
}

.new dt span,
.icon-bg1 {
	display: inline-block;
	margin-left: 0;
	padding: 6px 12px;
	font-size: 0.82rem;
	line-height: 1.4;
	background: var(--accent);
	color: #fff;
	border-radius: 999px;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

/* --------------------------------------------------
   Table (.ta1)
-------------------------------------------------- */
.ta1 {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 26px;
}

.ta1 caption {
	caption-side: top;
	text-align: left;
	font-size: 1rem;
	color: var(--accent-dark);
	margin-bottom: 12px;
}

.ta1 th,
.ta1 td {
	border: 1px solid var(--border);
	padding: 12px 16px;
	vertical-align: top;
}

.ta1 th {
	width: 28%;
	background: var(--bg2);
	font-weight: normal;
	text-align: left;
	letter-spacing: 0.06em;
}

.ta1 td {
	background: #fff;
	color: var(--text);
	font-size: 0.96rem;
	line-height: 1.9;
}

/* --------------------------------------------------
   List menu
-------------------------------------------------- */
.list-menu {
	display: grid;
	gap: 18px;
}

.list {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 18px;
	position: relative;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--border);
}

.list figure {
	margin: 0;
}

.list figure img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.list .text h4 {
	font-size: 1.08rem;
	font-weight: normal;
	line-height: 1.7;
	margin-bottom: 8px;
	letter-spacing: 0.06em;
	color: var(--text);
}

.list .text p {
	color: var(--text-light);
	font-size: 0.98rem;
	line-height: 1.9;
}

.price {
	display: inline-block;
	margin-left: 12px;
	color: var(--accent-dark);
	font-size: 0.98rem;
	font-family: sans-serif;
	font-weight: 600;
}

.newicon {
	position: absolute;
	right: 0;
	top: 0;
	background: var(--accent);
	color: #fff;
	font-size: 0.74rem;
	padding: 4px 10px;
	letter-spacing: 0.08em;
	border-radius: 999px;
}

/* --------------------------------------------------
   Text menu
-------------------------------------------------- */
.text-menu {
	display: grid;
	grid-template-columns: 1fr auto;
	row-gap: 14px;
	column-gap: 18px;
	margin-top: 16px;
}

.text-menu dt,
.text-menu dd {
	padding-bottom: 10px;
	border-bottom: 1px dashed var(--border);
}

.text-menu dt {
	font-size: 0.98rem;
	color: var(--text);
	line-height: 1.9;
}

.text-menu dd {
	font-size: 0.96rem;
	color: var(--accent-dark);
	font-family: sans-serif;
	font-weight: 600;
}

/* --------------------------------------------------
   Links
-------------------------------------------------- */
.text-link {
	margin-top: 16px;
}

.text-link a {
	font-weight: bold;
	font-size: 1rem;
	text-decoration: underline;
	text-underline-offset: 4px;
	color: var(--accent-dark);
}

.text-link a:hover {
	opacity: 0.7;
}

/* --------------------------------------------------
   SNS
-------------------------------------------------- */
.sns-block {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--border);
}

.sns-note {
	font-size: 0.92rem;
	line-height: 1.9;
	color: var(--text-light);
	margin-bottom: 8px;
}

/* --------------------------------------------------
   Footer menu
-------------------------------------------------- */
#footermenu {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 4% 20px;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 24px;
}

#footermenu li {
	margin: 0;
}

#footermenu a {
	font-size: 0.86rem;
	letter-spacing: 0.08em;
	color: var(--text-light);
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
footer {
	background: #2d2d2d;
	color: rgba(255,255,255,0.82);
	padding: 36px 4% 44px;
	text-align: center;
}

.icons {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 18px;
	margin: 0 0 20px;
	padding: 0;
}

.icons li {
	margin: 0;
}

.icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 50%;
	color: #fff;
	font-size: 1rem;
}

.icons a:hover {
	background: rgba(255,255,255,0.08);
	opacity: 1;
}

#copyright {
	font-size: 0.78rem;
	line-height: 1.9;
}

#copyright small {
	display: block;
	color: rgba(255,255,255,0.76);
}

#copyright .pr {
	display: inline-block;
	margin-top: 8px;
}

#copyright .pr a {
	color: rgba(255,255,255,0.72);
}

#copyright .pr a:hover {
	color: #fff;
	opacity: 1;
}

.site-note {
	max-width: var(--max-width);
	margin: 0 auto 18px;
	padding: 0 4%;
	font-size: 0.82rem;
	line-height: 1.8;
	color: var(--text-light);
	text-align: center;
}

/* --------------------------------------------------
   Page top
-------------------------------------------------- */
.pagetop {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 90;
}

.pagetop a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(51,51,51,0.9);
	color: #fff;
	border-radius: 50%;
	box-shadow: var(--shadow);
	font-size: 1rem;
}

.pagetop a:hover {
	background: var(--accent);
	opacity: 1;
}

/* --------------------------------------------------
   Optional / hidden legacy parts
-------------------------------------------------- */
#message-parts {
	display: none;
}

/* --------------------------------------------------
   Hamburger
-------------------------------------------------- */
#menubar_hdr {
	display: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

#menubar_hdr span {
	transition: transform 0.3s, opacity 0.3s;
	transform-origin: center;
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */
@media screen and (max-width: 900px) {

	body:not(.home) header {
		flex-direction: column;
		align-items: flex-start;
	}

	.home header {
		height: 420px;
	}

	.home #logo {
		left: 16px;
		top: 14px;
		max-width: calc(100% - 88px);
	}

	/* 店名をさらに約10%縮小 */
	.home #logo a {
		font-size: clamp(0.86rem, 4.3vw, 1.1rem);
		letter-spacing: 0.025em;
		line-height: 1.15;
		white-space: nowrap;
	}

	body:not(.home) #logo a {
		font-size: clamp(0.9rem, 3.8vw, 1.1rem);
		letter-spacing: 0.04em;
	}

	.tel {
		font-size: 0.82rem;
	}

	/* スマホではメインビジュアルを少し下げる */
	.home #mainimg {
		top: 34px;
		right: 0;
		bottom: 0;
		left: 0;
	}

	#menubar {
		position: fixed;
		right: -100%;
		top: 0;
		width: 82%;
		max-width: 340px;
		height: 100vh;
		background: rgba(255,255,255,0.98);
		overflow-y: auto;
		transition: right 0.4s ease, box-shadow 0.4s ease;
		z-index: 999;
		padding-top: 84px;
		border-left: 1px solid var(--border);
		border-top: none;
	}

	#menubar.open {
		right: 0;
		box-shadow: -8px 0 24px rgba(0,0,0,0.12);
	}

	#menubar nav {
		padding: 0 22px 30px;
	}

	#menubar nav ul {
		display: block;
	}

	#menubar nav ul li > a {
		min-width: auto;
		align-items: flex-start;
		padding: 14px 0;
		border-bottom: 1px solid var(--border);
	}

	#menubar nav ul li ul {
		display: none;
		position: static;
		border: none;
		box-shadow: none;
		background: transparent;
		min-width: auto;
		padding: 6px 0 10px 10px;
	}

	#menubar nav ul li ul li a {
		padding: 8px 0;
		border-bottom: none;
		font-size: 0.88rem;
	}

	#menubar_hdr {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 6px;
		position: fixed;
		right: 16px;
		top: 16px;
		z-index: 2000;
		width: 48px;
		height: 48px;
		background: rgba(255,255,255,0.96);
		border: 1px solid var(--border);
		border-radius: 50%;
		padding: 0 12px;
		cursor: pointer;
	}

	#menubar_hdr span {
		display: block;
		height: 2px;
		background: var(--text);
		border-radius: 2px;
		pointer-events: none;
	}

	#menubar_hdr.ham span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	#menubar_hdr.ham span:nth-child(2) {
		opacity: 0;
	}

	#menubar_hdr.ham span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	body.menu-open {
		overflow: hidden;
		height: 100%;
	}

	#contents {
		padding-top: 26px;
	}

	section {
		padding: 22px;
	}

	.new {
		grid-template-columns: 1fr;
		row-gap: 8px;
	}

	.new dt span,
	.icon-bg1 {
		font-size: 0.8rem;
		padding: 6px 12px;
	}

	.list {
		grid-template-columns: 1fr;
	}

	.welcome-grid,
	.recommend-grid,
	.welcome-gallery {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.welcome-gallery-col {
		gap: 20px;
	}

	#footermenu {
		padding-bottom: 18px;
	}

	.pagetop {
		right: 14px;
		bottom: 14px;
	}
}

@media screen and (max-width: 600px) {

	body {
		font-size: 0.95rem;
	}

	.home header {
		height: 300px;
	}

	.home #logo {
		left: 14px;
		top: 12px;
		max-width: calc(100% - 76px);
	}

	/* さらに小さい画面ではもう少し縮小 */
	.home #logo a {
		font-size: clamp(0.76rem, 3.9vw, 0.94rem);
		letter-spacing: 0.015em;
		line-height: 1.14;
	}

	body:not(.home) #logo a {
		font-size: 0.9rem;
		letter-spacing: 0.03em;
	}

	.tel,
	.ta1 td,
	.ta1 th,
	.list .text p,
	.text-menu dt,
	.text-menu dd {
		font-size: 0.92rem;
	}

	section {
		padding: 20px;
	}

	h2 .small {
		display: block;
		margin: 8px 0 0;
	}

	.ta1,
	.ta1 tbody,
	.ta1 tr,
	.ta1 th,
	.ta1 td {
		display: block;
		width: 100%;
	}

	.ta1 th {
		border-bottom: none;
	}

	/* より狭い画面では画像を少しだけさらに下げる */
	.home #mainimg {
		top: 42px;
	}

	#menubar_hdr {
		width: 44px;
		height: 44px;
		right: 12px;
		top: 12px;
	}

	#copyright,
	#footermenu a,
	.site-note {
		font-size: 0.74rem;
	}

.table-title {
	margin: 0 0 12px;
	font-size: 1rem;
	color: var(--accent-dark);
	line-height: 1.6;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

@media screen and (max-width: 600px) {
	.table-title {
		font-size: 0.98rem;
		white-space: nowrap;
	}

.map-wrap {
	width: 100%;
	margin: 20px 0;
}

@media screen and (max-width: 900px) {
	.map-wrap iframe {
		height: 320px !important;
	}
}

@media screen and (max-width: 600px) {
	.map-wrap iframe {
		height: 260px !important;
	}


}