/* ==========================================================================
   Forest Quiet Theme - Main Stylesheet
   高級感のある汎用コーポレート／ホテル向けテーマ
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
	/* Colors */
	--fq-theme-color: #2c2c2c;
	--fq-accent-color: #6b7f5e;
	--fq-button-color: #2c2c2c;
	--fq-bg: #faf9f7;
	--fq-bg-surface: #f0ede8;
	--fq-text: #333333;
	--fq-text-light: #777777;
	--fq-text-muted: #999999;
	--fq-border: #e0dcd5;
	--fq-white: #ffffff;
	--fq-black: #1a1a1a;
	--fq-overlay: rgba(0, 0, 0, 0.35);

	/* Typography */
	--fq-font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'YuGothic', 'Meiryo', sans-serif;
	--fq-font-heading: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif;
	--fq-font-accent: 'Cormorant Garamond', 'Times New Roman', serif;

	/* Spacing */
	--fq-section-padding: clamp(80px, 10vw, 140px);
	--fq-section-padding-sm: clamp(60px, 8vw, 100px);
	--fq-container-width: 1200px;
	--fq-container-narrow: 800px;
	--fq-container-wide: 1400px;
	--fq-container-padding: clamp(20px, 5vw, 40px);

	/* Transitions */
	--fq-transition: 0.3s ease;
	--fq-transition-slow: 0.6s ease;

	/* Borders */
	--fq-radius: 2px;
	--fq-radius-lg: 4px;

	/* Header */
	--fq-header-height: 80px;
	--fq-header-height-sp: 60px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--fq-font-body);
	font-weight: 400;
	line-height: 1.8;
	color: var(--fq-text);
	background-color: var(--fq-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

a {
	color: var(--fq-theme-color);
	text-decoration: none;
	transition: color var(--fq-transition), opacity var(--fq-transition);
}

a:hover {
	opacity: 0.7;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--fq-accent-color);
	outline-offset: 2px;
}

ul, ol {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--fq-font-heading);
	font-weight: 400;
	line-height: 1.4;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

/* Skip link */
.skip-link {
	position: absolute;
	top: -100%;
	left: 0;
	z-index: 10000;
	background: var(--fq-theme-color);
	color: var(--fq-white);
	padding: 8px 16px;
}

.skip-link:focus {
	top: 0;
}

/* Screen reader only */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.l-container {
	width: 100%;
	max-width: var(--fq-container-width);
	margin: 0 auto;
	padding-left: var(--fq-container-padding);
	padding-right: var(--fq-container-padding);
}

.l-container--narrow {
	max-width: var(--fq-container-narrow);
}

.l-container--wide {
	max-width: var(--fq-container-wide);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--fq-header-height);
	transition: background-color var(--fq-transition), box-shadow var(--fq-transition);
	background-color: var(--fq-white);
}

.site-header--transparent {
	background-color: transparent;
}

.site-header--transparent .site-header__site-name,
.site-header--transparent .global-nav a,
.site-header--transparent .site-header__lang-link {
	color: var(--fq-white);
}

.site-header--transparent .drawer-toggle__line {
	background-color: var(--fq-white);
}

.site-header--scrolled {
	background-color: rgba(255, 255, 255, 0.97);
	box-shadow: 0 1px 0 var(--fq-border);
}

.site-header--scrolled .site-header__site-name,
.site-header--scrolled .global-nav a,
.site-header--scrolled .site-header__lang-link {
	color: var(--fq-text);
}

.site-header--scrolled .drawer-toggle__line {
	background-color: var(--fq-text);
}

.site-header--scrolled .site-header__logo img {
	filter: none;
}

.site-header--transparent .site-header__logo img {
	filter: brightness(0) invert(1);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	max-width: var(--fq-container-wide);
	margin: 0 auto;
	padding: 0 var(--fq-container-padding);
}

.site-header__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.site-header__logo img {
	height: 40px;
	width: auto;
	transition: filter var(--fq-transition);
}

.site-header__site-name {
	font-family: var(--fq-font-heading);
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--fq-text);
	letter-spacing: 0.1em;
}

.site-header__site-name:hover {
	opacity: 1;
	color: var(--fq-accent-color);
}

.site-header__subtitle {
	font-family: var(--fq-font-accent);
	font-size: 0.7rem;
	color: var(--fq-text-light);
	letter-spacing: 0.15em;
}

/* Global Nav */
.site-header__nav {
	display: none;
}

.global-nav {
	display: flex;
	align-items: center;
	gap: 2px;
}

.global-nav li {
	position: relative;
}

.global-nav a {
	display: block;
	padding: 8px 16px;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	color: var(--fq-text);
	transition: color var(--fq-transition);
}

.global-nav a:hover {
	opacity: 1;
	color: var(--fq-accent-color);
}

