@charset "UTF-8";
/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--red: #D42B2B;
	--deep: #8B1A1A;
	--green: #2D6A2D;
	--gold: #C49A38;
	--cream: #FFFAF5;
	--dark: #1a1010;
	--muted: #555555;
	--border-light: #e8ddd0;
}

html { scroll-behavior: smooth; }
body {
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--dark);
	background: var(--cream);
	overflow-x: hidden;
	line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* Layout */
.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.container-sm {
	width: 100%;
	max-width: 60rem;
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 640px) { .container-sm { padding: 0 1.5rem; } }

.container-xs {
	width: 100%;
	max-width: 48rem;
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 640px) { .container-xs { padding: 0 1.5rem; } }

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Noto Serif JP', serif;
	line-height: 1.25;
}

.section-label {
	display: inline-block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--red);
	border-bottom: 2px solid var(--red);
	padding-bottom: 0.25rem;
	margin-bottom: 1rem;
}
.section-label--green { color: var(--green); border-color: var(--green); }
.section-label--white { color: rgba(255,220,210,0.9); border-color: rgba(255,220,210,0.9); }

/* Fade-in */
.fade-in {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 600ms cubic-bezier(.23,1,.32,1),
	transform 600ms cubic-bezier(.23,1,.32,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
	display: inline-block;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 0.9rem 2rem;
	font-size: 0.95rem;
	cursor: pointer;
	border: none;
	transition: opacity 0.2s, transform 0.15s, background 0.2s, color 0.2s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }

.btn--red { background: var(--red); color: white; }
.btn--deep { background: var(--deep); color: white; }
.btn--green { background: var(--green); color: white; }
.btn--outline-white {
	background: transparent;
	color: white;
	border: 2px solid rgba(255,255,255,0.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); }

.btn--outline-red {
	background: transparent;
	color: var(--red);
	border: 2px solid var(--red);
}
.btn--outline-red:hover { background: var(--red); color: white; }

.btn--glow { box-shadow: 0 4px 24px rgba(212,43,43,0.45); }

/* Header */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(255,250,245,0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
	border-bottom-color: var(--border-light);
	box-shadow: 0 2px 20px rgba(212,43,43,0.07);
}

.header-accent {
	height: 4px;
	background: linear-gradient(90deg, var(--deep) 0%, var(--red) 40%, #F08080 70%, var(--green) 100%);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.7rem;
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.logo-icon {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: #f4a0a0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
	transition: transform 0.2s;
	padding-bottom: 2px;
}
.logo:hover .logo-icon { transform: scale(1.1); }
.logo-ja {
	display: block;
	font-family: 'Noto Serif JP', serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--deep);
	line-height: 1.2;
}
.logo-en {
	display: block;
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #996655;
	padding-top: 0.2rem;
}

/* Desktop nav */
.nav-desktop {
	display: none;
	align-items: center;
	gap: 4px;
}
@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-link {
	position: relative;
	display: inline-block;
	padding: 0.45rem 0.9rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #333;
	border-radius: 2px;
	transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--red); }
.nav-link.active {
	color: var(--red);
	background: rgba(212,43,43,0.07);
}
.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: 2px; left: 8px; right: 8px;
	height: 2px;
	background: var(--red);
	border-radius: 2px;
}

.nav-cta {
	margin-left: 0.75rem;
	padding: 0.48rem 1.2rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: white;
	background: var(--red);
	cursor: pointer;
	transition: opacity 0.2s, transform 0.15s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	border: none;
	background: none;
}
@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger span {
	display: block;
	width: 22px; height: 2px;
	background: var(--red);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
	display: none;
	border-top: 1px solid var(--border-light);
	background: var(--cream);
}
.nav-mobile.open { display: block; }

.nav-mobile a {
	display: block;
	padding: 1rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: #333;
	border-bottom: 1px solid #f0e8e0;
	transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--red); background: rgba(212,43,43,0.05); }

.nav-mobile-cta { padding: 1rem 1.5rem; }
.nav-mobile-cta a {
	display: block;
	padding: 0.75rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	text-align: center;
	color: white !important;
	background: var(--red);
	border-bottom: none !important;
}

/* Page Hero (generic) */
.page-hero {
	position: relative;
	padding: 9rem 0 6rem;
	overflow: hidden;
}
.page-hero__pattern {
	position: absolute; inset: 0;
	opacity: 0.15;
	background: url('../image/ichigo_pattern_bg.jpg') repeat;
	background-size: 500px;
}
.page-hero__inner { position: relative; z-index: 10; padding: 0rem 5rem; }

