/* === 1. 基本設定 === */
:root {
	--color-bg-base: #f4f7fa;
	--color-navy: #0f2e52;
	--color-gold: #c5a059;
	--color-gold-light: #eacda3;
	--font-jp: 'Zen Old Mincho', serif;
	--font-en: 'Cinzel', serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-jp);
	color: var(--color-navy);
	background-color: var(--color-bg-base);
	margin: 0;
	line-height: 2.2;
	letter-spacing: 0.08em;
	overflow-x: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
	font-weight: 500;
	margin: 0;
}

.en-title {
	font-family: var(--font-en);
	color: var(--color-gold);
	display: block;
	margin-bottom: 15px;
	font-size: 1.1rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

/* === 2. ヘッダー === */
header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 0 40px;
	height: 110px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(15, 46, 82, 0.03);
}

header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-gold) 20%, var(--color-gold-light) 50%, var(--color-gold) 80%, var(--color-navy) 100%);
	z-index: 1001;
}

/* ヘッダーロゴ画像用スタイル */
.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	height: 100%;
}

.logo img {
	height: 105px;
	width: auto;
	display: block;
}

nav ul {
	display: flex;
	gap: 25px;
	list-style: none;
	padding: 0;
	margin: 0;
}

nav a {
	text-decoration: none;
	color: var(--color-navy);
	font-size: 0.9rem;
	font-weight: 500;
	position: relative;
	transition: color 0.4s ease;
	padding-bottom: 5px;
	display: block;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: var(--color-gold);
	transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

nav a:hover {
	color: var(--color-gold);
}

nav a:hover::after {
	width: 100%;
}

/* === 3. プライバシーポリシー用ヘッダーエリア === */
.page-header {
	padding: 200px 20px 100px;
	text-align: center;
	background-image: url('../img/halo ring 2.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.6);
	z-index: 1;
}

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

.page-header h1 {
	font-size: 2.4rem;
	color: var(--color-navy);
	margin-top: 10px;
}

/* === 4. ポリシー本文エリア === */
.policy-container {
	max-width: 900px;
	margin: -50px auto 100px;
	padding: 80px 60px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 20px 60px rgba(15, 46, 82, 0.05);
	position: relative;
	z-index: 10;
}

.policy-block {
	margin-bottom: 50px;
}

.policy-block:last-child {
	margin-bottom: 0;
}

.policy-block h2 {
	font-size: 1.3rem;
	color: var(--color-navy);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-gold-light);
}

.policy-block p {
	font-size: 0.95rem;
	color: #444;
	line-height: 2;
	text-align: justify;
}

.policy-block ul {
	font-size: 0.95rem;
	color: #444;
	line-height: 2;
	padding-left: 20px;
	margin-top: 10px;
}

.policy-block li {
	margin-bottom: 8px;
}

/* === 3. メインビジュアル === */
.hero {
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	/* padding-top: 110px; */
	overflow: hidden;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 10;
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	box-sizing: border-box;
}

/* --- 背景スライドショー --- */
.hero-slideshow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	animation: slideFade 18s infinite;
}

.slide-1 {
	background-image: url('../img/main visual.jpg');
	animation-delay: 0s;
}

.slide-2 {
	background-image: url('../img/AdobeStock_410798074.jpg');
	animation-delay: 6s;
}

.slide-3 {
	background-image: url('../img/AdobeStock_481507607.jpg');
	animation-delay: 12s;
}

@keyframes slideFade {
	0% {
		opacity: 0;
		transform: scale(1.05);
	}

	5% {
		opacity: 1;
	}

	33% {
		opacity: 1;
	}

	38% {
		opacity: 0;
		transform: scale(1);
	}

	100% {
		opacity: 0;
	}
}

/* フィルター */
.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	opacity: 0;
	z-index: -1;
	animation: filterFadeIn 3s ease-out forwards;
	animation-delay: 0.5s;
}

@keyframes filterFadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* --- テキストアニメーション --- */
.hero-title-group {
	display: block;
	width: 100%;
}

.juwa-text {
	opacity: 0;
	filter: blur(15px);
	transform: scale(1.02);
	animation: juwaAppear 3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
	animation-delay: 0.8s;
}

.hero-sub-jp-title {
	font-family: var(--font-jp);
	color: var(--color-gold);
	font-size: 1.1rem;
	letter-spacing: 0.15em;
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
}

.hero-en-title {
	font-family: var(--font-en);
	color: var(--color-gold);
	font-size: 1.2rem;
	letter-spacing: 0.2em;
	display: block;
	margin-bottom: 20px;
}