/* Sub menu */
.global-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--fq-white);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--fq-transition);
}

.global-nav li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.global-nav .sub-menu a {
	padding: 10px 20px;
	font-size: 0.8125rem;
	color: var(--fq-text);
	border-bottom: 1px solid var(--fq-border);
}

/* Header Actions */
.site-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-header__lang {
	display: none;
	align-items: center;
	gap: 8px;
}

.site-header__lang-link {
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	color: var(--fq-text-light);
}

.site-header__reserve-btn {
	display: none;
}

/* Hamburger */
.drawer-toggle {
	width: 32px;
	height: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 4px;
}

.drawer-toggle__line {
	display: block;
	width: 22px;
	height: 1px;
	background-color: var(--fq-text);
	transition: transform var(--fq-transition), opacity var(--fq-transition);
}

.drawer-toggle[aria-expanded="true"] .drawer-toggle__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.drawer-toggle[aria-expanded="true"] .drawer-toggle__line:nth-child(2) {
	opacity: 0;
}

.drawer-toggle[aria-expanded="true"] .drawer-toggle__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Drawer Menu
   -------------------------------------------------------------------------- */
.drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	pointer-events: none;
}

.drawer[aria-hidden="false"] {
	pointer-events: auto;
}

.drawer__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity var(--fq-transition);
}

.drawer[aria-hidden="false"] .drawer__overlay {
	opacity: 1;
}

.drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 400px;
	height: 100%;
	background: var(--fq-white);
	transform: translateX(100%);
	transition: transform var(--fq-transition-slow);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.drawer[aria-hidden="false"] .drawer__panel {
	transform: translateX(0);
}

.drawer__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	font-size: 24px;
	color: var(--fq-text-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.drawer__content {
	padding: 80px 32px 40px;
}

.drawer__logo {
	margin-bottom: 32px;
}

.drawer__logo img {
	height: 36px;
	width: auto;
}

.drawer-nav {
	margin-bottom: 32px;
}

.drawer-nav li {
	border-bottom: 1px solid var(--fq-border);
}

.drawer-nav a {
	display: block;
	padding: 16px 0;
	font-size: 0.9375rem;
	letter-spacing: 0.05em;
	color: var(--fq-text);
}

.drawer-nav .sub-menu {
	padding-left: 16px;
}

.drawer-nav .sub-menu a {
	font-size: 0.875rem;
	color: var(--fq-text-light);
	padding: 12px 0;
}

.drawer__buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.drawer__phone {
	margin-bottom: 24px;
}

.drawer__phone-link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.125rem;
	font-family: var(--fq-font-accent);
	letter-spacing: 0.08em;
}

.drawer__sns {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.drawer__sns-link {
	color: var(--fq-text-light);
}

.drawer__lang {
	display: flex;
	gap: 12px;
}

.drawer__lang-link {
	font-size: 0.8125rem;
	color: var(--fq-text-light);
}

/* Body lock when drawer is open */
body.drawer-open {
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 36px;
	font-family: var(--fq-font-body);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	border: 1px solid transparent;
	border-radius: var(--fq-radius);
	transition: all var(--fq-transition);
	text-decoration: none;
	cursor: pointer;
	line-height: 1.4;
}

.btn:hover {
	opacity: 1;
}

.btn--primary {
	background-color: var(--fq-button-color);
	color: var(--fq-white);
	border-color: var(--fq-button-color);
}

.btn--primary:hover {
	background-color: transparent;
	color: var(--fq-button-color);
}

.btn--outline {
	background-color: transparent;
	color: var(--fq-theme-color);
	border-color: var(--fq-theme-color);
}

.btn--outline:hover {
	background-color: var(--fq-theme-color);
	color: var(--fq-white);
}

.btn--white {
	background-color: transparent;
	color: var(--fq-white);
	border-color: var(--fq-white);
}

.btn--white:hover {
	background-color: var(--fq-white);
	color: var(--fq-theme-color);
}

.btn--text {
	background: none;
	border: none;
	padding: 0;
	color: var(--fq-theme-color);
	font-weight: 400;
	letter-spacing: 0.05em;
}

.btn--text:hover {
	color: var(--fq-accent-color);
}

.btn--sm {
	padding: 8px 20px;
	font-size: 0.8125rem;
}

.btn--lg {
	padding: 18px 48px;
	font-size: 0.9375rem;
}

.btn--block {
	display: flex;
	width: 100%;
}

/* --------------------------------------------------------------------------
   Section Heading
   -------------------------------------------------------------------------- */
.section-heading {
	text-align: center;
	margin-bottom: clamp(40px, 5vw, 64px);
}

.section-heading--left {
	text-align: left;
}

.section-heading--light .section-heading__en,
.section-heading--light .section-heading__ja {
	color: var(--fq-white);
}

.section-heading--light .section-heading__line {
	background-color: var(--fq-white);
}

.section-heading__en {
	font-family: var(--fq-font-accent);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	letter-spacing: 0.15em;
	color: var(--fq-theme-color);
	line-height: 1.2;
	margin-bottom: 8px;
}

.section-heading__ja {
	font-family: var(--fq-font-heading);
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--fq-text-light);
	margin-bottom: 16px;
}

