@charset "utf-8";

/* ==========================================================================
   Base Styles - Bright & Warm Theme
   ========================================================================== */
:root {
	--primary-color: #e63946;
	/* Warm Red/Pink */
	--secondary-color: #ff6b6b;
	--accent-color: #ffb703;
	/* Warm Yellow */
	--text-color: #333333;
	--text-light: #666666;
	--bg-color: #fff5f5;
	/* Very light pink */
	--bg-white: #ffffff;
	--border-color: #ffe0e0;
	--font-base: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	font-family: var(--font-base);
	background-color: var(--bg-color);
	color: var(--text-color);
	margin: 0;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.7;
}

.l-container {
	width: 100%;
	overflow: hidden;
}

.c-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==========================================================================
   Header / Hero - Full Width Background
   ========================================================================== */
.l-header {
	background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #ffecd2 100%);
	padding: 60px 0 40px;
	text-align: center;
}

.l-header--hero {
	position: relative;
	padding: 100px 0 80px;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.p-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.p-hero-content {
	position: relative;
	z-index: 1;
}

.p-hero__logo {
	max-width: 400px;
	margin: 0 auto 20px;
}

.p-hero__logo-img {
	max-width: 400px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 0 20px rgba(255, 100, 150, 0.5));
}

.p-hero__title {
	font-size: 2.5rem;
	margin: 0 0 20px;
	font-weight: bold;
	color: #fff;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	letter-spacing: 0.05em;
}

.p-hero__subtitle {
	font-size: 1.3rem;
	color: #fff;
	margin-bottom: 30px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.p-hero__visual {
	margin: 0 auto;
	max-width: 500px;
}

.p-hero__visual img {
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Main Visual
   ========================================================================== */
.p-main-visual {
	background: var(--bg-white);
	padding: 40px 0;
	text-align: center;
}

.p-main-visual__img {
	max-width: 300px;
	width: 100%;
	height: auto;
	border-radius: 15px;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.p-section {
	padding: 60px 0;
}

.p-section--alt {
	background-color: var(--bg-white);
}

.p-section__title {
	font-size: 1.8rem;
	margin-bottom: 40px;
	text-align: center;
	color: var(--primary-color);
	position: relative;
}

.p-section__title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
	margin: 15px auto 0;
	border-radius: 2px;
}

/* About Section */
.p-about {
	background: var(--bg-white);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.p-about p {
	margin-bottom: 15px;
	font-size: 1.05rem;
}

.p-period-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 20px;
	justify-content: center;
}

.p-period-box {
	background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
	border: 2px solid var(--primary-color);
	border-radius: 10px;
	padding: 20px;
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	white-space: nowrap;
}

.p-period-box strong {
	color: var(--primary-color);
	font-size: 1.1rem;
}

/* ==========================================================================
   Map
   ========================================================================== */
.p-map {
	max-width: 800px;
	margin: 0 auto;
}

.p-map__img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Shop Cards
   ========================================================================== */
.p-shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
}

.p-shop-card {
	background: var(--bg-white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.p-shop-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.p-shop-card__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.p-shop-card__body {
	padding: 20px;
}

.p-shop-card__name {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--text-color);
	margin: 0 0 10px;
}

.p-shop-card__info {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 15px;
}

.p-shop-card__info p {
	margin: 5px 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.p-shop-card__info .icon {
	flex-shrink: 0;
	width: 18px;
	text-align: center;
}

.p-shop-card__benefit {
	background: linear-gradient(135deg, #fff0f0 0%, #ffe8e8 100%);
	border-left: 4px solid var(--primary-color);
	padding: 12px 15px;
	border-radius: 0 8px 8px 0;
}

.p-shop-card__benefit-label {
	font-size: 0.75rem;
	color: var(--primary-color);
	font-weight: bold;
	margin-bottom: 5px;
}

.p-shop-card__benefit-text {
	font-size: 1rem;
	font-weight: bold;
	color: var(--text-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.l-footer {
	background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
	text-align: center;
	padding: 30px 20px;
	color: #fff;
}

.l-footer__org {
	font-weight: bold;
	font-size: 1rem;
	margin-bottom: 10px;
}

.l-footer__copy {
	font-size: 0.8rem;
	opacity: 0.9;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
	.p-hero__title {
		font-size: 1.5rem;
	}

	.p-section__title {
		font-size: 1.4rem;
	}

	.p-shop-grid {
		grid-template-columns: 1fr;
	}

	.p-period-boxes {
		flex-direction: column;
		align-items: center;
	}

	.p-period-box {
		max-width: 100%;
	}

	.l-header {
		padding: 40px 0 30px;
	}

	.u-br-pc {
		display: none;
	}
}

/* ==========================================================================
   Floating Hearts Animation
   ========================================================================== */
.p-floating-hearts {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 2;
}

@keyframes floatUp {
	0% {
		transform: translateY(0);
		opacity: 0;
	}

	10% {
		opacity: 0.8;
	}

	90% {
		opacity: 0.6;
	}

	100% {
		transform: translateY(-550px);
		opacity: 0;
	}
}

.floating-heart {
	will-change: transform, opacity;
}