.hero-jp-title {
	font-family: var(--font-jp);
	font-size: 3.2rem;
	line-height: 1.5;
	color: var(--color-navy);
	font-weight: 500;
	display: block;
	margin-bottom: 30px;
	background: linear-gradient(45deg, var(--color-navy) 30%, #4a6d91 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-desc {
	font-size: 1.1rem;
	line-height: 2.2;
	color: var(--color-navy);
	display: block;
}

@keyframes juwaAppear {
	0% {
		opacity: 0;
		filter: blur(15px);
		transform: scale(1.02) translateY(5px);
	}

	100% {
		opacity: 1;
		filter: blur(0);
		transform: scale(1) translateY(0);
	}
}

/* === 4. アニメーション設定 === */
section {
	padding: 120px 20px;
	max-width: 1100px;
	margin: 0 auto;
	scroll-margin-top: 110px;
}

.fade-up {
	opacity: 0;
	transform: scale(0.92) translateY(30px);
	filter: blur(4px);
	transition: opacity 2.5s cubic-bezier(0.2, 1, 0.3, 1), transform 2.5s cubic-bezier(0.2, 1, 0.3, 1), filter 2.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.fade-up.visible {
	opacity: 1;
	transform: scale(1) translateY(0);
	filter: blur(0);
}

/* === 5. コンセプト (画像背景) === */
.section-concept {
	position: relative;
	background-image: url('../img/halo ring 2.jpg');
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 140px 20px;
	text-align: center;
	overflow: hidden;
}

.section-concept::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	z-index: 1;
}

.concept-white-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 5;
	transition: opacity 2s ease-in-out;
	opacity: 1;
	pointer-events: none;
}

.concept-gold-line {
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 0%;
	background: linear-gradient(180deg, transparent, var(--color-gold) 20%, #fff 80%, transparent);
	transform: translateX(-50%);
	z-index: 6;
	opacity: 0;
	box-shadow: 0 0 25px var(--color-gold);
}

.concept-content {
	position: relative;
	z-index: 4;
}

.concept-content h2,
.concept-content p {
	color: var(--color-navy);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.concept-anim-item {
	opacity: 0 !important;
	transform: translateY(15px);
	transition: opacity 2s ease-out, transform 2s ease-out;
}

.concept-images-wrapper {
	position: relative;
	z-index: 4;
	max-width: 810px;
	width: 100%;
	height: 344px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.concept-images-wrapper.visible {
	opacity: 1;
	transform: translateY(0);
}
.concept-img {
	position: absolute;
	width: 45%;
	height: auto;
	object-fit: cover;
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.3);
	border: 2px solid var(--color-gold);
	transition: all 0.5s ease;
}
.concept-img.img-1 {
	top: 50px;
	left: 0%;
	z-index: 2;
	transform: rotate(-10deg);
}
.concept-img.img-2 {
	bottom: -50px;
	right: 0%;
	z-index: 1;
	opacity: 0.8;
	transform: rotate(10deg);
}

.section-concept.active .concept-gold-line {
	animation: goldLineSequence 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.section-concept.active .concept-white-cover {
	opacity: 0;
	transition-delay: 1s;
}

.concept-anim-item.visible {
	opacity: 1 !important;
	transform: translateY(0);
}

@keyframes goldLineSequence {
	0% {
		height: 0%;
		opacity: 1;
	}

	50% {
		height: 120%;
		opacity: 1;
	}

	80% {
		height: 120%;
		opacity: 1;
	}

	100% {
		height: 120%;
		opacity: 0;
	}
}

/* === 6. サービスカード === */
.service-wrapper {
	cursor: pointer;
	height: auto;
	margin-bottom: 30px;
}

.service-card {
	background-color: #ffffff;
	padding: 40px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border-top: 3px solid var(--color-navy);
	transition: all 0.5s ease;
	position: relative;
	overflow: hidden;
}

.service-img-area {
	width: 100%;
	height: 220px;
	overflow: hidden;
	margin-bottom: 25px;
	border-radius: 2px;
	position: relative;
}

.service-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-wrapper:hover .service-photo {
	transform: scale(1.08);
}

.service-card h3 {
	color: var(--color-gold);
	margin-bottom: 15px;
	font-family: var(--font-en);
	transition: color 0.5s;
}

.service-card p {
	color: var(--color-navy);
	font-size: 0.95rem;
	transition: color 0.5s;
}

.service-toggle-icon {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 24px;
	height: 24px;
	border: 1px solid var(--color-navy);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-navy);
	font-size: 14px;
	transition: all 0.5s;
}

.service-toggle-icon::before {
	content: '+';
}

.service-wrapper:hover .service-card {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(15, 46, 82, 0.1);
}

.service-detail-grid {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-overflow {
	overflow: hidden;
	min-height: 0;
}

.service-detail-content {
	opacity: 0;
	padding-top: 0;
	margin-top: 0;
	border-top: 1px solid transparent;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.8;
	transition: all 0.8s ease;
}

.service-wrapper.open .service-card {
	background-color: var(--color-navy);
	border-top-color: var(--color-gold);
	transform: translateY(0);
}

.service-wrapper.open .service-card h3 {
	color: #fff;
}

.service-wrapper.open .service-card p {
	color: rgba(255, 255, 255, 0.9);
}

.service-wrapper.open .service-toggle-icon {
	border-color: #fff;
	color: #fff;
	transform: rotate(45deg);
}

.service-wrapper.open .service-detail-grid {
	grid-template-rows: 1fr;
}

.service-wrapper.open .service-detail-content {
	opacity: 1;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
}

/* === 7. 特徴エリア === */
.feature-block {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 100px;
	gap: 60px;
	cursor: pointer;
	transition: all 0.5s ease;
	position: relative;
}

.feature-block:nth-child(even) {
	flex-direction: row-reverse;
}

.feature-block:hover {
	transform: translateY(-3px);
}

.feature-img-wrapper {
	display: contents;
}

.feature-img {
	width: 50%;
	height: 350px;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	transition: transform 0.5s ease;
}

.feature-content {
	width: 45%;
	position: relative;
	padding-bottom: 40px;
}

.feature-number {
	font-family: var(--font-en);
	font-size: 4rem;
	color: rgba(197, 160, 89, 0.2);
	line-height: 1;
	display: block;
	font-weight: bold;
}

.feature-content h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	border-left: 3px solid var(--color-gold);
	padding-left: 20px;
	transition: color 0.5s;
}

.feature-detail-grid {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-detail-overflow {
	overflow: hidden;
}

.feature-detail-content {
	opacity: 0;
	margin-top: 0;
	font-size: 0.95rem;
	color: #666;
	text-align: justify;
	transition: margin-top 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.2s ease;
}

.feature-toggle-icon {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 30px;
	height: 30px;
	border: 1px solid var(--color-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-gold);
	font-size: 18px;
	transition: all 0.5s;
}

.feature-toggle-icon::before {
	content: '+';
}

.feature-block.open .feature-content h3 {
	color: var(--color-gold);
}

.feature-block.open .feature-detail-grid {
	grid-template-rows: 1fr;
}

.feature-block.open .feature-detail-content {
	opacity: 1;
	margin-top: 20px;
}

.feature-block.open .feature-toggle-icon {
	background-color: var(--color-gold);
	color: #fff;
	transform: rotate(45deg);
}

/* === 8. プロフィールエリア === */
#profile {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

#profile > div:first-child {
	grid-column: 1 / -1;
	text-align: center;
	margin-bottom: 40px;
}

.profile-card {
	background: #fff;
	padding: 40px;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
	border-radius: 4px;
	transition: all 0.6s ease;
	position: relative;
	/* height: 100%; */
	height: fit-content;
	box-sizing: border-box;
}

.profile-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(15, 46, 82, 0.1);
}

.profile-left-col {
	width: 100%;
	flex-shrink: 0;
}

.profile-photo {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 2px;
	margin-bottom: 25px;
}

.profile-awards-box {
	text-align: left;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.awards-title {
	font-family: var(--font-en);
	font-size: 0.8rem;
	color: var(--color-gold);
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 10px;
	display: block;
	letter-spacing: 0.05em;
	font-weight: bold;
}

.awards-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.8rem;
	color: #666;
	line-height: 1.6;
	min-height: 200px;
}

.awards-list li {
	margin-bottom: 5px;
	position: relative;
	padding-left: 10px;
}

.awards-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--color-gold);
}