.section-heading__line {
	display: block;
	width: 40px;
	height: 1px;
	background-color: var(--fq-theme-color);
	margin: 0 auto;
}

.section-heading--left .section-heading__line {
	margin: 0;
}

/* --------------------------------------------------------------------------
   Section (common)
   -------------------------------------------------------------------------- */
.section {
	padding: var(--fq-section-padding) 0;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 500px;
	overflow: hidden;
}

.hero__slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero__slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.hero__slide--active {
	opacity: 1;
}

.hero__placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero__placeholder svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	pointer-events: none;
}

.hero__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
	width: 90%;
	max-width: 800px;
}

.hero__heading {
	font-family: var(--fq-font-heading);
	font-size: clamp(1.5rem, 4vw, 2.75rem);
	font-weight: 400;
	color: var(--fq-white);
	letter-spacing: 0.15em;
	line-height: 1.6;
	margin-bottom: 16px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero__subtext {
	font-family: var(--fq-font-accent);
	font-size: clamp(0.875rem, 1.5vw, 1.125rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 0.2em;
	margin-bottom: 32px;
}

.hero__btn {
	margin-top: 8px;
}

/* Hero Controls */
.hero__controls {
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	z-index: 3;
}

.hero__arrow {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fq-white);
	opacity: 0.7;
	transition: opacity var(--fq-transition);
}

.hero__arrow:hover {
	opacity: 1;
}

.hero__dots {
	display: flex;
	gap: 8px;
}

.hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transition: background var(--fq-transition), transform var(--fq-transition);
}

.hero__dot--active {
	background: var(--fq-white);
	transform: scale(1.3);
}

/* Scroll Indicator */
.hero__scroll-indicator {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 3;
}

.hero__scroll-text {
	font-family: var(--fq-font-accent);
	font-size: 0.625rem;
	color: var(--fq-white);
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.hero__scroll-line {
	width: 1px;
	height: 30px;
	background: var(--fq-white);
	animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
	0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
	30% { transform: scaleY(1); transform-origin: top; opacity: 1; }
	60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
	100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* --------------------------------------------------------------------------
   Section: Concept
   -------------------------------------------------------------------------- */
.section-concept__text {
	max-width: 700px;
	margin: 0 auto clamp(40px, 5vw, 64px);
	text-align: center;
	font-size: 0.9375rem;
	line-height: 2.2;
	letter-spacing: 0.05em;
}

/* Concept Carousel - full width */
.section-concept__carousel-wrap {
	position: relative;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
}

.section-concept__carousel {
	display: flex;
	gap: 12px;
	transition: transform 0.5s ease;
	cursor: grab;
	user-select: none;
}

.section-concept__carousel.is-grabbing {
	cursor: grabbing;
	transition: none;
}

.section-concept__carousel-item {
	flex: 0 0 auto;
	width: 35vw;
	min-width: 280px;
	max-width: 500px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.section-concept__carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	pointer-events: none;
}

.section-concept__carousel-item:hover img {
	transform: scale(1.03);
}

/* Carousel placeholder */
.section-concept__carousel-item .placeholder-image {
	width: 100%;
	height: 100%;
}

/* Carousel controls */
.section-concept__carousel-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 24px;
}

.section-concept__carousel-arrow {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--fq-border);
	color: var(--fq-text-light);
	transition: all var(--fq-transition);
	border-radius: 50%;
}

.section-concept__carousel-arrow:hover {
	border-color: var(--fq-theme-color);
	color: var(--fq-theme-color);
}

.section-concept__action {
	text-align: center;
	margin-top: clamp(32px, 4vw, 48px);
}

@media (max-width: 767px) {
	.section-concept__carousel-item {
		width: 70vw;
		min-width: 240px;
	}
}

/* --------------------------------------------------------------------------
   Section: Feature (full-width visual)
   -------------------------------------------------------------------------- */
.section-feature {
	padding: 0;
}

.section-feature__visual {
	position: relative;
	width: 100%;
	height: 70vh;
	min-height: 400px;
	overflow: hidden;
}

.section-feature__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-feature__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.section-feature__content {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	text-align: center;
	z-index: 2;
}

