@charset "utf-8";

:root {
	--brand: #1b2244;
	/* 深い藍 */
	--accent: #c6a15b;
	/* 金寄りアクセント */
	--ink: #222;
	--muted: #6b7280;
	--bg: #ffffff;
	--bg-soft: #f6f7fb;
	--max: 1100px;
	--radius: 18px;
	--shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'Hiragino Mincho Pro', 'MS PMincho', 'IPAex Mincho', serif;
	line-height: 1.75;
	text-rendering: optimizeLegibility;
	font-kerning: normal
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: 0
}

a {
	color: var(--brand);
	text-decoration: none
}

a:hover {
	text-decoration: underline
}

#rooms,
#facility,
#plan,
#dining,
#sight,
#news,
#access {
	padding-top: 80px;
}



.container {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 16px
}

/* Header */
header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: saturate(180%) blur(8px);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .06)
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px
}

.brand img {
	height: 60px;
	width: auto
}

.brand .title {
	font-weight: 700;
	letter-spacing: .04em
}

.brand .subtitle {
	display: block;
	font-size: 12px;
	color: var(--muted);
	margin-top: -4px
}

.menu {
	display: flex;
	gap: 20px;
	align-items: center
}

.menu a {
	font-weight: 600;
	font-size: 16px;
}

.cta {
	background: var(--brand);
	color: #fff;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--brand);
	box-shadow: var(--shadow)
}

.cta:hover {
	opacity: .9;
	text-decoration: none
}

.burger {
	display: none
}

/* Hero */
.hero {
	position: relative
}

.hero .visual {
	aspect-ratio: 16/9;
	min-height: 46vh;
	background: url("../r1.jpg") center/cover no-repeat;
	border-radius: 0 0 var(--radius) var(--radius)
}

/* .hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .25) 40%, rgba(27, 34, 68, .4));
  border-radius: 0 0 var(--radius) var(--radius)
} */

.hero .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .25) 40%, rgba(27, 34, 68, .4));
	border-radius: 0 0 var(--radius) var(--radius);
	/* padding: 0 15px; */
	left: 15px;
	right: 15px;
}


.hero .copy {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	color: #fff;
	text-align: center
}

.hero h1 {
	font-size: clamp(22px, 4.5vw, 44px);
	line-height: 1.35;
	margin: 0 0 10px;
	letter-spacing: .02em;
	text-wrap: balance
}

.hero p {
	opacity: .95;
	margin: 0 0 18px
}

.hero .badge {
	display: inline-block;
	background: rgba(255, 255, 255, .15);
	border: 1px solid rgba(255, 255, 255, .3);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 20px;
	backdrop-filter: blur(2px);
	margin-bottom: 60px;
}

/* Section */
section {
	/* padding: 56px 0; */
	padding: 0 15px;
}

section .head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.head h2 {
	font-size: clamp(18px, 3vw, 28px);
	margin: 0;
	letter-spacing: .02em;
	text-wrap: balance
}

.head .lead {
	color: var(--muted);
	font-size: 14px
}

/* search */
.search-form {
	max-width: 1080px;
	margin: 60px auto;
	padding: 50px;
	background: #eee;
}

.search-form h2 {
	margin-top: 0
}

.yoyaku_set {
	display: flex;
	gap: 1em;
	justify-content: space-between;
	align-items: center;
}

.search-form p.kome {
	font-size: 14px;
	color: #830000;
}



.yoyaku_set ul {
	display: flex;
	gap: 2em;
	list-style: none;
	padding-left: 0;
}

.yoyaku_set ul li {
	font-size: 0.8em;
}

@media (max-width: 640px) {
	.search-form {
		margin: 30px auto;
		padding: 20px 20px 30px;
	}

	.search-form h2 {
		margin-bottom: 10px;
		line-height: 1.1;
		order: 2;
		margin-bottom: 0;
	}

	.search-form p.kome {
		font-size: 13px;
		color: #830000;
		line-height: 1.2em;
		/* width: 150px !important; */
		order: 3;
		margin-top: 0;
	}

	.yoyaku_set {
		display: flex;
		gap: 1em;
		justify-content: space-between;
		flex-direction: column;
	}

	.yoyaku_set ul {
		display: flex;
		gap: 0.8em;
		list-style: none;
		padding-left: 0;
		flex-wrap: wrap;
		margin: 0 0 1px;
		justify-content: flex-end;
	}

}




/* Cards */
.grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
	margin-bottom: 30px;
}

.card {
	grid-column: span 4;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	border: 1px solid #eef0f6
}

.card img {
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block
}

.card .body {
	padding: 16px
}

.card h3 {
	margin: 0 0 6px;
	font-size: 18px;
	letter-spacing: .02em
}

.card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px
}

/* Features (横長カード) */
.feature {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px
}

.feature .panel {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 20px;
	border: 1px solid #eef0f6
}

.feature .panel-facility {
	display: grid;
	grid-template-columns: 70% 30%;
	gap: 20px;
	padding: 20px;
	align-items: center
}

.feature .panel-facility .panel-amenity {
	grid-column: 1 / -1;
	width: 100%;
	border-top: 1px solid #eef0f6;
	padding-top: 0px;
	margin-top: 10px;
}

.feature .panel-facility .panel-content {
	display: flex;
	flex-direction: column
}

.feature .panel-facility .panel-image {
	padding: 0.5em;
	display: flex;
	align-items: center;
	justify-content: center
}

.feature .panel-facility .panel-image img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	object-fit: cover
}

.feature h3 {
	margin: 0 0 6px
}

h4.titleA {
	margin-bottom: 0
}