.profile-right-col {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.profile-role {
	font-family: var(--font-en);
	color: var(--color-gold);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	display: block;
}

.profile-name {
	font-size: 1.6rem;
	border-bottom: none;
	display: block;
	padding-bottom: 0;
	line-height: 1;
	margin-top: 10px;
}

.profile-name + small {
	font-size: 0.8rem;
	display: block;
	margin-bottom: 15px;
}

.profile-desc {
	font-size: 0.9rem;
	color: #444;
	margin-bottom: 20px;
	text-align: justify;
	line-height: 1.8;
}

.profile-history-grid {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.profile-history-overflow {
	overflow: hidden;
}

.profile-history-content {
	border-top: 1px solid #eee;
	margin-top: 0;
	opacity: 0;
	transition: all 1.5s ease;
	padding-top: 0;
}

.profile-card:hover .profile-history-grid {
	grid-template-rows: 1fr;
}

.profile-card:hover .profile-history-content {
	margin-top: 20px;
	opacity: 1;
	padding-top: 20px;
}

.history-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.85rem;
	color: #666;
}

.history-list li {
	display: flex;
	margin-bottom: 8px;
}

/* 90pxに広げてCurrentの文字被りを防止 */
.history-year {
	font-family: var(--font-en);
	font-weight: bold;
	width: 90px;
	color: var(--color-navy);
	flex-shrink: 0;
}

.profile-link-wrap {
	margin-top: 20px;
	text-align: center;
	padding-top: 20px;
}

.profile-salon-btn {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 12px;
	border: 1px solid var(--color-navy);
	color: var(--color-navy);
	text-decoration: none;
	font-size: 0.85rem;
	font-family: var(--font-en);
	letter-spacing: 0.05em;
	transition: all 0.4s ease;
	text-align: center;
}

.profile-salon-btn:hover {
	background-color: var(--color-navy);
	color: #fff;
}

.profile-salon-btn::after {
	content: '→';
	display: inline-block;
	margin-left: 8px;
	transition: transform 0.3s;
}

.profile-salon-btn:hover::after {
	transform: translateX(4px);
}

/* === 追加：プロフィールギャラリー === */
.profile-gallery-grid {
	display: flex;
	gap: 15px;
	margin-top: 30px;
	justify-content: space-between;
}

.gallery-item {
	flex: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.gallery-title {
	font-family: var(--font-en);
	color: var(--color-gold);
	font-size: 0.85rem;
	margin-bottom: 8px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.gallery-main-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin-bottom: 12px;
	border-radius: 2px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.gallery-item:hover .gallery-main-img {
	transform: scale(1.02);
}

.view-more-btn {
	background: transparent;
	border: 1px solid var(--color-navy);
	color: var(--color-navy);
	padding: 8px 0;
	width: 100%;
	font-size: 0.75rem;
	cursor: pointer;
	transition: all 0.3s;
	font-family: var(--font-en);
	letter-spacing: 0.05em;
}

.view-more-btn:hover {
	background: var(--color-navy);
	color: #fff;
}

/* === 追加：モーダル === */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 46, 82, 0.9);
	z-index: 3000;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-window {
	background: #fff;
	width: 90%;
	max-width: 900px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px;
	position: relative;
	border-radius: 4px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.modal-overlay.active .modal-window {
	transform: translateY(0);
}

.modal-close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--color-navy);
	z-index: 10;
	transition: color 0.3s;
}

.modal-close-btn:hover {
	color: var(--color-gold);
}

.modal-title {
	font-family: var(--font-en);
	font-size: 1.5rem;
	color: var(--color-navy);
	text-align: center;
	margin-bottom: 30px;
	display: block;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

.modal-img-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 15px;
}

.modal-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 2px;
	cursor: pointer;
	transition: opacity 0.3s;
}

