@charset "UTF-8";

/* ==========================================================================
	1. Base Variables & Reset
========================================================================== */
:root {
	--primary-color: #4A90E2;
	--secondary-color: #50E3C2;
	--accent-color: #F5A623;
	--bg-color: #F9FAFB;
	--text-dark: #333333;
	--text-light: #666666;
	--white: #ffffff;
	--font-main: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: var(--font-main);
	color: var(--text-dark);
	line-height: 1.8;
	background-color: var(--bg-color);
	overflow-x: hidden;
	padding-top: 70px;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
	2. Header & Navigation
========================================================================== */
header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	width: 100%;
	height: 70px;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
}
.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.logo {
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--primary-color);
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.img-logo {
	margin: 0;
	padding: 5px 0;
	width: 100%;
	max-width: 240px;
	height: auto;
}
.nav-links {
	display: flex;
	gap: 30px;
}
.nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.3s;
}
.nav-links a:hover {
	color: var(--primary-color);
}
.hamburger {
	display: none;
	cursor: pointer;
	padding: 10px;
}
.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	background-color: var(--text-dark);
	transition: all 0.3s;
}
.hamburger.active .bar:nth-child(2) {
	opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
	3. Footer
========================================================================== */
footer {
	background: var(--text-dark);
	color: var(--white);
	padding: 50px 0;
	text-align: center;
}
.footer-logo {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	display: block;
}
.footer-logo .img-logo {
	margin: 0 auto;
}
.company-info {
	margin-bottom: 20px;
	font-size: 0.9rem;
	opacity: 0.9;
}
.company-info p {
	margin-bottom: 5px;
}
.copyright {
	font-size: 0.8rem;
	opacity: 0.7;
	margin-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 20px;
	display: inline-block;
	width: 100%;
	max-width: 400px;
}

/* ==========================================================================
	4. Hero Section
========================================================================== */
.hero {
	position: relative;
	height: calc(100vh - 70px);
	min-height: 600px;
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/assets/images/mv.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
	margin-top: -70px;
	padding-top: 70px;
}
.hero-content {
	max-width: 800px;
	padding: 20px;
}
.hero-content h1 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	text-shadow: 0 2px 5px rgba(0,0,0,0.5);
	line-height: 1.4;
	font-weight: 700;
}
.hero-content p {
	font-size: 1.1rem;
	margin-bottom: 40px;
	line-height: 2;
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.btn {
	display: inline-block;
	padding: 15px 50px;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50px;
	font-weight: bold;
	transition: transform 0.3s, background 0.3s;
	box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}
.btn:hover {
	transform: translateY(-3px);
	background: #357ABD;
}

/* ==========================================================================
	5. Section Common
========================================================================== */
section {
	padding: 100px 0;
}
.section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 60px;
	color: var(--text-dark);
	position: relative;
}
.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--primary-color);
	margin: 20px auto 0;
}

/* ==========================================================================
	6. News Section
========================================================================== */
.news {
	background: var(--white);
}
.news-list {
	max-width: 900px;
	margin: 0 auto;
}
.news-item {
	border-bottom: 1px solid #eee;
}
.news-item a {
	display: flex;
	align-items: center;
	padding: 20px 10px;
	transition: background-color 0.3s;
}
.news-item a:hover {
	background-color: #f9f9f9;
}
.news-meta {
	display: flex;
	align-items: center;
	min-width: 220px;
}
.news-date {
	font-size: 0.9rem;
	color: var(--text-light);
	font-family: 'Roboto', sans-serif;
	margin-right: 15px;
}
.news-cat {
	font-size: 0.75rem;
	padding: 3px 10px;
	border-radius: 4px;
	color: #fff;
	background: #999;
}
.news-cat.cat-info {
	background: var(--primary-color);
}
.news-cat.cat-camp {
	background: var(--accent-color);
}
.news-title {
	font-size: 1rem;
	font-weight: normal;
	color: var(--text-dark);
	margin: 0;
}

/* ==========================================================================
	7. Features Section
========================================================================== */
.features {
	background-color: var(--white);
	background-image: url(/assets/images/bg-sky.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.feature-item {
	text-align: center;
	padding: 30px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s;
	border-top: 5px solid var(--primary-color);
}
.feature-item:hover {
	transform: translateY(-5px);
}
.feature-icon-circle {
	width: 80px;
	height: 80px;
	background: #EAF4FF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--primary-color);
	font-size: 2rem;
}
.feature-item h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: var(--text-dark);
}
.feature-item p {
	font-size: 0.95rem;
	color: var(--text-light);
}

/* ==========================================================================
	8. Store Info Section
========================================================================== */
.store-info {
	background: var(--bg-color);
}
.store-list {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.store-card {
	width: 75%;
	display: flex;
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	min-height: 350px;
}
.store-card:nth-child(odd) {
	margin: 0 auto 0 0;
}
.store-card:nth-child(even) {
	margin: 0 0 0 auto;
}
.store-img {
	width: 50%;
	background-size: cover;
	background-position: center;
	min-height: 300px;
}
.store-text {
	width: 50%;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.store-name {
	font-size: 1.8rem;
	margin-bottom: 15px;
	color: var(--primary-color);
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
	display: inline-block;
}
.store-address {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	font-weight: bold;
	color: #555;
}
.store-desc {
	font-size: 1rem;
	color: var(--text-light);
	margin-bottom: 20px;
}
.store-map-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--primary-color);
	font-weight: bold;
	transition: opacity 0.3s;
}
.store-map-link:hover {
	opacity: 0.7;
}

/* ==========================================================================
	9. Animation Classes
========================================================================== */
.js-anim {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.js-anim.is-active {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
	10. Responsive
========================================================================== */
@media (max-width: 900px) {
	.store-card {
		width: 90%;
	}
}
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 1.8rem;
	}
	.hamburger {
		display: block;
		z-index: 2000;
	}
	.nav-links {
		position: fixed;
		right: -100%;
		top: 0;
		flex-direction: column;
		background-color: var(--white);
		width: 80%;
		height: 100vh;
		text-align: center;
		transition: 0.4s;
		padding-top: 100px;
		box-shadow: -5px 0 15px rgba(0,0,0,0.1);
	}
	.nav-links.active {
		right: 0;
	}
	/* News Section Responsive */
	.news-item a {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	.news-meta {
		width: 100%;
		margin-bottom: 5px;
	}
	/* Store Info Responsive */
	.store-card, .store-card:nth-child(even), .store-card:nth-child(odd) {
		flex-direction: column;
		width: 90%;
		height: auto;
		margin: 0 auto;
	}
	.store-img {
		width: 100%;
		height: 250px;
	}
	.store-text {
		width: 100%;
		padding: 30px;
	}
}