.section-feature__text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9375rem;
	letter-spacing: 0.08em;
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* --------------------------------------------------------------------------
   Section: Service (alternating image + text)
   -------------------------------------------------------------------------- */
.section-service__items {
	display: flex;
	flex-direction: column;
	gap: clamp(60px, 8vw, 100px);
}

.section-service__item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}

.section-service__image-wrap {
	overflow: hidden;
}

.section-service__image {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform var(--fq-transition-slow);
}

.section-service__image-wrap:hover .section-service__image {
	transform: scale(1.03);
}

.section-service__title {
	font-family: var(--fq-font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

.section-service__text {
	font-size: 0.9375rem;
	line-height: 2;
	color: var(--fq-text);
	margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   Section: Cards
   -------------------------------------------------------------------------- */
.section-cards__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.card-link {
	display: block;
	text-decoration: none;
	color: var(--fq-text);
	transition: transform var(--fq-transition);
}

a.card-link:hover {
	opacity: 1;
	transform: translateY(-4px);
}

.card-link__image-wrap {
	overflow: hidden;
	margin-bottom: 16px;
	aspect-ratio: 3 / 2;
}

.card-link__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--fq-transition-slow);
}

a.card-link:hover .card-link__image {
	transform: scale(1.05);
}

.card-link__title {
	font-family: var(--fq-font-heading);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

.card-link__text {
	font-size: 0.8125rem;
	color: var(--fq-text-light);
	line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Section: Plans
   -------------------------------------------------------------------------- */
.section-plans {
	background-color: var(--fq-bg-surface);
}

.section-plans__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.section-plans__body {
	font-size: 0.9375rem;
	line-height: 2;
	margin-bottom: 32px;
}

.section-plans__image {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* --------------------------------------------------------------------------
   Section: News
   -------------------------------------------------------------------------- */
.section-news__list {
	max-width: 800px;
	margin: 0 auto;
	border-top: 1px solid var(--fq-border);
}

.news-item {
	border-bottom: 1px solid var(--fq-border);
}

.news-item__link {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 20px 0;
	color: var(--fq-text);
	flex-wrap: wrap;
}

.news-item__link:hover {
	opacity: 1;
	color: var(--fq-accent-color);
}

.news-item__date {
	font-family: var(--fq-font-accent);
	font-size: 0.875rem;
	color: var(--fq-text-light);
	letter-spacing: 0.05em;
	flex-shrink: 0;
	min-width: 100px;
}

.news-item__category {
	font-size: 0.6875rem;
	letter-spacing: 0.08em;
	color: var(--fq-accent-color);
	border: 1px solid var(--fq-accent-color);
	padding: 2px 10px;
	flex-shrink: 0;
}

.news-item__title {
	font-size: 0.9375rem;
	letter-spacing: 0.03em;
}

.section-news__action {
	text-align: center;
	margin-top: 40px;
}

.section-news__empty {
	text-align: center;
	color: var(--fq-text-light);
}

/* --------------------------------------------------------------------------
   Section: Access
   -------------------------------------------------------------------------- */
.section-access__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.section-access__map-embed iframe {
	width: 100%;
	height: 300px;
	border: 0;
}

.section-access__dl {
	margin-bottom: 16px;
}

.section-access__dl dt {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--fq-text-light);
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.section-access__dl dd {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.section-access__transport {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--fq-border);
}

.section-access__transport-title {
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 16px;
}

.section-access__action {
	margin-top: 24px;
}

/* --------------------------------------------------------------------------
   Section: Instagram
   -------------------------------------------------------------------------- */
.section-instagram__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	max-width: 900px;
	margin: 0 auto;
}

.section-instagram__item {
	aspect-ratio: 1;
	overflow: hidden;
}

.section-instagram__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--fq-transition-slow);
}

.section-instagram__link:hover .section-instagram__image {
	transform: scale(1.05);
}

.section-instagram__action {
	text-align: center;
	margin-top: 32px;
}

/* --------------------------------------------------------------------------
   Section: CTA
   -------------------------------------------------------------------------- */
.section-cta {
	background-color: var(--fq-bg-surface);
	position: relative;
	text-align: center;
}

.section-cta--has-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.section-cta__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
}

.section-cta--has-bg .section-cta__overlay {
	opacity: 1;
}

.section-cta__inner {
	position: relative;
	z-index: 2;
}

.section-cta__body {
	font-size: 0.9375rem;
	line-height: 2;
	margin-bottom: 40px;
}

.section-cta__body--light {
	color: rgba(255, 255, 255, 0.9);
}

.section-cta__buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.section-cta__phone {
	text-align: center;
}