.modal-img:hover {
	opacity: 0.8;
}

/* 拡大表示用スタイル */
.modal-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 4000;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.modal-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.modal-lightbox img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
}

/* === 9. 料金表エリア === */
#price {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}

#price > div:first-child {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

.price-category {
	box-sizing: border-box;
	flex: 1;
	min-width: 300px;
	margin-bottom: 0;
	background: #fff;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
	border-radius: 4px;
	border-top: 4px solid var(--color-gold);
}

.menu-title-row {
	text-align: left;
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

.menu-title-en {
	font-family: var(--font-en);
	font-size: 1.4rem;
	color: var(--color-navy);
	display: block;
	font-weight: 600;
}

.menu-block,
.price-category > .menu-row {
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-radius: 4px;
	padding: 15px 0;
	margin: 0;
	border-bottom: 1px dashed #ddd;
}

.menu-block:last-child {
	border-bottom: none;
}

.menu-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 8px;
	padding-bottom: 0;
	border: none !important;
}

.menu-block .menu-row {
	border-bottom: none;
}

.menu-name {
	font-weight: 500;
	font-size: 1rem;
	padding-right: 10px;
	z-index: 1;
	color: var(--color-navy);
}

.menu-price {
	font-family: var(--font-en);
	font-size: 1.1rem;
	font-weight: 600;
	padding-left: 10px;
	z-index: 1;
	color: var(--color-gold);
}

.menu-desc {
	font-size: 0.85rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 5px;
	padding-left: 0;
	display: block;
	margin-top: 5px;
}

.menu-block:hover,
.price-category > .menu-row:hover {
	transform: translateX(5px);
	background-color: transparent;
	box-shadow: none;
	border-bottom-color: var(--color-gold);
}

.price-category > .menu-row:hover {
	border-bottom: 1px solid transparent;
}

/* === 10. Contactエリア (画像背景) === */
#contact {
	position: relative;
	background-image: url('../img/halo ring 2.jpg');
	background-size: cover;
	background-position: center;
	color: var(--color-navy);
	text-align: center;
}

#contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	z-index: 0;
}

#contact > * {
	position: relative;
	z-index: 1;
}

.contact-form {
	background: #fff;
	padding: 60px;
	border-radius: 4px;
	margin-top: 40px;
	box-shadow: 0 20px 60px rgba(15, 46, 82, 0.1);
	color: #333;
	text-align: left;
	max-width: 600px;
	margin: 40px auto 0;
}

.form-group {
	margin-bottom: 30px;
}

.form-label {
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 15px;
	border: 1px solid #ddd;
	font-size: 1rem;
	box-sizing: border-box;
}

.submit-btn {
	background-color: var(--color-navy);
	color: #fff;
	border: none;
	width: 100%;
	padding: 20px;
	cursor: pointer;
	transition: opacity 0.3s;
}

.submit-btn:hover {
	opacity: 0.8;
}

/* === 11. フッター === */
footer {
	position: relative;
	background-image: url('../img/halo ring 2.jpg');
	background-size: cover;
	background-position: center;
	color: var(--color-navy);
	padding: 80px 40px 40px;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	z-index: 0;
}

.footer-container,
.copyright {
	position: relative;
	z-index: 1;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}

.footer-left {
	text-align: left;
	margin: 0;
	padding: 0;
}

/* フッターロゴ画像用スタイル */
.footer-logo {
	display: inline-block;
	text-decoration: none;
}

.footer-logo img {
	height: 48px;
	width: auto;
	display: block;
}

.footer-tagline {
	font-size: 0.9rem;
	color: rgba(15, 46, 82, 0.8);
	line-height: 1.6;
	margin: 0;
	/* margin-top: -35px; */
	text-align: center;
}

.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 25px;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}

