/* =======================================================
   AKIBA OTAKU — Lightweight Global Styles (Full)
   Author: Nao Koiwa / ChatGPT
   Version: 2025.10
   ======================================================= */

/* ========== Base ========== */
:root {
	--primary: #e63946;
	--dark: #111;
	--light: #fff;
	--gray: #f7f7f7;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Montserrat', system-ui, sans-serif;
	background: var(--light);
	color: var(--dark);
	line-height: 1.6;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	color: var(--primary);
}

/* ========== Header & Navigation ========== */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid #eee;
	backdrop-filter: blur(8px);
	z-index: 999;
	transition: box-shadow 0.3s;
}
nav {
	max-width: 1200px;
	margin: auto;
	padding: 0.8rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	font-weight: 800;
	color: var(--primary);
	font-size: 1.4rem;
}

/* --- menu --- */
nav ul {
	display: flex;
	list-style: none;
	gap: 1.2rem;
	flex-wrap: wrap;
}
nav li a {
	font-weight: 600;
	color: var(--dark);
	font-size: 0.95rem;
}
nav li a.active {
	color: var(--primary);
}

/* --- Dropdown --- */
.dropdown {
	position: relative;
}
.dropdown-content {
	display: none;
	position: absolute;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	top: 100%;
	left: 0;
	min-width: 180px;
	z-index: 1000;
	text-align: left;
}
.dropdown-content li {
	list-style: none;
}
.dropdown-content a {
	display: block;
	padding: 0.6rem 1rem;
	color: #333;
	font-weight: 500;
}
.dropdown-content a:hover {
	background: var(--primary);
	color: #fff;
}
.dropdown:hover .dropdown-content {
	display: block;
}

/* --- Mobile Menu --- */
.menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.6rem;
	color: var(--primary);
	cursor: pointer;
}
@media (max-width: 768px) {
	nav ul {
		display: none;
		position: absolute;
		top: 60px;
		right: 10px;
		flex-direction: column;
		background: #fff;
		padding: 1rem;
		border-radius: 8px;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	}
	nav.open ul {
		display: flex;
	}
	.menu-btn {
		display: block;
	}
	nav.open .dropdown-content {
		position: static;
		background: none;
		box-shadow: none;
	}
	.dropdown-content a {
		padding-left: 1.5rem;
	}
}

/* --- SNS Buttons --- */
.sns {
	display: flex;
	gap: 0.5rem;
}
.sns a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.sns a:hover {
	background: #c92b38;
}

/* ========== Hero Section ========== */
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #000;
	display: flex;
	align-items: center; /* ✅ モバイルでは中央 */
	justify-content: center;
	text-align: center;
}

.hero picture img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	filter: brightness(0.65);
}

.hero-text {
	position: relative;
	z-index: 2;
	color: #fff;
	padding: 0 1rem;
	max-width: 600px;
	transition: all 0.4s ease;
}

.hero-text h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin-bottom: 1rem;
}

.hero-text p {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	color: #fff; /* ✅ 白文字に固定 */
	opacity: 0.9; /* ✅ 少し柔らかく（調整可） */
}

.btn {
	display: inline-block;
	background: var(--primary);
	color: #fff;
	padding: 0.8rem 1.6rem;
	border-radius: 30px;
	font-weight: 700;
}
.btn:hover {
	background: #c92b38;
}

/* ✅ PCサイズで上寄せに変更 */
@media (min-width: 768px) {
	.hero {
		align-items: flex-start; /* 上寄せ */
		padding-top: 25vh; /* 上から25%の位置に配置 */
	}
}
/* =======================================================
   HERO BASIC (Privacy / Static Pages)
   ======================================================= */
.hero-basic {
	position: relative;
	width: 100%;
	height: 65vh; /* ✅ 高さを少し拡大 */
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
}

.hero-basic picture,
.hero-basic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ✅ 背景を暗くするオーバーレイ */
.hero-basic::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 1;
}

.hero-basic .hero-text {
	position: relative;
	z-index: 2;
	color: #fff;
	padding: 2rem 1rem 4rem;
	max-width: 700px;
}