.section-cta__phone-label {
	font-size: 0.8125rem;
	color: var(--fq-text-light);
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

.section-cta__phone-label--light {
	color: rgba(255, 255, 255, 0.7);
}

.section-cta__phone-number {
	font-family: var(--fq-font-accent);
	font-size: clamp(1.5rem, 3vw, 2rem);
	letter-spacing: 0.1em;
	color: var(--fq-theme-color);
}

.section-cta--has-bg .section-cta__phone-number {
	color: var(--fq-white);
}

/* --------------------------------------------------------------------------
   Placeholder Images
   -------------------------------------------------------------------------- */
.placeholder-image {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #c8c2b8;
	color: rgba(255, 255, 255, 0.5);
	font-family: var(--fq-font-accent);
	font-size: 1rem;
	letter-spacing: 0.1em;
}

.placeholder-image--wide {
	aspect-ratio: 16 / 9;
}

.placeholder-image--section {
	aspect-ratio: 4 / 3;
}

.placeholder-image--card {
	width: 100%;
	height: 100%;
}

.placeholder-image--square {
	aspect-ratio: 1;
}

.placeholder-image--hero {
	width: 100%;
	height: 70vh;
	min-height: 400px;
}

.placeholder-image--map {
	width: 100%;
	height: 300px;
	background-color: #d4cfc6;
}

/* --------------------------------------------------------------------------
   Page Header (下層ページ)
   -------------------------------------------------------------------------- */
.page-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	padding: calc(var(--fq-header-height) + 40px) var(--fq-container-padding) 40px;
	background-color: var(--fq-bg-surface);
	position: relative;
	text-align: center;
}

.page-hero--has-image {
	min-height: 300px;
	background-size: cover;
	background-position: center;
}

.page-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
}

.page-hero--has-image .page-hero__overlay {
	opacity: 1;
}

.page-hero__content {
	position: relative;
	z-index: 2;
}

.page-hero__title {
	font-family: var(--fq-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--fq-text);
}

.page-hero--has-image .page-hero__title {
	color: var(--fq-white);
}

.page-hero__subtitle {
	font-family: var(--fq-font-accent);
	font-size: 0.875rem;
	letter-spacing: 0.15em;
	color: var(--fq-text-light);
	margin-top: 8px;
}

.page-hero--has-image .page-hero__subtitle {
	color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
	padding: 16px var(--fq-container-padding);
	max-width: var(--fq-container-width);
	margin: 0 auto;
}

.is-front-page .breadcrumb {
	display: none;
}

.breadcrumb__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	font-size: 0.75rem;
	color: var(--fq-text-light);
}

.breadcrumb__item a {
	color: var(--fq-text-light);
}

.breadcrumb__item a:hover {
	color: var(--fq-accent-color);
}

.breadcrumb__separator {
	margin: 0 4px;
}

/* --------------------------------------------------------------------------
   Post List
   -------------------------------------------------------------------------- */
.post-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding: clamp(40px, 5vw, 60px) 0;
}

/* --------------------------------------------------------------------------
   Post Card
   -------------------------------------------------------------------------- */
.post-card__link {
	display: block;
	color: var(--fq-text);
}

.post-card__link:hover {
	opacity: 1;
}

.post-card__image-wrap {
	overflow: hidden;
	margin-bottom: 16px;
	aspect-ratio: 3 / 2;
}

.post-card__image,
.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--fq-transition-slow);
}

.post-card__link:hover .post-card__image img,
.post-card__link:hover .post-card__image--fallback img {
	transform: scale(1.03);
}

.post-card__body {
	padding: 0 4px;
}

.post-card__date {
	font-family: var(--fq-font-accent);
	font-size: 0.8125rem;
	color: var(--fq-text-light);
	letter-spacing: 0.05em;
	margin-right: 12px;
}

.post-card__category {
	font-size: 0.6875rem;
	letter-spacing: 0.05em;
	color: var(--fq-accent-color);
	border: 1px solid var(--fq-accent-color);
	padding: 1px 8px;
}

.post-card__title {
	font-family: var(--fq-font-heading);
	font-size: 1.0625rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin: 8px 0;
	line-height: 1.6;
}

.post-card__excerpt {
	font-size: 0.8125rem;
	color: var(--fq-text-light);
	line-height: 1.8;
}

.post-card__excerpt p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   Single Post
   -------------------------------------------------------------------------- */
.single-post__header {
	padding-top: calc(var(--fq-header-height) + 60px);
	padding-bottom: 40px;
	text-align: center;
}