.footer-nav a {
	color: rgba(15, 46, 82, 0.8);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.footer-nav a:hover {
	color: var(--color-gold);
}

.copyright {
	font-size: 0.75rem;
	color: rgba(15, 46, 82, 0.5);
	border-top: 1px solid rgba(15, 46, 82, 0.1);
	padding-top: 20px;
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 50px;
}

/* === 12. 右下固定CTA === */
.floating-offer {
	position: fixed !important;
	bottom: 25px !important;
	right: 25px !important;
	z-index: 2147483647 !important;
	font-family: var(--font-jp);
	transition: all 0.3s ease;
	left: auto !important;
	top: auto !important;
}

.cta-orbit {
	position: absolute;
	top: -12px;
	left: -12px;
	right: -12px;
	bottom: -12px;
	border-radius: 50%;
	border: 1px solid rgba(197, 160, 89, 0.2);
	animation: spinRing 4s linear infinite;
	pointer-events: none;
	z-index: 0;
	opacity: 1;
	transition: opacity 0.3s;
}

.cta-orbit::before {
	content: '';
	position: absolute;
	top: -4px;
	left: 50%;
	width: 8px;
	height: 8px;
	background-color: var(--color-gold);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--color-gold);
	transform: translateX(-50%);
}

@keyframes spinRing {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.floating-offer.open .cta-orbit {
	opacity: 0;
}

.floating-offer.closed {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
	color: var(--color-navy);
	border: 2px solid #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(197, 160, 89, 0.5);
	position: relative;
	z-index: 1;
}

.floating-offer.closed:hover {
	transform: scale(1.05);
}

.floating-offer.closed::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
	transform: rotate(45deg);
	animation: shine 3s infinite ease-in-out;
	z-index: 2;
	pointer-events: none;
}

.offer-trigger {
	text-align: center;
	line-height: 1.2;
	position: relative;
	z-index: 3;
}

.gift-svg-refined {
	width: 32px;
	height: 32px;
	display: block;
	margin: 0 auto 2px;
	stroke: var(--color-navy);
	stroke-width: 1.2px;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke 0.3s;
}

.floating-offer.open .gift-svg-refined {
	stroke: var(--color-gold);
}

.trigger-en {
	font-family: var(--font-en);
	font-size: 0.65rem;
	letter-spacing: 0.05em;
	display: block;
	margin-bottom: 0px;
}

.trigger-jp {
	font-size: 0.9rem;
	font-weight: bold;
}

.floating-offer.open {
	width: 340px;
	background: #fff;
	border: 1px solid var(--color-gold);
	border-radius: 4px;
	padding: 30px 20px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
	transform-origin: bottom right;
	animation: openAnim 0.3s ease forwards;
}

@keyframes openAnim {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes shine {
	0% {
		left: -100%;
		opacity: 0;
	}

	20% {
		left: 100%;
		opacity: 1;
	}

	100% {
		left: 100%;
		opacity: 0;
	}
}

.offer-content {
	text-align: center;
	position: relative;
}

.close-btn {
	position: absolute;
	top: -25px;
	right: -15px;
	font-size: 1.8rem;
	color: #ccc;
	cursor: pointer;
	width: 40px;
	height: 40px;
	line-height: 40px;
}

.close-btn:hover {
	color: var(--color-navy);
}

.offer-badge {
	background-color: var(--color-gold);
	color: #fff;
	font-size: 0.8rem;
	padding: 4px 12px;
	display: inline-block;
	margin-bottom: 10px;
	letter-spacing: 0.1em;
}

.offer-text {
	font-size: 0.95rem;
	color: var(--color-navy);
	line-height: 1.6;
	margin-bottom: 15px;
}

.offer-price-box {
	margin: 10px 0 20px;
	padding: 15px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.old-price {
	font-size: 0.8rem;
	color: #999;
	text-decoration: line-through;
	margin-right: 10px;
}

.new-price {
	font-size: 1.6rem;
	color: var(--color-navy);
	font-weight: bold;
	font-family: var(--font-en);
}

.arrow-icon {
	color: var(--color-gold);
	margin-right: 5px;
}

.offer-btn {
	display: block;
	width: 100%;
	background-color: var(--color-navy);
	color: #fff;
	text-decoration: none;
	padding: 14px 0;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	transition: opacity 0.3s;
}

.offer-btn:hover {
	opacity: 0.8;
}

.floating-offer.open .offer-trigger {
	display: none;
}

.floating-offer.closed .offer-content {
	display: none;
}

@media (max-width: 900px) {
	body {
		overflow-x: hidden;
	}
	/* スマホ時のヘッダー高さとロゴサイズ調整（枠内に収まるよう調整） */
	header {
		padding: 0 2px;
		height: 80px;
	}

	.logo img {
		height: 60px;
	}

	/* スマホ時のフッターロゴサイズ調整 */
	/* .footer-logo img {
		height: 130px;
	} */

	nav {
		display: none;
	}

	.page-header {
		padding: 150px 20px 80px;
	}

	.policy-container {
		padding: 40px 20px;
		margin: -30px 15px 60px;
	}

	.feature-block,
	.feature-block:nth-child(even),
	.profile-card {
		flex-direction: column;
	}

	.feature-img,
	.feature-content,
	.service-img-area {
		width: 100%;
	}

	.floating-offer.closed {
		width: 80px;
		height: 80px;
		bottom: 20px !important;
		right: 20px !important;
	}

	.cta-orbit {
		top: -8px;
		left: -8px;
		right: -8px;
		bottom: -8px;
	}

	.floating-offer.open {
		width: 85%;
		right: 5% !important;
		left: 5% !important;
		bottom: 30px !important;
	}

	.footer-container {
		flex-direction: column;
		text-align: center;
	}

	.footer-left {
		text-align: center;
		margin-bottom: 30px;
	}

	.footer-nav {
		justify-content: center;
	}

	.profile-history-grid {
		grid-template-rows: 1fr !important;
	}

	.profile-history-content {
		border-top-color: #eee !important;
		margin-top: 20px !important;
		opacity: 1 !important;
	}

	#service .service-wrapper {
		margin-bottom: 20px;
	}

	#service > div {
		grid-template-columns: 1fr;
	}

	.profile-left-col,
	.profile-right-col {
		width: 100%;
	}

	.profile-photo {
		height: 250px;
	}

	/* Responsive adjustment for Price and Profile Sections */
	#profile {
		display: block;
	}

	.profile-card {
		margin-bottom: 40px;
	}

	#price {
		display: block;
	}

	.price-category {
		margin-bottom: 30px;
		padding-inline: 20px;
	}

	/* === 追加：推薦者セクション用レスポンシブ === */
	div.recommendation-card {
		flex-direction: column;
		gap: 30px;
		padding: 30px;
	}

	.recommendation-card .rec-left,
	.recommendation-card .rec-right {
		width: 100%;
	}

	/* 追加：スマホ表示時の経歴部分の調整 */
	.rec-career-box {
		margin-top: 20px;
	}

	/* === 追加：プロフィールギャラリー（スマホ用） === */
	.profile-gallery-grid {
		gap: 10px;
	}

	.gallery-title {
		font-size: 0.75rem;
	}

	.view-more-btn {
		font-size: 0.7rem;
		padding: 6px 0;
	}

	.modal-window {
		padding: 20px;
	}

	.modal-img-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.modal-img {
		height: 150px;
	}
}