.hero-basic .hero-text h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	margin-bottom: 0.8rem;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-basic .hero-text p {
	font-size: 1rem;
	line-height: 1.6;
	color: #f5f5f5;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ✅ モバイル調整 */
@media (max-width: 768px) {
	.hero-basic {
		height: 55vh;
		align-items: flex-end;
	}
	.hero-basic .hero-text {
		padding-bottom: 2rem;
	}
}

/* ========== Section Common ========== */
section {
	max-width: 1080px;
	margin: 4rem auto;
	padding: 0 1rem;
	text-align: center;
}
section h2 {
	color: var(--primary);
	margin-bottom: 0.5rem;
}
section p {
	color: #444;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}
@media (max-width: 768px) {
	section {
		margin: 3rem auto;
	}
}

/* ========== Tours Grid ========== */
.tours {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}
.tour {
	background: var(--gray);
	border-radius: 12px;
	overflow: hidden;
	text-align: left;
	transition: 0.3s;
}
.tour:hover {
	transform: translateY(-5px);
}
.tour img {
	aspect-ratio: 16/9;
	object-fit: cover;
}
.tour-content {
	padding: 1.5rem;
}
.tour-content h3 {
	margin-bottom: 0.5rem;
}
.tour-content p {
	font-size: 0.9rem;
	color: #444;
	margin-bottom: 1rem;
}
.price {
	font-weight: 700;
	color: var(--primary);
}

/* ========== Read More Button ========== */
.btn-read {
	display: inline-block;
	margin-top: 0.8rem;
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 25px;
	background: var(--primary);
	color: #fff;
	text-align: center;
	transition: all 0.3s ease;
}

.btn-read:hover {
	background: #c92b38;
	transform: translateY(-2px);
}

/* ========== About / Team Sections ========== */
.about {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	align-items: center;
	text-align: left;
}
.about h3 {
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}
.feature {
	background: var(--gray);
	border-radius: 10px;
	padding: 1rem;
	font-size: 0.9rem;
}
.feature h4 {
	color: var(--primary);
	margin-bottom: 0.3rem;
}
.about img {
	border-radius: 12px;
	width: 100%;
}

/* ========== Gallery Section ========== */
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}
.gallery img {
	border-radius: 10px;
	aspect-ratio: 4/3;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.gallery img:hover {
	transform: scale(1.05);
}

/* ========== Testimonials Section ========== */
.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.testimonial-card {
	background: var(--gray);
	padding: 1.5rem;
	border-radius: 10px;
	text-align: left;
}
.testimonial-card p {
	font-style: italic;
	margin-bottom: 0.8rem;
}
.testimonial-card h4 {
	color: var(--primary);
	font-size: 1rem;
}

/* ========== Footer ========== */
footer {
	background: var(--dark);
	color: #fff;
	text-align: center;
	padding: 2rem 1rem;
	font-size: 0.9rem;
}
footer a {
	color: #fff;
	text-decoration: underline;
}
footer a:hover {
	color: var(--primary);
}

/* ========== SNS Icons ========== */
/* ========== SNS Icons (WebP/PNG Version) ========== */
.sns {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	align-items: center;
}

.sns a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.sns a:hover {
	transform: translateY(-3px);
}

/* ✅ 画像を均等に中央配置 */
.sns img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 50%;
}

/* =======================================================
   REVIEWS SECTION — TripAdvisor Embed (Akiba Style)
   ======================================================= */
.reviews {
	text-align: center;
	padding: 4rem 1rem;
	background: var(--gray);
	border-radius: 12px;
	margin: 4rem auto;
	max-width: 900px;
}

/* 見出しと説明文 */
.reviews h2 {
	color: var(--primary);
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.reviews p {
	color: #555;
	margin-bottom: 2rem;
	font-size: 1rem;
}

/* レビューカード全体（背景・枠） */
.review-card {
	background: #fff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	max-width: 700px;
	margin: 0 auto;
	transition: transform 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.review-card:hover {
	transform: translateY(-4px);
}

/* TripAdvisorロゴ画像 */
.review-card img {
	display: block;
	margin: 0 auto 1rem;
	max-width: 240px;
	height: auto;
}

/* TripAdvisor iframe中央寄せ */
.TA_selfserveprop {
	display: flex !important;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 !important;
	margin: 0 auto !important;
}

.TA_selfserveprop iframe {
	display: block !important;
	margin: 0 auto !important;
	max-width: 100%;
	height: auto;
	border: none;
}

/* TripAdvisorのリンク装飾を無効化 */
.TA_selfserveprop a {
	text-decoration: none !important;
	color: inherit !important;
}

/* スマホ調整 */
@media (max-width: 768px) {
	.reviews {
		padding: 3rem 1rem;
	}

	.review-card {
		padding: 1.5rem;
	}

	.reviews h2 {
		font-size: 1.5rem;
	}

	.reviews p {
		font-size: 0.95rem;
	}
}

/* =======================================================
   TOUR DETAILS PAGE SPECIFIC
   ======================================================= */
#tour-details {
	text-align: left;
	max-width: 900px;
	margin: 5rem auto;
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#tour-details h2 {
	margin-top: 2rem;
	font-size: 1.4rem;
	color: var(--primary);
	border-left: 4px solid var(--primary);
	padding-left: 0.5rem;
}

#tour-details ul,
#tour-details ol {
	margin: 1rem 0 1.5rem 1.25rem;
	color: #333;
}

#tour-details li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.booking {
	margin-top: 2rem;
	text-align: center;
	background: var(--gray);
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
	#tour-details {
		padding: 1.5rem;
		margin: 3rem 1rem;
	}
	.hero-text h1 {
		font-size: 1.9rem;
	}
	.hero-text p {
		font-size: 0.95rem;
	}
}

