@charset "UTF-8";

/* ========================================
   Base Reset & Variables
======================================== */
:root {
	--accent-pink: #eb2f5b;
	--bg-base: #fdfdfd;
	--bg-dark: #0a0a0c;
	--bg-card: #ffffff;
	--text-main: #1a1a1a;
	--text-sub: #666666;
	--c-accent: #ab8667;
	--border-color: #eaeaea;

	--font-sans: 'Noto Sans JP', sans-serif;
	--font-serif: 'Shippori Mincho', serif;
	--font-eng: 'Playfair Display', serif;

	--header-height: 60px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
	font-family: var(--font-sans);
	background-color: var(--bg-base);
	color: var(--text-main);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }

/* ========================================
   Simple Header (共通)
======================================== */
.simple-header {
	position: fixed;
	top: 0; left: 0; width: 100%;
	height: var(--header-height);
	background: rgba(253, 253, 253, 0.95);
	backdrop-filter: blur(10px);
	z-index: 100;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.5rem;
}
.btn-back { font-family: var(--font-eng); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; }
.header-logo { font-family: var(--font-eng); font-weight: 900; font-size: 1.2rem; }

/* ========================================
   Page Hero (準備中アナウンス含む)
======================================== */
.recruit-hero {
	padding-top: calc(var(--header-height) + 4rem);
	padding-bottom: 4rem;
	text-align: center;
	background: var(--bg-dark);
	color: #fff;
	position: relative;
	overflow: hidden;
}

/* 背景画像（薄く敷く） */
.recruit-hero::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-image: url('https://images.unsplash.com/photo-1542596594-649edbc13630?q=80&w=1600&auto=format&fit=crop');
	background-size: cover;
	background-position: center;
	opacity: 0.15;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero-tag {
	font-family: var(--font-eng);
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	color: var(--c-accent);
	margin-bottom: 1rem;
	display: block;
	text-transform: uppercase;
}

.hero-title {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
}

.hero-desc {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.8);
	line-height: 2;
	margin-bottom: 2rem;
}

/* 準備中バッジ */
.coming-soon-badge {
	display: inline-block;
	background-color: var(--accent-pink);
	color: #fff;
	font-family: var(--font-eng);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 8px 20px;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(235, 47, 91, 0.4);
}

/* ========================================
   共通セクションスタイル
======================================== */
.rec-section {
	padding: 80px 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.sec-header {
	text-align: center;
	margin-bottom: 50px;
}

.sec-title-en {
	font-family: var(--font-eng);
	font-size: 2rem;
	font-weight: 700;
	color: var(--c-accent);
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}

.sec-title-ja {
	font-family: var(--font-serif);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-main);
	letter-spacing: 0.05em;
}

/* ========================================
   Section 1: Why Choose Us (特徴・メリット)
======================================== */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.feat-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	padding: 40px 30px;
	text-align: center;
	border-radius: 8px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.feat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	border-color: var(--c-accent);
}

.feat-icon {
	font-family: var(--font-eng);
	font-size: 2.5rem;
	color: var(--c-accent);
	margin-bottom: 15px;
	font-weight: 900;
	opacity: 0.3;
}

.feat-title {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-main);
}

.feat-text {
	font-size: 0.9rem;
	color: var(--text-sub);
	line-height: 1.8;
	text-align: left;
}

/* ========================================
   Section 2: Requirements (求める女性像)
======================================== */
.req-section {
	background: #fcfaf8;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.req-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.req-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: var(--bg-card);
	padding: 30px;
	border-radius: 8px;
	border-left: 4px solid var(--c-accent);
	box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.req-check {
	color: var(--c-accent);
	font-size: 1.5rem;
	margin-top: -5px;
}

.req-content h3 {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-main);
}

.req-content p {
	font-size: 0.9rem;
	color: var(--text-sub);
	line-height: 1.8;
}

/* ========================================
   Section 3: Flow (お仕事までの流れ)
======================================== */
.flow-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	position: relative;
}

.flow-step {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	padding: 30px 20px;
	text-align: center;
	border-radius: 8px;
	position: relative;
}

.flow-step::before {
	content: attr(data-step);
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--text-main);
	color: #fff;
	font-family: var(--font-eng);
	font-size: 0.9rem;
	font-weight: 700;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 3px solid var(--bg-base);
}

.flow-title {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-weight: 700;
	margin: 20px 0 15px;
	color: var(--text-main);
}

.flow-text {
	font-size: 0.85rem;
	color: var(--text-sub);
	line-height: 1.8;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
	text-align: center;
	padding: 80px 20px;
	background: var(--bg-dark);
	color: #fff;
}

.cta-title {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-desc {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: 30px;
	line-height: 1.8;
}

.btn-cta {
	display: inline-block;
	background: var(--c-accent);
	color: #fff;
	padding: 15px 40px;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	border-radius: 50px;
	transition: background 0.3s;
}

.btn-cta:hover {
	background: #9a7659;
}

/* ========================================
   Footer (共通)
======================================== */
.site-footer {
	background: #111; color: #fff; text-align: center; padding: 2rem 0; font-size: 0.8rem;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; list-style: none; }
.footer-links a { color: #aaa; transition: color 0.2s; }
.footer-links a:hover { color: #fff; text-decoration: underline; }

/* スマホ対応 */
@media (max-width: 768px) {
	.req-item {
		flex-direction: column;
		gap: 10px;
	}
	.req-check { margin-top: 0; }
}