/* === 追加：推薦者セクション用CSS === */
.recommendation-card {
	background: #fff;
	padding: 50px;
	display: flex;
	gap: 50px;
	align-items: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
	border-radius: 4px;
}

.recommendation-card:nth-of-type(n + 2) {
	margin-top: 40px;
}

.rec-left {
	width: 35%;
	flex-shrink: 0;
}

.rec-photo {
	display: block;
	width: 70%;
	height: auto;
	border-radius: 2px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
}

.rec-right {
	width: 65%;
}

@media (max-width: 900px) {
	.rec-photo {
		width: 100%;
	}
	/* .rec-left {
		display: contents;
	}
	.rec-right {
		display: contents;
	} */
	.rec-link-wrap {
		order: 1;
	}
}

.rec-title-en {
	font-family: var(--font-en);
	color: var(--color-gold);
	display: block;
	margin-bottom: 5px;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
}

.rec-name-box {
	margin-bottom: 25px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

.rec-name {
	font-size: 1.5rem;
	font-weight: 500;
	margin-right: 15px;
}

/* 役職削除のため .rec-job のスタイルは不要ですが、念のため残しておきます */
.rec-job {
	font-size: 0.85rem;
	color: #666;
}

.rec-text {
	font-size: 0.95rem;
	line-height: 2;
	text-align: justify;
	color: #444;
}

/* === 追加：推薦者経歴用CSS === */
.rec-career-box {
	margin-top: 25px;
	text-align: left;
}

.rec-career-title {
	font-size: 0.9rem;
	font-weight: bold;
	color: var(--color-navy);
	display: block;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--color-gold-light);
	padding-bottom: 5px;
}

.rec-career-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.85rem;
	color: #666;
	line-height: 1.8;
}

.rec-career-list li {
	margin-bottom: 5px;
	position: relative;
	padding-left: 12px;
}

.rec-career-list li::before {
	content: '-';
	position: absolute;
	left: 0;
	color: var(--color-gold);
}

/* === 追加：紹介文用CSS === */
.rec-intro-wrapper {
	cursor: pointer;
	position: relative;
	margin-bottom: 20px;
}

.rec-intro {
	font-size: 0.85rem;
	color: var(--color-gold);
	margin-bottom: 0;
	font-weight: 500;
}

