/* =========================================================
   トップページ固有スタイル
========================================================= */

/* ----------
   ヘッダー (Direct Markup)
---------- */
.c-header {
	background: var(--color-bg-main);
	border-bottom: 1px solid #EEEEEE;
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.c-header__logo a {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-text-main);
}

.c-header__nav ul {
	list-style: none;
	gap: 20px;
}

.c-header__nav a {
	font-weight: bold;
	color: var(--color-text-main);
}

.c-header__nav a.u-text-highlight {
	color: var(--main_grad_start);
}

/* ----------
   ヒーローエリア (Hero)
---------- */
.p-hero {
	/* ダミーの背景グラデーション（本来は画像を敷く） */
	background: linear-gradient(135deg, #111111 0%, #333333 100%);
	color: #FFFFFF;
	padding: 100px 0;
	text-align: center;
}

.p-hero__title {
	font-size: 28px; /* スマホデフォルト */
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 20px;
}

.p-hero__text {
	font-size: 18px;
	margin-bottom: 40px;
}



/* ----------
   特徴 (Features)
---------- */
.p-features__list {
	flex-direction: column; /* スマホデフォルト */
	gap: 30px;
}

.p-features__item {
	flex: 1;
	min-width: 300px;
	background: var(--color-bg-sub);
	padding: 30px;
	border-radius: 10px;
	text-align: center;
}

.p-features__icon {
	font-size: 50px;
	margin-bottom: 15px;
}

.p-features__subtitle {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
	border-bottom: 2px solid var(--main_grad_start);
	display: inline-block;
	padding-bottom: 5px;
}

/* ----------
   ご注文の流れ (Order Flow)
---------- */
.p-flow {
	background: var(--color-bg-sub);
}

.p-flow__list {
	max-width: 800px;
	margin: 0 auto;
}

.p-flow__item {
	display: flex;
	flex-direction: column; /* スマホデフォルト */
	background: var(--color-bg-main);
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.p-flow__step {
	background: var(--sub_grad_start);
	color: #FFFFFF;
	font-weight: bold;
	padding: 10px; /* スマホデフォルト */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; /* スマホデフォルト */
	flex-shrink: 0;
}

.p-flow__content {
	padding: 20px;
}

.p-flow__content h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--main_grad_start);
}



/* ----------
   会社概要 (Company)
---------- */
.p-company {
	background-color: #F8F9FA;
	padding-top: 60px;
	padding-bottom: 60px;
}

.p-company-table {
	max-width: 800px;
	margin: 0 auto;
	background: #FFFFFF;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.p-company-table th,
.p-company-table td {
	padding: 20px;
	border-bottom: 1px solid #EEEEEE;
}

.p-company-table th {
	width: 30%;
	background: #F8F9FA;
	text-align: left;
	font-weight: bold;
}

/* =========================================================
   PC・タブレット向けの上書き（768px 以上）
========================================================= */
@media screen and (min-width: 768px) {
	.p-hero__title {
		font-size: 42px;
	}
	.p-features__list {
		flex-direction: row;
	}
	.p-flow__item {
		flex-direction: row;
	}
	.p-flow__step {
		width: 100px;
		padding: 20px;
	}

}