@media (max-width: 640px) {
	.page-hero__inner { position: relative; z-index: 10; padding: 0rem 1rem; }
}

.page-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 13px;
	margin-bottom: 1.5rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border: 1px solid;
}

.page-hero__title {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.page-hero__sub {
	font-size: 1rem;
	line-height: 1.8;
	max-width: 39rem;
}

/* Footer */
.site-footer { background: #2a0808; }

.footer-pattern {
	height: 8px;
	background: url('../image/ichigo_pattern_bg.jpg') repeat-x;
	background-size: 300px;
	opacity: 0.3;
}

.footer-body { padding: 3.5rem 0 0 0; }

.footer-grid {
	display: grid;
	gap: 5.0rem;
	padding: 0 5.0rem;
}
@media (max-width: 1024px) {
	.footer-grid {
		gap: 2.0rem;
		padding: 0 2.0rem;
	}
}

@media (min-width: 768px) {
	.footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1rem;
	
}
.footer-brand-icon {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: #f4a0a0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
	padding-bottom: 2px;
}

.footer-brand-ja {
	font-family: 'Noto Serif JP', serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: white;
	line-height: 1.2;
}
.footer-brand-en {
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #aa7766;
	padding-top: 0.3rem;
}

.footer-desc {
	font-size: 0.875rem;
	line-height: 1.8;
	color: #aa7766;
	padding: 0 0 0 1rem;

}

.footer-heading {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #cc8866;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
}
.footer-links li + li { margin-top: 0.2rem; }
.footer-links a {
	font-size: 0.875rem;
	color: #997766;
	transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-bottom {
	margin-top: 3rem;
	padding: 1.5rem 2.0rem;
	border-top: 1px solid rgba(180,80,60,0.22);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.footer-copy {
	font-size: 11px;
	color: #664433;
}
.footer-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	letter-spacing: 0.18em;
	color: #664433;
}

.order-last { order: 2; }
.order-first { order: 1; }
@media (max-width: 768px) {
	.order-last { order: 1; }
	.order-first { order: 2; }
}

/* Shared Section Parts */
/* Alternating grid */
.two-col {
	display: grid;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* Card grids */
.grid-3 {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Stats bar */
.stats-bar { background: var(--green); }
.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2.5rem 1rem;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,0.2);
	
}

.stat-item:last-child { border-right: none; }

@media (max-width: 768px) {
	.stat-item:nth-child(2n) { border-right: none; }
}

.stat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.stat-value {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	color: white;
	margin-bottom: 0.4rem;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* History list */
.history-list { display: flex; flex-direction: column; gap: 1rem; }
.history-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	padding: 1.5rem;
	background: white;
	border: 1px solid var(--border-light);
	border-left: 4px solid var(--red);
}
@media (max-width: 640px) {
	.history-item {
		display: block;
	}
}

.history-year {
	flex-shrink: 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--red);
	min-width: 5.5rem;
	padding-top: 2px;
}
.history-item h4 {
	font-family: 'Noto Serif JP', serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}
.history-item p {
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--muted);
}

/* Pain items */
.pain-list { display: flex; flex-direction: column; gap: 1rem; }
.pain-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: white;
	border: 1px solid var(--border-light);
	border-left: 4px solid var(--red);
}
.pain-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: -3px; }
.pain-item p { font-size: 0.95rem; color: #222; }

/* Quote box */
.quote-box {
	padding: 3rem 2rem;
	background: #fff0ec;
	border-left: 4px solid var(--red);
}
.quote-box blockquote {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--deep);
	line-height: 1.6;
}
.quote-box p {
	margin-top: 1rem;
	font-size: 0.875rem;
	color: #777;
	line-height: 1.7;
}

/* Photo quote */
.photo-quote {
	position: relative;
	height: 22rem;
	overflow: hidden;
}
@media (min-width: 768px) { .photo-quote { height: 28rem; } }
.photo-quote img { width: 100%; height: 100%; object-fit: cover; }
.photo-quote__overlay {
	position: absolute; inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(12,35,12,0.76);
}
.photo-quote__inner { text-align: center; padding: 0 1.5rem; max-width: 40rem; }
.photo-quote__text {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(1.1rem, 3vw, 1.8rem);
	font-weight: 700;
	color: white;
	line-height: 1.6;
	text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.photo-quote__sub {
	display: block;
	margin-top: 1rem;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.65);
}