.rec-intro-detail-grid {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rec-intro-detail-overflow {
	overflow: hidden;
	min-height: 0;
}

.rec-intro-detail-content {
	opacity: 0;
	padding-top: 0;
	margin-top: 0;
	font-size: 0.85rem;
	color: var(--color-gold);
	line-height: 1.8;
	transition: opacity 0.8s ease, padding-top 0.8s ease, margin-top 0.8s ease;
}

.rec-intro-wrapper.open .rec-intro-detail-grid {
	grid-template-rows: 1fr;
}

.rec-intro-wrapper.open .rec-intro-detail-content {
	opacity: 1;
	padding-top: 15px;
	margin-top: 0;
}

.rec-intro-toggle {
	display: inline-block;
	margin-top: 10px;
	font-family: var(--font-en);
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	color: var(--color-gold);
	text-decoration: underline;
	transition: color 0.3s;
}

.rec-intro-toggle:hover {
	color: var(--color-navy);
}

.rec-intro-toggle-less {
	display: none;
}

.rec-intro-wrapper.open .rec-intro-toggle-more {
	display: none;
}

.rec-intro-wrapper.open .rec-intro-toggle-less {
	display: inline;
}

/* rec-intro-wrapper がない既存の rec-intro 用 */
.rec-right > .rec-intro {
	margin-bottom: 20px;
}

/* === SP override from style-top-before.css === */
@media (max-width: 900px) {
	.hero-en-title {
		font-size: 0.95rem;
		margin-bottom: 12px;
		letter-spacing: 0.18em;
	}

	.hero-sub-jp-title {
		display: block;
		margin-bottom: 0px;
	}

	.hero-jp-title {
		font-size: 1.7rem;
		line-height: 1.35;
		margin-bottom: 18px;
		letter-spacing: 0.02em;
	}

	.hero-desc {
		font-size: 0.95rem;
		line-height: 1.8;
	}
}

@media (max-width: 375px) {
	.hero-jp-title {
		font-size: 1.4rem;
	}

	.hero-desc {
		font-size: 0.9rem;
	}
}

@media (max-width: 900px) {
	header {
		padding: 0 2px;
		height: 60px;
	}

	nav {
		display: none;
	}

	.section-concept {
		padding: 80px 20px;
		display: block;
	}

	.concept-gold-line {
		left: 50%;
		width: 2px;
		top: 0;
		height: 0%;
		transform: translateX(-50%);
		box-shadow: none;
		background: var(--color-gold);
	}

	.concept-content-wrapper {
		margin-left: 0;
		max-width: 100%;
		width: 100%;
		text-align: center;
		margin-top: 40px;
		padding-left: 0;
	}

	.concept-images-wrapper {
		width: 100%;
		margin-right: 0;
		margin-top: 60px;
		height: 350px;
		position: relative;
	}

	.concept-img {
		width: 65%;
	}

	.concept-img.img-1 {
		top: 0;
		left: 5%;
		transform: rotate(-8deg);
	}

	.concept-img.img-2 {
		bottom: 0;
		right: 5%;
		transform: rotate(8deg);
	}

	@keyframes lineMoveAndSlide {
		0% {
			height: 0%;
			opacity: 0;
		}

		10% {
			opacity: 1;
		}

		70% {
			height: 100%;
			opacity: 1;
		}

		85% {
			height: 100%;
			opacity: 1;
		}

		100% {
			height: 100%;
			opacity: 0;
		}
	}

	.service-card {
		display: flex;
		flex-direction: column;
		height: auto;
		padding: 30px;
		border-left: none;
		border-top: 3px solid var(--color-navy);
		min-height: auto;
	}

	.service-wrapper:nth-child(even) .service-card {
		border-right: none;
		padding: 30px;
	}

	.service-img-area,
	.service-card h3,
	.service-card p,
	.service-detail-grid {
		grid-column: auto;
		grid-row: auto;
		width: 100%;
		display: block;
	}

	.service-img-area {
		width: 100%;
		height: 200px;
		margin-bottom: 20px;
		min-height: 200px;
	}

	.service-card h3 {
		margin: 10px 0 10px;
		font-size: 1.5rem;
		text-align: left;
	}

	.service-card p {
		margin-bottom: 10px;
	}

	.service-toggle-icon {
		right: 20px;
		bottom: 20px;
		left: auto !important;
	}

	#service .service-detail-overflow {
		height: 0;
		overflow: hidden;
	}

	#service .service-detail-content {
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 0;
		margin-bottom: 0;
	}

	#service .service-detail-content p:last-child {
		margin-bottom: 0;
	}

	#service .is-open .service-detail-overflow,
	#service .active .service-detail-overflow,
	#service .open .service-detail-overflow,
	#service .is-active .service-detail-overflow {
		height: auto;
	}

	#features {
		display: block;
		padding-top: 80px;
	}

	.feature-block {
		border-top: 2px solid var(--color-gold);
		margin-bottom: 40px;
		padding: 30px 20px 50px;
		gap: 30px;
	}

	.feature-img-wrapper {
		display: block;
		aspect-ratio: 328 / 200;
		overflow: hidden;
	}

	.feature-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	span.feature-number {
		position: absolute;
		top: 0;
		right: 0;
		font-size: 2rem;
		padding: 10px;
	}

	#features .feature-detail-overflow {
		height: 0;
		overflow: hidden;
	}

	#features .feature-detail-content {
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 0;
		margin-bottom: 0;
	}

	#features .feature-detail-content p:last-child,
	#features .feature-detail-content ul:last-child,
	#features .feature-detail-content ol:last-child {
		margin-bottom: 0;
	}

	#features .feature-block.active .feature-detail-overflow,
	#features .feature-block.is-open .feature-detail-overflow,
	#features .feature-block.open .feature-detail-overflow,
	#features .feature-block.is-active .feature-detail-overflow {
		height: auto;
	}

	#features .feature-content {
		padding-right: 0 !important;
		padding-bottom: 70px !important;
	}

	#features .feature-content h3 {
		font-size: 1.4rem;
		margin-bottom: 15px;
		border-left: none;
		padding-left: 0;
		transition: color 0.5s;
		text-align: left;
	}

	#features .feature-toggle-icon {
		right: 20px;
		bottom: 20px;
	}

	#profile {
		grid-template-columns: 1fr;
	}

	.profile-card {
		margin-bottom: 40px;
		padding-inline: 30px;
	}

	.profile-photo {
		height: 250px;
	}

	.profile-left-col,
	.profile-right-col {
		width: 100%;
	}

	.profile-card:hover .profile-history-grid {
		grid-template-rows: 0fr;
	}

	.profile-card:hover .profile-history-content {
		margin-top: 0;
		opacity: 0;
		padding-top: 0;
		border-top-color: transparent;
	}

	.awards-list {
		min-height: auto;
	}

	.profile-view-more {
		display: block;
		width: 100%;
		text-align: center;
		padding: 10px 0;
		margin-bottom: 10px;
		border: 1px solid var(--color-gold);
		color: var(--color-gold);
		font-family: var(--font-en);
		font-size: 0.9rem;
		cursor: pointer;
		transition: all 0.3s;
		letter-spacing: 0.05em;
		user-select: none;
	}

	.profile-view-more:active {
		background-color: var(--color-gold);
		color: #fff;
	}

	.profile-right-col.is-open .profile-history-grid {
		grid-template-rows: 1fr;
	}

	.profile-right-col.is-open .profile-history-content {
		margin-top: 20px;
		opacity: 1;
		padding-top: 20px;
		border-top: 1px solid #eee;
	}

	.profile-right-col.is-open .profile-view-more {
		display: none;
	}

	#contact {
		display: flex;
		flex-direction: column;
		padding: 60px 30px;
	}

	#contact > .en-title,
	#contact > h2,
	#contact > p {
		width: 100%;
		text-align: center;
		grid-column: auto;
		grid-row: auto;
	}

	#contact > .en-title {
		align-self: center;
		margin-bottom: 10px;
	}

	#contact > h2 {
		align-self: center;
		margin-top: 0;
	}

	#contact > p {
		align-self: center;
		margin-bottom: 40px;
	}

	.contact-form {
		width: 100%;
		margin-top: 0;
		padding: 40px 20px;
		grid-column: auto;
		grid-row: auto;
	}

	.floating-offer.closed {
		width: 80px;
		height: 80px;
		bottom: 20px !important;
		right: 20px !important;
	}

	.floating-offer.open {
		width: 85%;
		right: 5% !important;
		left: 5% !important;
		bottom: 30px !important;
	}

	.footer-container {
		flex-direction: column;
		text-align: center;
	}

	.footer-left {
		text-align: center;
		margin-bottom: 30px;
	}

	.footer-nav {
		justify-content: center;
	}

	#recommendation .rec-title-en,
	#recommendation .rec-intro {
		color: var(--color-gold);
	}

	#recommendation .rec-title-en {
		text-transform: uppercase;
	}

	.contact-form,
	.floating-offer.open {
		box-sizing: border-box;
	}
}