/* =======================================================
   TOUR HISTORY — Improved Readability Layout
   ======================================================= */
.tour-history-section {
	max-width: 1100px;
	margin: 5rem auto;
	padding: 0 1rem;
	text-align: left;
}

.tour-history-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 2rem;
	margin-bottom: 3rem;
}

.tour-history-card.reverse {
	grid-template-columns: 1fr 1fr;
	direction: rtl; /* ✅ 画像とテキストを左右逆にする */
}

.tour-history-card.reverse .tour-info {
	direction: ltr; /* ✅ テキストの読み方向を戻す */
}

.tour-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.tour-info h3 {
	color: var(--primary);
	margin-bottom: 0.3rem;
}

.tour-date {
	color: #777;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.tour-info p {
	margin-bottom: 1rem;
}

.tour-info blockquote {
	margin: 1rem 0 0;
	padding: 1rem 1.2rem;
	background: #f8f8f8;
	border-left: 4px solid var(--primary);
	border-radius: 8px;
	font-style: italic;
	line-height: 1.6;
	color: #333;
}

.tour-quote-footer {
	margin-top: 0.6rem;
	color: #666;
	font-size: 0.85rem;
	font-style: normal;
	text-align: right;
}

.tour-divider {
	margin: 2.5rem auto;
	width: 80%;
	border: none;
	height: 1px;
	background: #ddd;
}

/* ✅ モバイル対応 */
@media (max-width: 768px) {
	.tour-history-card,
	.tour-history-card.reverse {
		grid-template-columns: 1fr;
		direction: ltr;
	}
	.tour-info {
		padding: 0 0.5rem;
	}
	.tour-image img {
		margin-bottom: 1rem;
	}
}

/* =======================================================
   PRIVACY POLICY PAGE
   ======================================================= */
.policy-container {
	max-width: 900px;
	margin: 4rem auto;
	padding: 2rem 1rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	line-height: 1.7;
}