.single-post__meta {
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.single-post__date {
	font-family: var(--fq-font-accent);
	font-size: 0.875rem;
	color: var(--fq-text-light);
	letter-spacing: 0.05em;
}

.single-post__category {
	font-size: 0.6875rem;
	letter-spacing: 0.08em;
	color: var(--fq-accent-color);
	border: 1px solid var(--fq-accent-color);
	padding: 2px 10px;
}

.single-post__title {
	font-size: clamp(1.375rem, 3vw, 2rem);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.6;
}

.single-post__thumbnail {
	margin-bottom: 48px;
	text-align: center;
}

.single-post__image {
	max-width: 100%;
	height: auto;
}

.single-post__content {
	padding-bottom: 48px;
}

.single-post__footer {
	padding: 24px 0 48px;
	border-top: 1px solid var(--fq-border);
}

.single-post__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.single-post__tag {
	font-size: 0.8125rem;
	color: var(--fq-text-light);
}

.single-post__tag:hover {
	color: var(--fq-accent-color);
}

/* --------------------------------------------------------------------------
   Entry Content (ブロックエディタ)
   -------------------------------------------------------------------------- */
.entry-content {
	font-size: 0.9375rem;
	line-height: 2;
	letter-spacing: 0.03em;
}

.entry-content h2 {
	font-size: 1.5rem;
	margin: 48px 0 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--fq-border);
}

.entry-content h3 {
	font-size: 1.25rem;
	margin: 40px 0 16px;
}

.entry-content h4 {
	font-size: 1.0625rem;
	margin: 32px 0 12px;
}

.entry-content p {
	margin-bottom: 1.5em;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 1.5em;
	list-style: revert;
}

.entry-content li {
	margin-bottom: 0.5em;
}

.entry-content blockquote {
	margin: 2em 0;
	padding: 20px 24px;
	border-left: 3px solid var(--fq-accent-color);
	background-color: var(--fq-bg-surface);
	font-style: italic;
}

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

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5em 0;
}

.entry-content th,
.entry-content td {
	padding: 12px 16px;
	border: 1px solid var(--fq-border);
	text-align: left;
}

.entry-content th {
	background-color: var(--fq-bg-surface);
	font-weight: 500;
}

/* Wide / Full width support for page content */
.page-content__body.entry-content--fullwidth {
	max-width: 100%;
	padding: 0;
}

.page-content__body.entry-content--fullwidth > *:not(.alignwide):not(.alignfull) {
	max-width: var(--fq-container-narrow);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--fq-container-padding);
	padding-right: var(--fq-container-padding);
}

.entry-content--fullwidth .alignwide {
	max-width: var(--fq-container-wide);
	margin-left: auto;
	margin-right: auto;
}