/* === ハンバーガーボタンのスタイル === */
.hamburger {
	display: none; /* デフォルト（PC）では非表示 */
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 2000;
	padding: 10px;
	position: relative;
}
.hamburger span {
	display: block;
	width: 28px;
	height: 2px;
	background-color: var(--color-navy);
	margin: 6px 0;
	transition: all 0.3s ease;
}

/* メニュー展開時のボタンアニメーション（×印になる） */
.hamburger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* === スマホ用モバイルメニュー（オーバーレイ）のスタイル === */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1500;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}
.mobile-menu.active {
	opacity: 1;
	visibility: visible;
}
.mobile-menu ul {
	list-style: none;
	padding: 0;
	text-align: center;
}
.mobile-menu li {
	margin: 25px 0;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease;
}
.mobile-menu.active li {
	opacity: 1;
	transform: translateY(0);
}

/* 各メニュー項目の表示タイミングを少しずつずらすアニメーション */
.mobile-menu.active li:nth-child(1) {
	transition-delay: 0.1s;
}
.mobile-menu.active li:nth-child(2) {
	transition-delay: 0.15s;
}
.mobile-menu.active li:nth-child(3) {
	transition-delay: 0.2s;
}
.mobile-menu.active li:nth-child(4) {
	transition-delay: 0.25s;
}
.mobile-menu.active li:nth-child(5) {
	transition-delay: 0.3s;
}
.mobile-menu.active li:nth-child(6) {
	transition-delay: 0.35s;
}
.mobile-menu.active li:nth-child(7) {
	transition-delay: 0.4s;
}

.mobile-menu a {
	text-decoration: none;
	color: var(--color-navy);
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	transition: color 0.3s;
}
.mobile-menu a:hover {
	color: var(--color-gold);
}

/* === スマホ表示時（900px以下）の切り替え設定 === */
@media (max-width: 900px) {
	nav {
		display: none;
	} /* PC用の横並びナビゲーションを非表示 */
	.hamburger {
		display: block;
	} /* ハンバーガーボタンを表示 */
}

.u-sp {
	display: none;
}

@media (max-width: 900px) {
	.u-sp {
		display: block;
	}
}
.u-pc {
	display: block;
}

@media (max-width: 900px) {
	.u-pc {
		display: none;
	}
}