.list {
	margin: 10px 0 0;
	padding: 0 0 0 18px
}

.list-amenity {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 5px 0 0;
	padding: 0;
	list-style: none;
}

.list-amenity li:after {
	content: '/';
	padding: 0.5em;
}


/* News */
.news {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 18px
}

.news .items {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid #eef0f6;
	padding: 20px;
}

.news ul {
	list-style: none;
	margin: 0;
	padding: 0
}

.news li {
	display: flex;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid #f0f2f7
}

.news time {
	color: var(--muted);
	font-variant-numeric: tabular-nums;
	white-space: nowrap
}

.news li:last-child {
	border-bottom: 0
}

/* Access */
.access {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 18px;
	margin-top: 30px;
}

.map {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	border: 1px solid #eef0f6
}

.map {
	height: 100%;
}

.map iframe {
	width: 100%;
	height: 100%;
	border: 0
}

.addr {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 20px;
	border: 1px solid #eef0f6
}

.addr dl {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 12px;
	margin: 0
}

.addr dt {
	color: var(--muted)
}

.addr dd {
	margin-left: 0
}

/* Footer */
footer {
	background: var(--brand);
	color: #dbe2ff;
	margin-top: 28px
}

.foot {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 18px;
	padding: 28px 0
}

.foot h4 {
	margin: .2rem 0;
	font-size: 16px;
	color: #fff
}

.foot a {
	color: #dbe2ff
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 12px 0;
	color: #bfc7ef;
	font-size: 12px
}

/* Responsive */
br.br-lg {
	display: none
}

@media (min-width:641px) {
	br.br-lg {
		display: inline
	}
}

@media (max-width: 960px) {
	.menu {
		display: none
	}

	.burger {
		display: block;
		border: 1px solid #e3e6f2;
		background: #fff;
		padding: 5px;
		border-radius: 10px;
		font-size: 25px;
		line-height: 22.5px;
		width: 45px;
		height: 45px;
	}

	.grid .card {
		grid-column: span 6
	}

	.feature,
	.news,
	.access {
		grid-template-columns: 1fr
	}

	.feature .panel-facility {
		grid-template-columns: 1fr
	}

	.feature .panel-facility .panel-image {
		order: -1;
		padding: 0;
	}

	.hero .visual {
		aspect-ratio: 4/3;
		min-height: 46vh;
		width: 100%;
	}

	.foot {
		grid-template-columns: 1fr 1fr
	}
}

@media (max-width: 640px) {


	.nav {
		height: 56px
	}

	.brand img {
		height: 50px;
	}

	.brand .subtitle {
		display: none
	}

	.brand .title {
		font-size: clamp(14px, 4.2vw, 16px);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 60vw
	}

	.cta {
		padding: 10px 14px
	}

	.hero p {
		font-size: 14px
	}

	.hero .badge {
		font-size: 11px;
		padding: 4px 10px
	}

	.news li {
		flex-direction: column;
		align-items: flex-start
	}

	.news time {
		margin-bottom: 4px
	}

	.addr dl {
		grid-template-columns: 84px 1fr
	}

	.grid .card {
		grid-column: span 12
	}

	.foot {
		grid-template-columns: 1fr;
		padding: 20px;
	}
}

/* ページトップボタン */
.page-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	background: var(--brand);
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 30;
}

.page-top:hover {
	background: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-top:active {
	transform: translateY(0);
}

.page-top.visible {
	opacity: 1;
	visibility: visible;
}

.page-top svg {
	width: 24px;
	height: 24px;
}

@media (max-width: 640px) {
	.page-top {
		width: 48px;
		height: 48px;
		bottom: 16px;
		right: 16px;
	}

	.page-top svg {
		width: 20px;
		height: 20px;
	}
}



/* top-blog
--------------------------- */


.blog_box {
	border: 1px solid #ddd;
	padding: 10px;
	margin: 10px 0px;
}



.top-blog__header {
	text-align: center;
	float: right;
	margin-top: 1em;
}

.top-blog__list {
	text-align: left;
	margin: 10px;
	/* display: flex; */
}

.top-blog__item {
	display: block;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid #DEE1EA;
	transition: background-color 0.2s ease;
}

.top-blog__item:hover {
	background-color: #f6f7fb;
	text-decoration: none;
}

.top-blog__item:last-child {
	border-bottom: none;
}

.top-blog__item dl {
	display: flex !important;
	flex-direction: row !important;
	align-items: flex-start;
	gap: 16px;
	margin: 0;
	padding: 10px 0;
}

.top-blog__item dt {
	display: block !important;
	color: #c1272d;
	font-size: 0.867rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	flex-shrink: 0;
	width: 100px;
	min-width: 100px;
	margin: 0 !important;
	padding: 0;
}

.top-blog__item dd {
	display: block !important;
	line-height: 1.6;
	font-size: 14px;
	margin: 0 !important;
	padding: 0;
	flex: 1;
	min-width: 0;
	position: relative;
	padding-right: 30px;
}

.top-blog__item dd:after {
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid #1b2244;
	border-right: 2px solid #1b2244;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%) rotate(45deg);
	transition: right 0.2s ease;
}

html.no-touchevents .top-blog__item:hover dd:after {
	right: -4px;
}


@media (max-width: 640px) {
	.top-blog__list {
		text-align: left;
		margin: 10px;
	}

	.top-blog__item dl {
		flex-direction: column !important;
		gap: 4px;
	}

	.top-blog__item dt {
		width: auto;
		font-size: 0.8rem;
	}

	.top-blog__item dd {
		font-size: 13px;
		padding-right: 20px;
	}
}






.news-more_ares {
	text-align: right
}