.entry-content--fullwidth .alignfull {
	max-width: 100%;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

/* Details/FAQ styling in entry content */
.entry-content details {
	cursor: pointer;
}

.entry-content details summary {
	font-family: var(--fq-font-heading);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.6;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.entry-content details summary::-webkit-details-marker {
	display: none;
}

.entry-content details summary::after {
	content: '+';
	font-size: 1.25rem;
	color: var(--fq-text-light);
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform var(--fq-transition);
}

.entry-content details[open] summary::after {
	content: '−';
}

/* --------------------------------------------------------------------------
   Post Navigation
   -------------------------------------------------------------------------- */
.post-navigation {
	padding: 0 0 60px;
}

.post-navigation__inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid var(--fq-border);
	padding-top: 32px;
}

.post-navigation__link {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 45%;
	color: var(--fq-text);
}

.post-navigation__link:hover {
	opacity: 1;
	color: var(--fq-accent-color);
}

.post-navigation__link--next {
	text-align: right;
	margin-left: auto;
}

.post-navigation__label {
	font-size: 0.75rem;
	color: var(--fq-text-light);
	letter-spacing: 0.05em;
}

.post-navigation__title {
	font-size: 0.875rem;
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Category Filter
   -------------------------------------------------------------------------- */
.category-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 24px 0;
	border-bottom: 1px solid var(--fq-border);
}

.category-filter__item {
	font-size: 0.8125rem;
	padding: 6px 16px;
	border: 1px solid var(--fq-border);
	color: var(--fq-text);
	border-radius: var(--fq-radius);
	transition: all var(--fq-transition);
}

.category-filter__item:hover,
.category-filter__item--active {
	opacity: 1;
	background-color: var(--fq-theme-color);
	color: var(--fq-white);
	border-color: var(--fq-theme-color);
}

/* --------------------------------------------------------------------------
   Search
   -------------------------------------------------------------------------- */
.search-form-wrap {
	max-width: 500px;
	margin: 0 auto;
	padding: 24px 0;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-form .search-field {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--fq-border);
	font-family: var(--fq-font-body);
	font-size: 0.9375rem;
	background-color: var(--fq-white);
}

.search-form .search-submit {
	padding: 12px 24px;
	background: var(--fq-theme-color);
	color: var(--fq-white);
	border: none;
	font-family: var(--fq-font-body);
	font-size: 0.875rem;
	cursor: pointer;
}

.search-count {
	font-size: 0.875rem;
	color: var(--fq-text-light);
	padding: 16px 0 0;
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.error-404 {
	padding: calc(var(--fq-header-height) + 80px) 0 80px;
	text-align: center;
}

.error-404__number {
	font-family: var(--fq-font-accent);
	font-size: clamp(4rem, 10vw, 8rem);
	font-weight: 300;
	color: var(--fq-border);
	line-height: 1;
	margin-bottom: 16px;
}

.error-404__title {
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 16px;
}

.error-404__text {
	font-size: 0.9375rem;
	color: var(--fq-text-light);
	margin-bottom: 32px;
}

.error-404__search {
	max-width: 400px;
	margin: 0 auto 32px;
}

/* --------------------------------------------------------------------------
   No Results
   -------------------------------------------------------------------------- */
.no-results {
	padding: 80px 0;
	text-align: center;
}

.no-results__title {
	font-size: 1.25rem;
	margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	padding: 40px 0;
}

.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 0.875rem;
	color: var(--fq-text);
	border: 1px solid var(--fq-border);
	transition: all var(--fq-transition);
}

.page-numbers.current,
.page-numbers:hover {
	background-color: var(--fq-theme-color);
	color: var(--fq-white);
	border-color: var(--fq-theme-color);
	opacity: 1;
}

.page-numbers.dots {
	border: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background-color: var(--fq-theme-color);
	color: rgba(255, 255, 255, 0.8);
	padding: clamp(60px, 8vw, 100px) 0 0;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
	opacity: 1;
	color: var(--fq-white);
}

.site-footer__inner {
	padding-left: var(--fq-container-padding);
	padding-right: var(--fq-container-padding);
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	padding-bottom: 48px;
}

/* メニュー未設定時：センター配置 */
.site-footer__top--center {
	justify-items: center;
	text-align: center;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
}

.site-footer__brand--center {
	align-items: center;
}

.site-footer__logo img {
	height: 36px;
	width: auto;
	filter: brightness(0) invert(1);
}

.site-footer__site-name a {
	font-family: var(--fq-font-heading);
	font-size: 1.25rem;
	color: var(--fq-white);
	letter-spacing: 0.1em;
}

.site-footer__en-name {
	font-family: var(--fq-font-accent);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer__company {
	font-size: 0.875rem;
	margin-top: 16px;
	letter-spacing: 0.05em;
}

.site-footer__address {
	font-size: 0.8125rem;
	line-height: 1.8;
	margin-top: 8px;
}

.site-footer__phone {
	margin-top: 12px;
}

.site-footer__phone a {
	font-family: var(--fq-font-accent);
	font-size: 1.125rem;
	letter-spacing: 0.08em;
}

.site-footer__sns--brand {
	display: flex;
	gap: 16px;
	margin-top: 20px;
}

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

.footer-nav li {
	margin-bottom: 10px;
}

.footer-nav a {
	font-size: 0.8125rem;
	letter-spacing: 0.03em;
}

.site-footer__reserve {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__reserve--center {
	text-align: center;
	border-top: none;
	padding-top: 0;
}

.site-footer__reserve-label {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 12px;
}

.site-footer__reserve .btn--outline {
	color: rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.3);
	margin-right: 8px;
	margin-bottom: 8px;
}

.site-footer__reserve .btn--outline:hover {
	background-color: var(--fq-white);
	color: var(--fq-theme-color);
}

/* Footer Bottom */
.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.site-footer__sns {
	display: flex;
	gap: 16px;
}

.site-footer__sns-link {
	color: rgba(255, 255, 255, 0.6);
}

.site-footer__sns-link:hover {
	color: var(--fq-white);
}

.policy-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.policy-nav a {
	font-size: 0.75rem;
	letter-spacing: 0.03em;
}

.site-footer__lang {
	display: flex;
	gap: 12px;
}

.site-footer__lang-link {
	font-size: 0.75rem;
}

.site-footer__copyright {
	font-size: 0.6875rem;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.05em;
	text-align: center;
	width: 100%;
}

/* --------------------------------------------------------------------------
   Mobile Fixed CTA
   -------------------------------------------------------------------------- */
.mobile-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 990;
	background: var(--fq-white);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-cta__btn {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 8px 4px;
	font-size: 0.625rem;
	letter-spacing: 0.05em;
	color: var(--fq-text);
	text-decoration: none;
}

.mobile-cta__btn:hover {
	opacity: 0.8;
}

.mobile-cta__btn--reserve {
	background-color: var(--fq-button-color);
	color: var(--fq-white);
}

/* --------------------------------------------------------------------------
   Landing Page
   -------------------------------------------------------------------------- */
.landing-hero {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
}

.landing-hero--minimal {
	min-height: 200px;
	background-color: var(--fq-bg-surface);
	padding-top: var(--fq-header-height);
}

.landing-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
}

.landing-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.landing-hero__title {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	color: var(--fq-white);
	letter-spacing: 0.15em;
	font-weight: 400;
}

.landing-hero--minimal .landing-hero__title {
	color: var(--fq-text);
}

/* --------------------------------------------------------------------------
   Google Translate - hide default UI
   -------------------------------------------------------------------------- */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
	display: none !important;
}

