/* リセットCSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

a {
	color: #333;
	text-decoration: none;
	text-shadow: 2px 2px 2px #333;
}

/* 全体のスタイル */
body {
	font-family: "Arial", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background-color: #fff8f1;
}

.container {
	width: 90%;
	margin: 0 auto;
}

/* ヘッダー全体のスタイル */
header {
	width: 100%;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
	padding: 0 70px;
	background-color: #dde9f1a3;
	text-shadow: 2px 2px 2px #333;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* ロゴと会社名のスタイル */
.header-logo {
	display: flex;
	align-items: center;
	font-size: 0.9rem;
	font-weight: bold;
}

.header-logo img {
	height: 60px;
	margin-right: 10px;
}

.header-nav li {
	font-size: 1.5rem;
	margin-right: 50px;
}

/* ヒーローイメージ */
.hero-image {
	height: 100vh;
	background-image: url("/image/HEROimg.png");
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
}

.hero-image h2 {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.hero-image p {
	font-size: 1.5rem;
}
/* mainのスタイル */
.main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0;
}

main h2 {
	color: #333;
	font-size: 15rem;
	width: 100%;
	margin: 100px auto 0px auto;
	padding-top: 50px;
	text-align: center;
	text-shadow: 3px 3px 20px #333;
}

main h4 {
	font-size: 2rem;
	font-family: sans-serif;
	text-align: center;
	margin-bottom: 200px;
	color: #555;
	letter-spacing: 10px;
}

/* 商品一覧のスタイル */
.product-list {
	display: flex;
	margin: 0 50px;
	align-items: center;
	font-size: 1rem;
	font-weight: bold;
	flex-wrap: wrap;
	justify-content: center;
}

.product-list a {
	color: #fff;
	text-decoration: none;
	margin-left: 20px;
}

/* 商品一覧のホバー時のスタイル */
.product-list a:hover {
	left: 5px;
	top: 5px;
}

.product-item {
	width: calc(33.33% - 20px);
	margin: 10px;
	text-align: center;
}

.product-item:nth-child(3n + 1) {
	clear: left;
}

.product-item img {
	width: 100%;
	max-width: 300px;
	border-radius: 10px;
}

.product-item h3 {
	margin: 10px 0;
}

.product-item p {
	margin: 10px 0;
}

.purchase-button {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	background-color: #4682b4;
	color: #fff;
	text-decoration: none;
	border-radius: 7px;
}

.purchase-button:hover {
	background-color: #245dc1;
	text-shadow: 5px 5px 1px #333;
}

/* 購入フォーム */
#form {
	color: #4b4b4b;
	margin-top: 100px;
	margin-bottom: 100px;
	padding: 30px;
	border: 2px solid #ddd;
	border-radius: 10px;
	background-color: #c5baab;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0px 0px 10px #333;
}

#form h2 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

#form label {
	display: block;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}

#form input[type="text"],
#form input[type="email"],
#form input[type="tel"] {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 20px;
	box-sizing: border-box;
	box-shadow: 0px 0px 4px #333;
}

#form textarea {
	width: 100%;
	padding: 50px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 20px;
	box-sizing: border-box;
	box-shadow: 0px 0px 4px #333;
}

#form .btn-purchase {
	display: block;
	margin-top: 30px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background-color: #4682b4;
	border-radius: 5px;
	cursor: pointer;
}

#form .btn-purchase:hover {
	background-color: #245dc1;
	color: #fff;
}

#form .error-message {
	color: #f00;
	margin-top: 5px;
}

/* 会社概要のスタイル */
.company-profile {
	color: #333;
	background-color: #e0e6eac9;
	padding: 40px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

/* 見出しのスタイル */
.company-profile h2 {
	font-size: 28px;
	margin-bottom: 20px;
}

/* リストのスタイル */
.company-profile dl {
	display: flex;
	flex-wrap: wrap;
}

/* タイトルのスタイル */
.company-profile dt {
	width: 25%;
	font-weight: bold;
	color: #444;
	margin-bottom: 10px;
}

/* コンテンツのスタイル */
.company-profile dd {
	width: 75%;
	margin-bottom: 20px;
	color: #444;
}

/* アイコンのスタイル */
.company-profile dt::before {
	content: "■";
	margin-right: 5px;
	color: #337ab7;
	font-size: 16px;
}

/* フッター */
footer {
	height: 60px;
	background-color: #dde9f1a3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #333;
	bottom: 0;
	left: 0;
	right: 0;
	box-shadow: 0px 0px 5px #333;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-content .footer-right a {
	text-shadow: none;
}

/* プライバシーポリシー */
.detail {
	width: 95%;
	margin: 20px auto;
	background-color: #ddd;
	border-radius: 10px;
	align-items: center;
	text-align: center;
}

.detail h1 {
	font-size: 1.5rem;
	margin: 20px;
	padding-top: 50px;
	padding-bottom: 20px;
	border-bottom: 1px solid #333;
}

.detail h2 {
	width: 90%;
	margin: auto;
	font-size: 1.2rem;
	text-align: left;
}

.detail p {
	padding: 10px 50px 30px 50px;
	text-align: left;
}
/* スマホ表示用のスタイル */
@media (max-width: 600px) {
	/* ヘッダー */
	header {
		padding: 0 35px;
	}

	.header-logo {
		font-size: 0.5rem;
	}
	.header-nav ul li {
		font-size: 1rem;
		margin: 5px;
	}

	.hero-image {
		background-image: url(image/HEROimg_sp.png);
	}

	/* 商品一覧 */
	main h2 {
		font-size: 5rem;
	}

	.product-item {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}

	.company-profile dl {
		display: block;
	}
	.company-profile dt {
		width: 30%;
	}
	.company-profile dd {
		width: 90%;
	}

	/* フッター */
	footer {
		justify-content: space-between;
	}
	footer p {
		font-size: 10px;
	}
	.footer-content {
		display: block;
	}

	/* プライバシーポリシーページ */
	.detail h2 {
		width: 80%;
	}
}