/* CTA section */
.cta-section { padding: 5.5rem 0; }
@media (max-width: 768px) {
	.cta-section { padding: 3rem 0; }
}

.cta-inner {
	text-align: center;
	max-width: 60rem;
	margin: 0 auto;
}
.cta-inner h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: white;
	line-height: 1.4;
	margin-bottom: 2rem;
}
.cta-inner p {
	color: rgba(255,255,255,0.8);
	line-height: 1.8;
	margin-bottom: 2.5rem;
}

/* Activity card */
.activity-section { padding: 6rem 0; }
@media (max-width: 768px) {
	.activity-section { padding: 3rem 0; }
}
.activity-section:nth-of-type(odd) { background: var(--cream); }
.activity-section:nth-of-type(even) { background: #f0ece8; }

.activity-img img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.activity-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border-bottom: 2px solid;
	padding-bottom: 4px;
	margin-bottom: 0.75rem;
}

.activity-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--dark);
	margin-bottom: 0.5rem;
}

.activity-subtitle {
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.activity-desc {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 2rem;
}

.stats-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stats-mini-item {
	padding: 1rem;
	text-align: center;
	background: white;
	border: 1px solid var(--border-light);
}
.stats-mini-val {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 4px;
}
.stats-mini-label { font-size: 11px; color: #666; }

/* Membership plans */
.plans-grid {
	display: grid;
	gap: 1.5rem;
	max-width: 64rem;
	margin: 0 auto;
}
@media (min-width: 768px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card {
	background: white;
	overflow: hidden;
	border: 1px solid var(--border-light);
	transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(212,43,43,0.12); }
.plan-card--featured {
	border: 2px solid var(--red);
	box-shadow: 0 8px 32px rgba(212,43,43,0.18);
}
.plan-card__badge {
	padding: 0.5rem;
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: white;
	background: var(--red);
}
.plan-card__body { padding: 2rem; }
.plan-card__name {
	font-family: 'Noto Serif JP', serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 0.5rem;
}
.plan-card__price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 1.5rem;
}
.plan-card__amount {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--red);
}
.plan-card__period { font-size: 0.875rem; color: #777; }
.plan-card__features { list-style: none; margin-bottom: 1.5rem; }
.plan-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.85rem;
	color: #444;
	margin-bottom: 0.75rem;
	line-height: 1.5;
}
.plan-card__features li::before { content: '🍓'; flex-shrink: 0; }

/* Roadmap */
.roadmap-list { display: flex; flex-direction: column; gap: 1rem; }
.roadmap-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	padding: 1.5rem;
	background: white;
	border: 1px solid var(--border-light);
}
.roadmap-step {
	flex-shrink: 0;
	width: 3rem; height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Noto Serif JP', serif;
	font-size: 0.875rem;
	font-weight: 700;
	color: white;
	background: var(--red);
}
.roadmap-item h4 {
	font-family: 'Noto Serif JP', serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}
.roadmap-item p { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* Application form */
.apply-form {
	padding: 2rem;
	background: rgba(80,10,10,0.55);
	border: 1px solid rgba(180,60,60,0.45);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	color: rgba(255,200,185,0.9);
	margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	font-family: 'Noto Sans JP', sans-serif;
	background: rgba(50,8,8,0.75);
	border: 1px solid rgba(180,60,60,0.55);
	color: white;
	outline: none;
	transition: border-color 0.2s;
	appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(255,180,160,0.85); }
.form-select option { background: #5a1010; color: white; }
.form-textarea { resize: vertical; }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,180,160,0.45); }

.form-success {
	display: none;
	margin-top: 1rem;
	padding: 1rem;
	font-size: 0.9rem;
	font-weight: 700;
	text-align: center;
	background: rgba(43,139,43,0.25);
	border: 1px solid rgba(43,200,43,0.4);
	color: #a0f0a0;
}

/* Values cards (dark bg) */
.value-card {
	padding: 2rem;
	text-align: center;
	background: rgba(180,40,40,0.48);
	border: 1px solid rgba(220,100,80,0.45);
}
.value-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.value-card .en {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,190,170,0.9);
	margin-bottom: 4px;
}
.value-card h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.75rem;
}
.value-card p {
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(255,220,210,0.85);
}