body {
	top: 0 !important;
}

.goog-te-gadget {
	font-size: 0 !important;
}

[data-gt-lang].is-active-lang {
	opacity: 1;
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   Scroll Fade Animation
   -------------------------------------------------------------------------- */
.js-fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.js-fade-in {
		opacity: 1;
		transform: none;
	}

	html {
		scroll-behavior: auto;
	}
}

/* --------------------------------------------------------------------------
   Archive Description
   -------------------------------------------------------------------------- */
.archive-description {
	max-width: 700px;
	margin: 0 auto;
	padding: 24px 0;
	text-align: center;
	font-size: 0.9375rem;
	color: var(--fq-text-light);
}

/* Page Links */
.page-links {
	padding: 24px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.page-links__title {
	font-size: 0.875rem;
	color: var(--fq-text-light);
}

/* --------------------------------------------------------------------------
   Responsive: Tablet (768px+)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
	/* Concept Images */
	.section-concept__images {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	/* Service grid */
	.section-service__item {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}

	.section-service__item--reverse .section-service__image-wrap {
		order: 2;
	}

	.section-service__item--reverse .section-service__text-wrap {
		order: 1;
	}

	/* Cards - 2 columns on tablet */
	.section-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	/* Plans */
	.section-plans__inner {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}

	/* Access */
	.section-access__inner {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}

	.section-access__map-embed iframe {
		height: 400px;
	}

	/* Instagram */
	.section-instagram__grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 6px;
	}

	/* Post List */
	.post-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	/* Footer - tablet: menus 2-col, bottom row horizontal */
	.site-footer__menus {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.site-footer__bottom {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px 32px;
	}

	/* Page Hero */
	.page-hero {
		min-height: 260px;
	}

	.page-hero--has-image {
		min-height: 400px;
	}
}

/* --------------------------------------------------------------------------
   Responsive: Desktop (1024px+)
   Footer full layout, content grid improvements
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
	/* Cards 4 columns on desktop */
	.section-cards__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	/* Post List */
	.post-list {
		grid-template-columns: repeat(3, 1fr);
	}

	/* CTA Buttons */
	.section-cta__buttons {
		flex-direction: row;
		justify-content: center;
		gap: 24px;
	}

	/* News */
	.news-item__link {
		flex-wrap: nowrap;
	}

	/* Footer full desktop layout */
	.site-footer__top {
		grid-template-columns: 280px 1fr;
		gap: 60px;
	}

	.site-footer__top--center {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin: 0 auto;
	}

	.site-footer__menus {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}
}

/* --------------------------------------------------------------------------
   Responsive: Wide Navigation (1600px+)
   PC navigation is only shown at wide widths to prevent text wrapping
   -------------------------------------------------------------------------- */
@media (min-width: 1600px) {
	.site-header__nav {
		display: block;
	}

	.site-header__lang {
		display: flex;
	}

	.site-header__reserve-btn {
		display: inline-flex;
	}

	.drawer-toggle {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Responsive: Below wide nav threshold (< 1600px)
   Use hamburger menu, mobile header height
   -------------------------------------------------------------------------- */
@media (max-width: 1599px) {
	:root {
		--fq-header-height: var(--fq-header-height-sp);
	}

	.site-header__nav,
	.site-header__lang,
	.site-header__reserve-btn {
		display: none;
	}

	.drawer-toggle {
		display: flex;
	}

	/* Hero */
	.hero__controls {
		bottom: 80px;
	}

	/* News item stacking */
	.news-item__link {
		flex-direction: column;
		gap: 4px;
	}

	.news-item__date {
		min-width: auto;
	}
}

/* --------------------------------------------------------------------------
   Responsive: Small Mobile Only (< 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
	/* Mobile CTA */
	.mobile-cta {
		display: flex;
	}

	/* Footer spacing for mobile CTA */
	.site-footer {
		padding-bottom: 56px;
	}

	/* Hero */
	.hero {
		height: 100svh;
	}

	/* Footer: center-align on mobile for clean look */
	.site-footer__top {
		text-align: center;
	}

	.site-footer__brand {
		align-items: center;
	}

	.site-footer__sns--brand {
		justify-content: center;
	}

	/* Footer menus single column, centered */
	.site-footer__menus {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.site-footer__reserve {
		text-align: center;
		border-top: none;
		padding-top: 16px;
	}
}