.policy-container h2 {
	text-align: center;
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.policy-item {
	margin-bottom: 2rem;
}

.policy-item h3 {
	color: var(--primary);
	margin-bottom: 0.6rem;
	font-size: 1.2rem;
}

.policy-item ul {
	list-style: disc;
	margin-left: 1.5rem;
}

.policy-note {
	text-align: center;
	font-size: 0.9rem;
	color: #555;
	margin-top: 2rem;
}

/* ✅ Responsive */
@media (max-width: 768px) {
	.policy-container {
		padding: 1.5rem;
		margin: 2rem 1rem;
	}
	.policy-container h2 {
		font-size: 1.4rem;
	}
	.policy-item h3 {
		font-size: 1.1rem;
	}
}

/* =======================================================
   FAQ PAGE STYLES
   ======================================================= */
.faq-container {
	max-width: 900px;
	margin: 4rem auto;
	padding: 2rem 1rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.faq-container h2 {
	color: var(--primary);
	margin-bottom: 1rem;
}

.faq-container p {
	color: #555;
	margin-bottom: 2rem;
}

.faq-list {
	text-align: left;
	display: grid;
	gap: 1rem;
}

.faq-list details {
	background: var(--gray);
	border-radius: 10px;
	padding: 1rem 1.2rem;
	transition: 0.3s;
	cursor: pointer;
}

.faq-list summary {
	font-weight: 700;
	font-size: 1rem;
	list-style: none;
	position: relative;
	padding-right: 1.5rem;
}

.faq-list summary::after {
	content: '＋';
	position: absolute;
	right: 0;
	top: 0;
	font-weight: 800;
	transition: transform 0.3s;
}

.faq-list details[open] summary::after {
	content: '－';
	transform: rotate(90deg);
}

.faq-list p {
	margin-top: 0.8rem;
	color: #333;
	font-size: 0.95rem;
	line-height: 1.6;
}

.faq-list a {
	color: var(--primary);
	text-decoration: underline;
}

.faq-list a:hover {
	color: #c92b38;
}

/* ✅ Responsive */
@media (max-width: 768px) {
	.faq-container {
		padding: 1.5rem;
		margin: 2rem 1rem;
	}
}

/* =======================================================
   CONTACT PAGE
   ======================================================= */
.contact-section {
	max-width: 1000px;
	margin: 4rem auto;
	padding: 2rem 1rem;
	text-align: center;
}

.contact-section h2 {
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.contact-section p {
	color: #555;
	margin-bottom: 2rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.contact-card {
	background: var(--gray);
	border-radius: 12px;
	padding: 2rem;
	text-align: left;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}
.contact-card:hover {
	transform: translateY(-5px);
}

.contact-card h3 {
	color: var(--primary);
	margin-bottom: 1rem;
}

.contact-card label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0.8rem 0 0.3rem;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
	width: 100%;
	padding: 0.6rem 0.8rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 0.95rem;
	outline: none;
	background: #fff;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

.contact-card textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-card .btn {
	width: 100%;
	margin-top: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-section {
		margin: 2rem auto;
		padding: 1rem;
	}
	.contact-card {
		padding: 1.5rem;
	}
}

/* =======================================================
   BOOKING FORM
   ======================================================= */
.booking-form {
	max-width: 800px;
	margin: 4rem auto;
	padding: 2rem 1.5rem;
	background: var(--gray);
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.booking-form h2 {
	color: var(--primary);
	margin-bottom: 0.8rem;
}

.booking-form p {
	color: #555;
	margin-bottom: 2rem;
}

.booking-form-container {
	display: grid;
	gap: 1rem;
	text-align: left;
}

.form-group label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.6rem 0.8rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 0.95rem;
	background: #fff;
	transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.15);
	outline: none;
}

.booking-form .btn {
	width: 100%;
	margin-top: 1.2rem;
	font-weight: 600;
}
/* =======================================================
   THANK YOU PAGE
   ======================================================= */
.thankyou-section {
	max-width: 800px;
	margin: 4rem auto;
	padding: 2rem 1rem;
	text-align: center;
}

.thankyou-box {
	background: var(--gray);
	border-radius: 12px;
	padding: 3rem 2rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.thankyou-box h2 {
	color: var(--primary);
	margin-bottom: 1rem;
}

.thankyou-box p {
	color: #555;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.thankyou-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.btn-outline {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
}

.btn-outline:hover {
	background: var(--primary);
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
	.thankyou-box {
		padding: 2rem 1.5rem;
	}
	.thankyou-actions {
		flex-direction: column;
	}
}

/* === Base layout === */
.responsive-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 0.75rem 1rem;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* === Logo === */
.logo {
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: 1px;
	color: #000;
	text-decoration: none;
}

/* === Menu Button === */
.menu-btn {
	font-size: 1.8rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem 0.75rem;
	line-height: 1;
	border-radius: 6px;
	transition: background 0.3s;
}

.menu-btn:active,
.menu-btn:focus {
	background: rgba(0, 0, 0, 0.05);
}

/* === Nav Links === */
ul {
	list-style: none;
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0;
}

ul li a {
	display: inline-block;
	padding: 0.75rem 1rem;
	text-decoration: none;
	color: #111;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}

ul li a:hover,
ul li a.active {
	background: #e63946;
	color: #fff;
}

/* === Dropdown === */
.dropdown-content {
	display: none;
	position: absolute;
	background: #fff;
	min-width: 180px;
	border-radius: 6px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown-content a {
	display: block;
	padding: 0.8rem 1rem;
}

/* === SNS icons === */
.sns a {
	margin-left: 0.5rem;
}

.sns img {
	width: 28px;
	height: 28px;
	padding: 4px;
	border-radius: 50%;
	transition: background 0.2s;
}

.sns img:hover {
	background: rgba(0, 0, 0, 0.08);
}

/* === Mobile === */
@media (max-width: 768px) {
	.responsive-nav ul {
		display: none;
		flex-direction: column;
		gap: 0.2rem;
		width: 100%;
		background: #fff;
		position: absolute;
		top: 100%;
		left: 0;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	}

	.responsive-nav.open ul {
		display: flex;
	}

	.responsive-nav ul li a {
		padding: 1.2rem;
		font-size: 1.1rem;
	}

	.sns {
		display: none;
	}
}

/* ========== FOOTER STYLES ========== */
.site-footer {
	background: #111;
	color: #fff;
	padding: 3rem 1rem 1.5rem;
	text-align: center;
	font-size: 0.95rem;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

.footer-logo,
.footer-links,
.footer-info {
	flex: 1 1 250px;
}

.footer-logo h4 {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
	color: #fff;
}

.footer-logo p {
	margin: 0.3rem 0;
}

/* 🔹 SNS icons (footer) */
.footer-sns {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	gap: 0.6rem;
}

.footer-sns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	transition: background 0.3s;
}

.footer-sns img {
	width: 22px;
	height: 22px;
}

.footer-sns a:hover {
	background: #e63946;
}

/* Links */
.footer-links a,
.footer-info a {
	display: block;
	color: #ccc;
	margin: 0.4rem 0;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-links a:hover,
.footer-info a:hover {
	color: #fff;
}

/* Bottom */
.footer-bottom {
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 1rem;
	font-size: 0.85rem;
	color: #aaa;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
